Skip to content

Commit 9821c0d

Browse files
committed
Fix underscores in 2 variables.
- molar volume of ideal gas at 273.15 K and 101.325 KPa - Loschmidt constant at 273.15 K and 101.325K Pa
1 parent 6557d91 commit 9821c0d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/stdlib_codata.f90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -956,12 +956,12 @@ module stdlib_codata
956956
1.920155716e-10_dp, 0.000000032e-10_dp, &
957957
"m") !! lattice spacing of ideal Si (220)
958958

959-
type(codata_constant_type), parameter, public :: LOSCHMIDT_CONSTANT_27315_K_100_KPA = &
959+
type(codata_constant_type), parameter, public :: LOSCHMIDT_CONSTANT_273_15_K_100_KPA = &
960960
codata_constant_type("Loschmidt constant (273.15 K, 100 kPa)", &
961961
2.651645804e25_dp, 0.0_dp, &
962962
"m^-3") !! Loschmidt constant (273.15 K, 100 kPa)
963963

964-
type(codata_constant_type), parameter, public :: LOSCHMIDT_CONSTANT_27315_K_101325_KPA = &
964+
type(codata_constant_type), parameter, public :: LOSCHMIDT_CONSTANT_273_15_K_101_325_KPA = &
965965
codata_constant_type("Loschmidt constant (273.15 K, 101.325 kPa)", &
966966
2.686780111e25_dp, 0.0_dp, &
967967
"m^-3") !! Loschmidt constant (273.15 K, 101.325 kPa)
@@ -996,12 +996,12 @@ module stdlib_codata
996996
3.990312712e-10_dp, 0.0_dp, &
997997
"J Hz^-1 mol^-1") !! molar Planck constant
998998

999-
type(codata_constant_type), parameter, public :: MOLAR_VOLUME_OF_IDEAL_GAS_27315_K_100_KPA = &
999+
type(codata_constant_type), parameter, public :: MOLAR_VOLUME_OF_IDEAL_GAS_273_15_K_100_KPA = &
10001000
codata_constant_type("molar volume of ideal gas (273.15 K, 100 kPa)", &
10011001
22.71095464e-3_dp, 0.0_dp, &
10021002
"m^3 mol^-1") !! molar volume of ideal gas (273.15 K, 100 kPa)
10031003

1004-
type(codata_constant_type), parameter, public :: MOLAR_VOLUME_OF_IDEAL_GAS_27315_K_101325_KPA = &
1004+
type(codata_constant_type), parameter, public :: MOLAR_VOLUME_OF_IDEAL_GAS_273_15_K_101_325_KPA = &
10051005
codata_constant_type("molar volume of ideal gas (273.15 K, 101.325 kPa)", &
10061006
22.41396954e-3_dp, 0.0_dp, &
10071007
"m^3 mol^-1") !! molar volume of ideal gas (273.15 K, 101.325 kPa)
@@ -1516,7 +1516,7 @@ module stdlib_codata
15161516
-1.15170753496_dp, 0.00000000047_dp, &
15171517
"") !! Sackur-Tetrode constant (1 K, 100 kPa)
15181518

1519-
type(codata_constant_type), parameter, public :: SACKUR_TETRODE_CONSTANT_1_K_101325_KPA = &
1519+
type(codata_constant_type), parameter, public :: SACKUR_TETRODE_CONSTANT_1_K_101_325_KPA = &
15201520
codata_constant_type("Sackur-Tetrode constant (1 K, 101.325 kPa)", &
15211521
-1.16487052149_dp, 0.00000000047_dp, &
15221522
"") !! Sackur-Tetrode constant (1 K, 101.325 kPa)

0 commit comments

Comments
 (0)