Skip to content

Commit 23f1bd2

Browse files
authored
Merge pull request NHERI-SimCenter#407 from bsaakash/master
abs - dakota command fix in plom
2 parents d3ae80c + 3823079 commit 23f1bd2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

modules/performUQ/SimCenterUQ/runPLoM.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ def _run_simulation(self): # noqa: C901
215215

216216
# command line
217217
# KZ modified 0331
218-
command_line = f'{pythonEXE} {dakotaScript} --workflowInput sc_dakota_plom.json --driverFile {os.path.splitext(self.workflow_driver)[0]} --workflowOutput EDP.json --runType {runType}' # noqa: PTH122
218+
# command_line = f'{pythonEXE} {dakotaScript} --workflowInput sc_dakota_plom.json --driverFile {os.path.splitext(self.workflow_driver)[0]} --workflowOutput EDP.json --runType {runType}'
219+
command_line = f'{pythonEXE} {dakotaScript} --workflowInput sc_dakota_plom.json --driverFile {os.path.splitext(self.workflow_driver)[0]} --workflowOutput EDP.json --runType runningLocal' # noqa: PTH122
219220
print(command_line) # noqa: T201
220221
# run command
221222
dakotaTabPath = os.path.join(self.work_dir, 'dakotaTab.out') # noqa: PTH118, N806

0 commit comments

Comments
 (0)