changed references

This commit is contained in:
hnil
2024-08-29 11:19:29 +02:00
parent 5c0176371c
commit 6609d9fbcb
2 changed files with 10 additions and 10 deletions

View File

@@ -38,8 +38,8 @@ class TestBasic(unittest.TestCase):
Sw = sim.get_fluidstate_variable(name='Sw')
self.assertAlmostEqual(Sw[0], 0.11969486712, places=5, msg='value of water saturation')
So = sim.get_fluidstate_variable(name='So')
self.assertAlmostEqual(So[0], 0.825166164326, places=5, msg='value of oil saturation')
self.assertAlmostEqual(So[0], 0.825129, places=3, msg='value of oil saturation')
Sg = sim.get_fluidstate_variable(name='Sg')
self.assertAlmostEqual(Sg[0], 0.055138968544, places=5, msg='value of gas saturation')
self.assertAlmostEqual(Sg[0], 0.055138968544, places=3, msg='value of gas saturation')
T = sim.get_fluidstate_variable(name='T')
self.assertAlmostEqual(T[0], 288.705, places=3, msg='value of temperature')