Click or drag to resize

ConductorDefinition Class

An MHARNESS Conductor Definition
Inheritance Hierarchy
SystemObject
  ema3d.Api.V25APISimObjectBaseConductorDefinition
    ema3d.Api.V25.Cabling.DefinitionsConductorDefinition

Namespace: ema3d.Api.V25.Cabling.Definitions
Assembly: ema3d.Api.V25 (in ema3d.Api.V25.dll) Version: 0.0.0.0
Syntax
public sealed class ConductorDefinition : APISimObjectBase<ConductorDefinition>, 
	IConductorDefinition, ICableDefinition

The ConductorDefinition type exposes the following members.

Properties
 NameDescription
Public propertyConductivity Gets/Sets conductivity of the conductor (in Siemens/m) (Only applies when HasSkinDepthEffects = true).
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
(Inherited from APISimObjectBaseTWrapper)
Public propertyHasSkinDepthEffects Gets/Sets if conductor has skin depth effects.
Public propertyJacket Gets/Sets the conductor's dielectric jacket
Public propertyRadius Gets/Sets inner radius of the conductor (in m)
Public propertyResistance Gets/Sets resistance of the conductor (in Ohms/m)
Public propertyShape Gets/Sets shape of conductor (Circular, Ellipse, Polygon)
Public propertySignalID 
Public propertyThickness Gets/Sets thickness of the conductor (only applies when HasSkinDepthEffects = true).
Public propertyVertices Gets/Sets vertices of polygonal conductor
Public propertyXRadius Gets/Sets XRadius of elliptical conductor
Public propertyYRadius Gets/Sets YRadius of elliptical conductor
Top
Methods
 NameDescription
Public methodCopy Create a copy of the Conductor Definition
Public methodStatic memberCreate Create a new ConductorDefinition in 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 ConductorDefinition 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
import ema3d.Api.V25.Cabling.Definitions as Definitions
# Create new conductor definition
_cdef = Definitions.ConductorDefinition.Create()
_cdef.Radius = 0.002
_cdef.HasSkinDepthEffects = True
_cdef.Conductivity = 2.5e7
_cdef.Thickness = 0.002
See Also