Click or drag to resize

BoxFieldProbe Class

Box Field Probe class for the API
Inheritance Hierarchy
SystemObject
  ema3d.Api.V25APISimObjectBaseBoxFieldProbe
    ema3d.Api.V25.Core.ProbesFDTDProbeBaseBoxFieldProbe
      ema3d.Api.V25.Core.ProbesFieldProbeBoxFieldProbe
        ema3d.Api.V25.Core.ProbesBoxFieldProbe

Namespace: ema3d.Api.V25.Core.Probes
Assembly: ema3d.Api.V25 (in ema3d.Api.V25.dll) Version: 0.0.0.0
Syntax
public class BoxFieldProbe : FieldProbe<BoxFieldProbe>

The BoxFieldProbe type exposes the following members.

Properties
 NameDescription
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
(Inherited from APISimObjectBaseTWrapper)
Public propertyDocument The document an object exists in.
(Inherited from FDTDProbeBaseT)
Public propertyMaximumX Gets/Sets maximum corner of probed region in the X-direction
Public propertyMaximumY Gets/Sets maximum corner of probed region in the Y-direction
Public propertyMaximumZ Gets/Sets maximum corner of probed region in the Z-direction
Public propertyMaxSamples Gets / Sets the maximum number of sample counts allowed
Public propertyMinimumX Gets/Sets minimum corner of probed region in the X-direction
Public propertyMinimumY Gets/Sets minimum corner of probed region in the Y-direction
Public propertyMinimumZ Gets/Sets minimum corner of probed region in the Z-direction
Public propertyTEnd Gets/Sets end time.
(Inherited from FDTDProbeBaseT)
Public propertyTStart Gets/Sets start time.
(Inherited from FDTDProbeBaseT)
Public propertyTStep Gets/Sets time step.
(Inherited from FDTDProbeBaseT)
Public propertyType Gets / Sets the type of field to the probe
(Inherited from FieldProbeT)
Top
Methods
 NameDescription
Public methodClone Clone the intance of a BoxFieldProbe
Public methodComputeFieldStastistics Gets the most recent Field Probe Result and computes the field statistics, then plots the result in the sim tree. If there are multiple Field probes, make sure to have unique display name, otherwise there could be issues with grabbing the correct result due to there not being a refrence to the origonal field probe in the field probe result.
(Inherited from FieldProbeT)
Public methodStatic memberCreate(Document, ICurvePoint, ICurvePoint) Create a BoxFieldProbe with ICurvePoint
Public methodStatic memberCreate(Document, Double, Double, Double, Double, Double, Double) Create a BoxFieldProbe with doubles
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 BoxFieldProbe objects in the document.
Public methodStatic memberGetByDisplayName Get BoxFieldProbe by display name
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.Probes import BoxFieldProbe as BoxFieldProbe
from ema3d.Api.V25.Core import FieldType as FieldType
from ema3d.Api.V25.Core import DomainDependentDouble as DomainDependentDouble
_bf = BoxFieldProbe.Create(Window.ActiveWindow.Document,
                           0.0, 0.0, 0.0,
                           0.3, 0.3, 0.3)
_bf.TStep = DomainDependentDouble(1e-8, ema3d.Api.V25.Core.MatchDomainType.None)
_bf.MaxSamples = 64
_bf.FieldType = FieldType.Magnetic
See Also