コード例 #1
0
ファイル: models.py プロジェクト: sean-v8/RMG-website
    def createOutput(self):
        """
        Generate output html file from the path containing chemkin and dictionary files.
        """
        from diffModels import saveCompareHTML

        saveCompareHTML(self.path, self.chemkin1, self.dict1, self.chemkin2, self.dict2)
コード例 #2
0
ファイル: models.py プロジェクト: mliu49/RMG-website
 def createOutput(self):
     """
     Generate output html file from the path containing chemkin and dictionary files.
     """
     from diffModels import saveCompareHTML
     readComments1 = not self.Foreign1
     readComments2 = not self.Foreign2
     saveCompareHTML(self.path, self.chemkin1, self.dict1, self.chemkin2, self.dict2, readComments1, readComments2)
コード例 #3
0
 def createOutput(self):
     """
     Generate output html file from the path containing chemkin and dictionary files.
     """
     from diffModels import saveCompareHTML
     readComments1 = not self.Foreign1
     readComments2 = not self.Foreign2
     saveCompareHTML(self.path, self.chemkin1, self.dict1, self.chemkin2,
                     self.dict2, readComments1, readComments2)