Click or drag to resize

ChargeIsotropicDefinition Class

An Internal charging material definition for EMA's API.
Inheritance Hierarchy
SystemObject
  ema3d.Api.V26.Charging.Definitions.MaterialsChargeIsotropicDefinition

Namespace: ema3d.Api.V26.Charging.Definitions.Materials
Assembly: ema3d.Api.V26 (in ema3d.Api.V26.dll) Version: 0.0.0.0
Syntax
public class ChargeIsotropicDefinition

The ChargeIsotropicDefinition type exposes the following members.

Properties
 NameDescription
Public propertyAtomicMass Gets/Sets the average atomic mass of the material.
Public propertyAtomicNumber Gets/Sets the average atomic number of the material.
Public propertyDeltaMaxInternal Gets/Sets the internal delta max of the material.
Public propertyDensity Gets/Sets density of the bulk material.
Public propertyDisplayColor Gets/Sets the display color of the underlying sim object.
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
Public propertyEpsilon Gets/Sets permittivity of isotropic material.
Public propertyEpsilonRelative Gets/Sets the relative dielectric constant.
Public propertyIntraConductivity Gets/Sets intra-conductivity of the material.
Public propertyIsBodyMaterial Gets/Sets if the isotropic material is a body or surface material.
Public propertyIsParticleSourceIncluded Enables / disables particle transport in all bodies with this material assignment.
Public propertyIsTribo Gets/Sets if the triboelectric current source should be included in the material properties.
Public propertyMu Gets/Sets permeability of isotropic material.
Public propertyPhotoemission Gets/Sets photoemission due to photoelectric effect.
Public propertyPostConductivity Gets/Sets post-conductivity of the material.
Public propertyRIC Gets/Sets if RIC(Radiation Induced Conductivity) is being used.
Public propertySigma Gets/Sets conductivity of isotropic material.
Public propertySigmaM Gets/sets magnetic conductivity of isotropic material.
Public propertySurfaceResistivity Gets/Sets surface Resistivity of the material.
Public propertyThickness Gets/Sets thickness of isotropic material (only for composite materials).
Public propertyTriboCurrent Gets/Sets triboelectric current source.
Top
Methods
 NameDescription
Public methodAssignBulk Assign a material definition to a collection of document objects.
Public methodAssignSingle Assign a material definition to a single document object.
Public methodStatic memberCreate Create a new default InternalChargingMatDefn within the document.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodStatic memberGetAll Retrieve all InternalChargingMatDefn objects in the document.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSetAtomicMassWildcard Sets atomic mass to be wildcarded during export.
Public methodSetAtomicNumberWildcard Sets wildcard for atomic number.
Public methodSetDensityWildcard Sets density to be wildcarded during export.
Public methodSetEpsilonRelativeWildcard Sets epsilon to be wildcarded during export.
Public methodSetIntraConductivityWildcard Sets intra-conductivity to be wildcarded during export.
Public methodSetMuWildcard Sets mu to be wildcarded during export.
Public methodSetPhotoemissionWildcard Sets photoemission to be wildcarded during export.
Public methodSetPostConductivityWildcard Sets post-conductivity to be wildcarded during export.
Public methodSetSigmaMWildcard Sets sigma to be wildcarded during export.
Public methodSetSigmaWildcard Sets sigma to be wildcarded during export.
Public methodSetSurfaceResistivityWildcard Sets surface resistivity to be wildcarded during export.
Public methodSetThicknessWildcard Sets thickness to be wildcarded during export.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Example
Python
from ema3d.Api.V26.Charging.Definitions import InternalChargingMatDefn as InternalChargingMatDefn
# Create definition and modify properties
_imat = InternalChargingMatDefn.Create(Window.ActiveWindow.Document)
_imat.Density = 1.2
_imat.Mu = 1e-8
See Also