flow360.Water#

class Water[source]#

Bases: MaterialBase

Water material used for LiquidOperatingCondition

Example

>>> fl.Water(
...     name="Water",
...     density=1000 * fl.u.kg / fl.u.m**3,
...     dynamic_viscosity=0.001002 * fl.u.kg / fl.u.m / fl.u.s,
... )

type: Literal['water'] = 'water'#
name: str [Required]#

Custom name of the water with given property.

density: Annotated[_Constrained, PlainSerializer(func=_dimensioned_type_serializer, return_type=PydanticUndefined, when_used=always)] | None = unyt_quantity(1000, 'kg/m**3')#

Density of the water.

dynamic_viscosity: Annotated[_Constrained, PlainSerializer(func=_dimensioned_type_serializer, return_type=PydanticUndefined, when_used=always)] = unyt_quantity(0.001002, 'kg/(m*s)')#

Dynamic viscosity of the water.

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

  • return_type = PydanticUndefined

  • when_used = always