File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ def test_pure_run_coolprop():
1313 ws = wavespeed .WaveSpeed (input )
1414 ws .run ()
1515 assert ws .T [- 1 ] == pytest .approx (278.0666028440005 , rel = 1e-5 )
16- assert ws .P [- 1 ] == 3961000.0
17- assert ws .rho_mass [- 1 ] == 362.33658068836274
16+ assert ws .P [- 1 ] == pytest . approx ( 3961000.0 , rel = 1e-5 )
17+ assert ws .rho_mass [- 1 ] == pytest . approx ( 362.33658068836274 , rel = 1e-5 )
1818
1919def test_pure_run_coolprop_extended ():
2020 input = {}
@@ -27,8 +27,8 @@ def test_pure_run_coolprop_extended():
2727 ws = wavespeed .WaveSpeed (input )
2828 ws .run ()
2929 assert ws .T [- 1 ] == pytest .approx (283.67432227384006 , rel = 1e-5 )
30- assert ws .P [- 1 ] == 4561000.0
31- assert ws .rho_mass [- 1 ] == 454.99417292135354
30+ assert ws .P [- 1 ] == pytest . approx ( 4561000.0 , rel = 1e-5 )
31+ assert ws .rho_mass [- 1 ] == pytest . approx ( 454.99417292135354 , rel = 1e-5 )
3232
3333
3434def test_pure_run_refprop ():
You can’t perform that action at this time.
0 commit comments