@@ -23,6 +23,8 @@ def moles_to_pressure(volume: float, moles: float, temperature: float) -> float:
23
23
Pressure has atm as SI unit.
24
24
25
25
Wikipedia reference: https://en.wikipedia.org/wiki/Gas_laws
26
+ Wikipedia reference: https://en.wikipedia.org/wiki/Pressure
27
+ Wikipedia reference: https://en.wikipedia.org/wiki/Temperature
26
28
27
29
>>> moles_to_pressure(0.82, 3, 300)
28
30
90
@@ -41,6 +43,8 @@ def moles_to_volume(pressure: float, moles: float, temperature: float) -> float:
41
43
Pressure has atm as SI unit.
42
44
43
45
Wikipedia reference: https://en.wikipedia.org/wiki/Gas_laws
46
+ Wikipedia reference: https://en.wikipedia.org/wiki/Pressure
47
+ Wikipedia reference: https://en.wikipedia.org/wiki/Temperature
44
48
45
49
>>> moles_to_volume(0.82, 3, 300)
46
50
90
@@ -59,6 +63,8 @@ def pressure_and_volume_to_temperature(pressure: float, moles: float, volume: fl
59
63
Pressure has atm as SI unit.
60
64
61
65
Wikipedia reference: https://en.wikipedia.org/wiki/Gas_laws
66
+ Wikipedia reference: https://en.wikipedia.org/wiki/Pressure
67
+ Wikipedia reference: https://en.wikipedia.org/wiki/Temperature
62
68
63
69
>>> pressure_and_volume_to_temperature(0.82, 1, 2)
64
70
20
0 commit comments