Click or drag to resize

AnisotropicDefinition Class

An Anisotropic Material Definition in EMA3D API.
Inheritance Hierarchy
SystemObject
  ema3d.Api.V25APISimObjectBaseAnisotropicDefinition
    ema3d.Api.V25.Core.DefinitionsDefinitionBaseAnisotropicDefinition
      ema3d.Api.V25.Core.DefinitionsAnisotropicDefinition

Namespace: ema3d.Api.V25.Core.Definitions
Assembly: ema3d.Api.V25 (in ema3d.Api.V25.dll) Version: 0.0.0.0
Syntax
public class AnisotropicDefinition : DefinitionBase<AnisotropicDefinition>

The AnisotropicDefinition type exposes the following members.

Properties
 NameDescription
Public propertyDisplayColor Gets / Sets the definition display color.
(Inherited from DefinitionBaseT)
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
(Inherited from DefinitionBaseT)
Public propertyEpsilon Gets/Sets the anisotropic permittivity tensor.
Public propertyMu Gets/Sets the anisotropic permeability tensor.
Public propertySigma Gets/Sets the anisotropic conductivity tensor.
Public propertySigmaM Gets/Sets the anisotropic magnetic conductivity tensor.
Top
Methods
 NameDescription
Public methodAssignBulk Assign a material definition to a collection of document objects.
(Inherited from DefinitionBaseT)
Public methodAssignSingle Assign a material definition to a single document object.
(Inherited from DefinitionBaseT)
Public methodCopy Copy this definition to the same or a new document
Public methodStatic memberCreate Create a new default AnisotropicDefinition within the document
Public methodDelete Deletes sim object.
(Inherited from APISimObjectBaseTWrapper)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodStatic memberGetAll Retrieve all AnisotropicDefinition objects in the document.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetName Returns the name of the object.
(Inherited from APISimObjectBaseTWrapper)
Public methodGetSiblings Get all objects that share this object's type in the document.
(Overrides APISimObjectBaseTWrapperGetSiblings(Document))
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSetName Sets the name of the object
(Inherited from APISimObjectBaseTWrapper)
Public methodSetVisibility Sets the visibility status of the object.
(Inherited from APISimObjectBaseTWrapper)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Example
Python
from ema3d.Api.V25.Core.Definitions import AnisotropicDefinition as AnisotropicDefinition
# Create Definition
_adef = AnisotropicDefinition.Create()
_adef.DisplayName = "Example Anisotropic Definition"
# Modify Diagonals of Conductivity Tensor
_cond = _adef.Sigma
for i in range(3):
    _cond[i][i] = 1e6
_adef.Sigma = _cond
See Also