flow360.Supersonic#

class Supersonic[source]#

Bases: Flow360BaseModel

Supersonic class to specify the supersonic conditions for Inflow.

Example

>>> fl.Supersonic(
...     total_pressure = 7.90e6 * fl.u.Pa,
...     static_pressure = 1.01e6 * fl.u.Pa,
... )
type_name: Literal['Supersonic'] = 'Supersonic'#
total_pressure: Annotated[_Constrained, PlainSerializer(func=_dimensioned_type_serializer, return_type=PydanticUndefined, when_used=always)] [Required]#

The total pressure.

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

  • return_type = PydanticUndefined

  • when_used = always

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

The static pressure.

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

  • return_type = PydanticUndefined

  • when_used = always