コード例 #1
0
ファイル: SU2_wrapper.py プロジェクト: ygtaksoy/SU2_wrapper
 def execute(self):
     # local copy
     if self._first_exec:
         self._first_exec = False
     else:
         self.config_in.RESTART_SOL = "YES"
     state = direct(self.config_in)
     restart2solution(self.config_in, state)
     for name in _obj_names:
         setattr(self, name, state.FUNCTIONS[name])
コード例 #2
0
ファイル: SU2_wrapper.py プロジェクト: LeeRuns/SU2_wrapper
 def execute(self):
     # local copy
     if self._first_exec:
         self._first_exec = False
     else:
         self.config_in.RESTART_SOL = "YES"
     state = direct(self.config_in)
     restart2solution(self.config_in, state)
     for name in _obj_names:
         setattr(self, name, state.FUNCTIONS[name])
コード例 #3
0
ファイル: SU2_wrapper.py プロジェクト: thearn/SU2_wrapper
 def execute(self):
     # local copy
     state = direct(self.config_in)
     restart2solution(self.config_in, state)
     for name in _obj_names:
         setattr(self, name, state.FUNCTIONS[name])