![]() | Anisotropic |
The AnisotropicDefinition type exposes the following members.
Name | Description | |
---|---|---|
![]() | DisplayColor |
Gets / Sets the definition display color.
(Inherited from DefinitionBaseT) |
![]() | DisplayName |
Gets/Sets the display name of the underlying sim object.
(Inherited from DefinitionBaseT) |
![]() | Epsilon | Gets/Sets the anisotropic permittivity tensor. |
![]() | Mu | Gets/Sets the anisotropic permeability tensor. |
![]() | Sigma | Gets/Sets the anisotropic conductivity tensor. |
![]() | SigmaM | Gets/Sets the anisotropic magnetic conductivity tensor. |
Name | Description | |
---|---|---|
![]() | AssignBulk |
Assign a material definition to a collection of document objects.
(Inherited from DefinitionBaseT) |
![]() | AssignSingle |
Assign a material definition to a single document object.
(Inherited from DefinitionBaseT) |
![]() | Copy | Copy this definition to the same or a new document |
![]() ![]() | Create | Create a new default AnisotropicDefinition within the document |
![]() | Delete |
Deletes sim object.
(Inherited from APISimObjectBaseTWrapper) |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
![]() ![]() | GetAll | Retrieve all AnisotropicDefinition objects in the document. |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object) |
![]() | GetName |
Returns the name of the object.
(Inherited from APISimObjectBaseTWrapper) |
![]() | GetSiblings |
Get all objects that share this object's type in the document.
(Overrides APISimObjectBaseTWrapperGetSiblings(Document)) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object) |
![]() | SetName |
Sets the name of the object
(Inherited from APISimObjectBaseTWrapper) |
![]() | SetVisibility |
Sets the visibility status of the object.
(Inherited from APISimObjectBaseTWrapper) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object) |
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