本文整理匯總了Python中dipplanner.tank.Tank.get_mod_for_given_end方法的典型用法代碼示例。如果您正苦於以下問題:Python Tank.get_mod_for_given_end方法的具體用法?Python Tank.get_mod_for_given_end怎麽用?Python Tank.get_mod_for_given_end使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dipplanner.tank.Tank
的用法示例。
在下文中一共展示了Tank.get_mod_for_given_end方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: TestTankNitrox32
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankNitrox32(TestTank):
def setUp(self):
self.mytank = Tank(f_o2=0.32)
def test_name(self):
assert str(self.mytank) == "Nitrox 32"
def test_mod(self):
assert self.mytank.mod == 40
def test_mod_at_end(self):
self.assertAlmostEqual(
self.mytank.get_mod_for_given_end(30),
31.0195918624,
5,
"wrong mod at end:%s" % self.mytank.get_mod_for_given_end(30),
)
def test_end_at_depth(self):
self.assertAlmostEqual(
self.mytank.get_end_for_given_depth(40),
38.7573409377,
5,
"wrong end at depth:%s" % self.mytank.get_end_for_given_depth(40),
)
示例2: TestTankisHeliox2080_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisHeliox2080_2(TestTank):
def setUp(self):
self.mytank = Tank(f_o2=0.2, f_he=0.8, max_ppo2=1.4)
def test_name(self):
assert str(self.mytank) == "Heliox 20/80"
def test_mod(self):
assert self.mytank.mod == 59
def test_mod_at_end(self):
self.assertAlmostEqual(
self.mytank.get_mod_for_given_end(30),
96.8666243516,
5,
"wrong mod at end:%s" % self.mytank.get_mod_for_given_end(30),
)
def test_end_at_depth(self):
self.assertAlmostEqual(
self.mytank.get_end_for_given_depth(40),
8.70562703148,
5,
"wrong end at depth:%s" % self.mytank.get_end_for_given_depth(40),
)
示例3: TestTankisAir
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisAir(TestTank):
def setUp(self):
self.mytank = Tank()
def test_name(self):
assert str(self.mytank) == "Air"
def test_mod(self):
assert self.mytank.mod == 66
def test_mod_at_end(self):
self.assertAlmostEqual(
self.mytank.get_mod_for_given_end(30),
31.0195918624,
5,
"wrong mod at end:%s" % self.mytank.get_mod_for_given_end(30),
)
def test_end_at_depth(self):
self.assertAlmostEqual(
self.mytank.get_end_for_given_depth(40),
38.7573409377,
5,
"wrong end at depth:%s" % self.mytank.get_end_for_given_depth(40),
)
def test_tank_info(self):
self.assertEqual(
self.mytank.get_tank_info(),
"12.0l-100.0% (2423.10/2423.10l)",
"Wrong Tank infos: %s" % self.mytank.get_tank_info(),
)
示例4: TestTankisTrimix2030_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisTrimix2030_2(TestTank):
def setUp(self):
self.mytank = Tank(f_o2=0.2, f_he=0.3, max_ppo2=1.4)
def test_name(self):
assert str(self.mytank) == "Trimix 20/30"
def test_mod(self):
assert self.mytank.mod == 59
def test_mod_at_end(self):
self.assertAlmostEqual(
self.mytank.get_mod_for_given_end(30),
43.3498554235,
5,
"wrong mod at end:%s" % self.mytank.get_mod_for_given_end(30),
)
def test_end_at_depth(self):
self.assertAlmostEqual(
self.mytank.get_end_for_given_depth(40),
27.4879482229,
5,
"wrong end at depth:%s" % self.mytank.get_end_for_given_depth(40),
)
示例5: TestTankisTrimix870_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisTrimix870_2(TestTank):
def setUp(self):
self.mytank = Tank(f_o2=0.08, f_he=0.7, max_ppo2=1.4)
def test_name(self):
assert str(self.mytank) == "Trimix 8/70"
def test_mod(self):
assert self.mytank.mod == 165
def test_min_od(self):
assert self.mytank.get_min_od() == 10
def test_mod_at_end(self):
self.assertAlmostEqual(
self.mytank.get_mod_for_given_end(30),
79.0122229175,
5,
"wrong mod at end:%s" % self.mytank.get_mod_for_given_end(30),
)
def test_end_at_depth(self):
self.assertAlmostEqual(
self.mytank.get_end_for_given_depth(40),
12.4620912698,
5,
"wrong end at depth:%s" % self.mytank.get_end_for_given_depth(40),
)
示例6: TestTankNitrox32
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankNitrox32(TestTank):
"""Test Nitrox32 Tank."""
def setUp(self):
"""Init of the tests."""
super().setUp()
self.mytank = Tank(f_o2=0.32)
def test_name(self):
"""Check Name."""
assert str(self.mytank) == 'Nitrox 32'
def test_mod(self):
"""Check Calculated mod."""
assert self.mytank.mod == 40
def test_mod_at_end(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_mod_for_given_end(30),
31.0195918624, 5, 'wrong mod at end:%s'
% self.mytank.get_mod_for_given_end(30))
def test_end_at_depth(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_end_for_given_depth(40),
38.7573409377, 5, 'wrong end at depth:%s'
% self.mytank.get_end_for_given_depth(40))
示例7: TestTankisO2_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisO2_2(TestTank):
def setUp(self):
self.mytank = Tank(f_o2=1, max_ppo2=1.4)
def test_name(self):
assert str(self.mytank) == "Oxygen"
def test_mod(self):
assert self.mytank.mod == 4
def test_mod_at_end(self):
self.assertAlmostEqual(
self.mytank.get_mod_for_given_end(30),
31.0195918624,
5,
"wrong mod at end:%s" % self.mytank.get_mod_for_given_end(30),
)
def test_end_at_depth(self):
self.assertAlmostEqual(
self.mytank.get_end_for_given_depth(40),
38.7573409377,
5,
"wrong end at depth:%s" % self.mytank.get_end_for_given_depth(40),
)
示例8: TestTankisAir
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisAir(TestTank):
"""Test Air Tank."""
def setUp(self):
"""Init of the tests."""
super().setUp()
self.mytank = Tank()
def test_name(self):
"""Check Name."""
assert str(self.mytank) == 'Air'
def test_mod(self):
"""Check Calculated mod."""
assert self.mytank.mod == 66
def test_mod_at_end(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_mod_for_given_end(30),
31.0195918624, 5, 'wrong mod at end:%s'
% self.mytank.get_mod_for_given_end(30))
def test_end_at_depth(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_end_for_given_depth(40),
38.7573409377, 5, 'wrong end at depth:%s'
% self.mytank.get_end_for_given_depth(40))
def test_tank_info(self):
"""Check str output."""
self.assertEqual(self.mytank.tank_info,
'12.0l-100.0% (2423.10/2423.10l)',
"Wrong Tank infos: %s"
% self.mytank.tank_info)
示例9: TestTankisHeliox2080_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisHeliox2080_2(TestTank):
"""Test Heliox2080 Tank 2."""
def setUp(self):
"""Init of the tests."""
super().setUp()
self.mytank = Tank(f_o2=0.2, f_he=0.8, max_ppo2=1.4)
def test_name(self):
"""Check Name."""
assert str(self.mytank) == 'Heliox 20/80'
def test_mod(self):
"""Check Calculated mod."""
assert self.mytank.mod == 59
def test_mod_at_end(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_mod_for_given_end(30),
96.8666243516, 5, 'wrong mod at end:%s'
% self.mytank.get_mod_for_given_end(30))
def test_end_at_depth(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_end_for_given_depth(40),
8.70562703148, 5, 'wrong end at depth:%s'
% self.mytank.get_end_for_given_depth(40))
示例10: TestTankisTrimix870_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisTrimix870_2(TestTank):
"""Test Tx8/70 Tank 2."""
def setUp(self):
"""Init of the tests."""
super().setUp()
self.mytank = Tank(f_o2=0.08, f_he=0.7, max_ppo2=1.4)
def test_name(self):
"""Check Name."""
assert str(self.mytank) == 'Trimix 8/70'
def test_mod(self):
"""Check Calculated mod."""
assert self.mytank.mod == 165
def test_min_od(self):
"""Check Calculated minimum od."""
assert self.mytank.get_min_od() == 10
def test_mod_at_end(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_mod_for_given_end(30),
79.0122229175, 5, 'wrong mod at end:%s'
% self.mytank.get_mod_for_given_end(30))
def test_end_at_depth(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_end_for_given_depth(40),
12.4620912698, 5, 'wrong end at depth:%s'
% self.mytank.get_end_for_given_depth(40))
示例11: TestTankisTrimix2030_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisTrimix2030_2(TestTank):
"""Test Tx2030 Tank 2."""
def setUp(self):
"""Init of the tests."""
super().setUp()
self.mytank = Tank(f_o2=0.2, f_he=0.3, max_ppo2=1.4)
def test_name(self):
"""Check Name."""
assert str(self.mytank) == 'Trimix 20/30'
def test_mod(self):
"""Check Calculated mod."""
assert self.mytank.mod == 59
def test_mod_at_end(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_mod_for_given_end(30),
43.3498554235, 5, 'wrong mod at end:%s'
% self.mytank.get_mod_for_given_end(30))
def test_end_at_depth(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_end_for_given_depth(40),
27.4879482229, 5, 'wrong end at depth:%s'
% self.mytank.get_end_for_given_depth(40))
示例12: TestTankisAir2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_mod_for_given_end [as 別名]
class TestTankisAir2(TestTank):
"""Test Air Tank 2."""
def setUp(self):
"""Init of the tests."""
super().setUp()
self.mytank = Tank(max_ppo2=1.4)
def test_name(self):
"""Check Name."""
assert str(self.mytank) == 'Air'
def test_mod(self):
"""Check Calculated mod."""
assert self.mytank.mod == 56
def test_mod_at_end(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_mod_for_given_end(30),
31.0195918624, 5, 'wrong mod at end:%s'
% self.mytank.get_mod_for_given_end(30))
def test_end_at_depth(self):
"""Check Calculated mod at given end."""
self.assertAlmostEqual(self.mytank.get_end_for_given_depth(40),
38.7573409377, 5, 'wrong end at depth:%s'
% self.mytank.get_end_for_given_depth(40))