Skip to content

Commit a41a73a

Browse files
committed
change representation of cubic
1 parent 10a3835 commit a41a73a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pyXSteam/IAPWS_R6.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def R6_p_rhoT(rho: float, T: float) -> float:
590590
line 1 in table 3, Relations of thermodynamic properties to the ideal-gas part o φ and
591591
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
592592
593-
:param rho: density [kg / m^3]
593+
:param rho: density [kg / m³]
594594
:param T: temperature [k]
595595
596596
:return: preasure in [MPa]
@@ -615,7 +615,7 @@ def R6_u_rhoT(rho: float, T: float):
615615
line 2 in table 3, Relations of thermodynamic properties to the ideal-gas part o φ and
616616
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
617617
618-
:param rho: density [kg / m^3]
618+
:param rho: density [kg / m³]
619619
:param T: temperature [K]
620620
621621
:return: internal energy
@@ -635,7 +635,7 @@ def R6_s_rhoT(rho: float, T: float) -> float:
635635
line 3 in table 3, Relations of thermodynamic properties to the ideal-gas part o φ and
636636
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
637637
638-
:param rho: density [kg / m^3]
638+
:param rho: density [kg / m³]
639639
:param T: temperature [k]
640640
641641
:return: entropy [kJ / kg K]
@@ -664,7 +664,7 @@ def R6_h_rhoT(rho: float, T: float) -> float:
664664
line 5 in table 3, Relations of thermodynamic properties to the ideal-gas part o φ and
665665
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
666666
667-
:param rho: density [kg / m^3]
667+
:param rho: density [kg / m³]
668668
:param T: temperature [k]
669669
670670
:return: enthalpy
@@ -690,7 +690,7 @@ def R6_cv_rhoT(rho: float, T: float) -> float:
690690
line 5 in table 3, Relations of thermodynamic properties to the ideal-gas part o φ and
691691
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
692692
693-
:param rho: density [kg / m^3]
693+
:param rho: density [kg / m³]
694694
:param T: temperature [k]
695695
696696
:return: isochoric heat capacity [kJ / kg K]
@@ -716,7 +716,7 @@ def R6_cp_rhoT(rho: float, T: float) -> float:
716716
line 5 in table 3, Relations of thermodynamic properties to the ideal-gas part o φ and
717717
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
718718
719-
:param rho: density [kg / m^3]
719+
:param rho: density [kg / m³]
720720
:param T: temperature [k]
721721
722722
:return: isobaric heat capacity [kJ / kg K]
@@ -748,7 +748,7 @@ def R6_w_rhoT(rho: float, T: float) -> float:
748748
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
749749
750750
751-
:param rho: density [kg / m^3]
751+
:param rho: density [kg / m³]
752752
:param T: temperature [K]
753753
754754
:return: speed of sound [m / s]
@@ -782,7 +782,7 @@ def R6_joulethomson_rhoT(rho: float, T: float) -> float:
782782
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
783783
784784
785-
:param rho: density [kg / m^3]
785+
:param rho: density [kg / m³]
786786
:param T: temperature [K]
787787
788788
:return: Joule-Thomson coefficient
@@ -813,7 +813,7 @@ def R6_delta_T_rhoT(rho: float, T: float) -> float:
813813
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
814814
815815
816-
:param rho: density [kg / m^3]
816+
:param rho: density [kg / m³]
817817
:param T: temperature [K]
818818
819819
:return: Isothermal throttling coefficient
@@ -842,7 +842,7 @@ def R6_isen_t_p_rhoT(rho: float, T: float) -> float:
842842
the residual part r φ of the dimensionless Helmholtz free energy and their derivatives
843843
844844
845-
:param rho: density [kg / m^3]
845+
:param rho: density [kg / m³]
846846
:param T: temperature [K]
847847
848848
:return: Isentropic temperature-pressure coefficient

0 commit comments

Comments
 (0)