本文整理匯總了Python中dipplanner.tank.Tank.get_min_od方法的典型用法代碼示例。如果您正苦於以下問題:Python Tank.get_min_od方法的具體用法?Python Tank.get_min_od怎麽用?Python Tank.get_min_od使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dipplanner.tank.Tank
的用法示例。
在下文中一共展示了Tank.get_min_od方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: TestTankisTrimix870_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_min_od [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),
)
示例2: TestTankisTrimix870_2
# 需要導入模塊: from dipplanner.tank import Tank [as 別名]
# 或者: from dipplanner.tank.Tank import get_min_od [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))