![]() | Point |
The PointFieldProbe type exposes the following members.
Name | Description | |
---|---|---|
![]() | DisplayName |
Gets/Sets the display name of the underlying sim object.
(Inherited from APISimObjectBaseTWrapper) |
![]() | Document |
The document an object exists in.
(Inherited from FDTDProbeBaseT) |
![]() | Point | Gets / Sets the points location |
![]() | TEnd |
Gets/Sets end time.
(Inherited from FDTDProbeBaseT) |
![]() | TStart |
Gets/Sets start time.
(Inherited from FDTDProbeBaseT) |
![]() | TStep |
Gets/Sets time step.
(Inherited from FDTDProbeBaseT) |
![]() | Type |
Gets / Sets the type of field to the probe
(Inherited from FieldProbeT) |
Name | Description | |
---|---|---|
![]() | Clone | Clone the intance of a PointFieldProbe |
![]() | ComputeFieldStastistics |
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) |
![]() ![]() | Create | Create a PointFieldProbe |
![]() | 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 PointFieldProbe objects in the document. |
![]() ![]() | GetByDisplayName | Get PointFieldProbe by display name |
![]() | 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.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)