NASA9CoefficientSet#

class NASA9CoefficientSet[source]#

Bases: Flow360BaseModel

Represents a set of 9 NASA polynomial coefficients for a specific temperature range.

Attributes

temperature_range_min: Any#

Minimum temperature for which this coefficient set is valid.

temperature_range_max: Any#

Maximum temperature for which this coefficient set is valid.

coefficients: list[float]#

Nine NASA polynomial coefficients [a0, a1, a2, a3, a4, a5, a6, a7, a8]. a0-a6 are cp/R polynomial coefficients, a7 is the enthalpy integration constant, and a8 is the entropy integration constant.

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