FrozenSpecies#

class FrozenSpecies[source]#

Bases: Flow360BaseModel

Represents a single gas species with NASA 9-coefficient thermodynamic properties.

Attributes

name: str#

Species name (e.g., ‘N2’, ‘O2’, ‘Ar’)

nasa_9_coefficients: NASA9Coefficients#

NASA 9-coefficient polynomial for this species

mass_fraction: float#

Mass fraction of this species (must sum to 1 across all species in mixture)

Additional Constructors

classmethod from_file(filename)#

Load a Flow360BaseModel from a .json file.

Parameters:

filename (str)

Return type:

Flow360BaseModel

Methods

help(methods=False)#

Print fields and methods of a Flow360BaseModel using rich.

Parameters:

methods (bool)

Return type:

None

to_file(filename, **kwargs)#

Export Flow360BaseModel instance to a .json file.

Parameters:
Return type:

None