ThermalCondition#

class ThermalCondition(T, P)[source]#

Create a ThermalCondition object that contains temperature and pressure values.

Parameters:
  • T (float) – Temperature [K].

  • P (float) – Pressure [Pa].

property T#

[float] Temperature in Kelvin.

property P#

[float] Pressure in Pascal.

in_equilibrium(other)[source]#

Return whether thermal condition is in equilibrium with another (i. e. same temperature and pressure).

copy()[source]#

Return a copy.

copy_like(other)[source]#

Copy the specifications of another ThermalCondition object.