Click or drag to resize

PointFieldProbe Class

Point Field Probe Class for the API
Inheritance Hierarchy
SystemObject
  ema3d.Api.V25APISimObjectBasePointFieldProbe
    ema3d.Api.V25.Core.ProbesFDTDProbeBasePointFieldProbe
      ema3d.Api.V25.Core.ProbesFieldProbePointFieldProbe
        ema3d.Api.V25.Core.ProbesPointFieldProbe

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

The PointFieldProbe 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 propertyPoint Gets / Sets the points location
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 PointFieldProbe
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 Create a PointFieldProbe
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 PointFieldProbe objects in the document.
Public methodStatic memberGetByDisplayName Get PointFieldProbe 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 PointFieldProbe as PointFieldProbe
from ema3d.Api.V25.Core import DomainDependentDouble as DomainDependentDouble
# create a point
point = Point.Create(MM(30), MM(30), MM(30))
result = SketchPoint.Create(point)
i_curve_point = result.CreatedCurves[0].GetChildren[ICurvePoint]()[0]
# Create Curve
_pf = PointFieldProbe.Create(Window.ActiveWindow.Document, i_curve_point)
_pf.TStep = DomainDependentDouble(1e-8, ema3d.Api.V25.Core.MatchDomainType.None)
See Also