コード例 #1
0
ファイル: landbos.py プロジェクト: gtqite/ssc
 def execute(self):
     self.cost = _landbos.projectMgmtCost(self.constructionTime)
コード例 #2
0
ファイル: test_land_bosse.py プロジェクト: pvyield/ssc
    def test_projectMgmt2(self):

        constructionTime = 40.0

        cost = _landbos.projectMgmtCost(constructionTime)
        self.assertAlmostEqual(6510000, cost, delta=0.5)
コード例 #3
0
 def execute(self):
     self.cost = _landbos.projectMgmtCost(self.constructionTime)
コード例 #4
0
ファイル: test_land_bosse.py プロジェクト: pvyield/ssc
    def test_projectMgmt(self):

        cost = _landbos.projectMgmtCost(self.constructionTime)
        self.assertAlmostEqual(2607139, cost, delta=0.5)