Click or drag to resize

IsotropicDefinition Class

An Isotropic Material Definition in EMA3D API.
Inheritance Hierarchy
SystemObject
  ema3d.Api.V26.Core.DefinitionsIsotropicDefinition

Namespace: ema3d.Api.V26.Core.Definitions
Assembly: ema3d.Api.V26 (in ema3d.Api.V26.dll) Version: 0.0.0.0
Syntax
public class IsotropicDefinition

The IsotropicDefinition type exposes the following members.

Properties
 NameDescription
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
Public propertyEpsilon Gets/Sets permittivity of isotropic material.
Public propertyMu Gets/Sets permeability of isotropic material.
Public propertySigma Gets/Sets conductivity of isotropic material.
Public propertySigmaM Gets/Sets magnetic conductivity of isotropic material.
Top
Methods
 NameDescription
Public methodCopy Copy this definition to the same or a new document Create an isotropic material from Discovery.
Public methodStatic memberCreate Create an isotropic material from Discovery.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSetEpsilonRelativeWildcard Sets epsilon to be wildcarded during export.
Public methodSetSigmaWildcard Sets sigma to be wildcarded during export.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Example
Python
from ema3d.Api.V26.Core.Definitions import IsotropicDefinition as IsotropicDefinition
# Create Definition
_idef = IsotropicDefinition.Create()
_idef.DisplayName = "Example Isotropic Definition"
# Modify Property
_idef.SigmaM = 1e2
_idef.Sigma = 1e6
See Also