flow360.Point

flow360.Point#

class Point[source]#

Bases: _PointEntityBase

Point class for defining a single point for ProbeOutput/SurfaceProbeOutput.

Example

>>> fl.Point(
...      name="Point",
...      location=(1.0, 2.0, 3.0) * fl.u.m,
...  )

location: Annotated[_VectorType, PlainSerializer(func=_dimensioned_type_serializer, return_type=PydanticUndefined, when_used=always)] [Required]#

The coordinate of the point.

Constraints:
  • func = <function _dimensioned_type_serializer at 0x79c44aad7130>

  • return_type = PydanticUndefined

  • when_used = always

property id: str#

Returns private_attribute_id of the entity.

name: str [Required]#