From 6fb1de64bad51cf19c51cd33b5cc1f3eb5f6864d Mon Sep 17 00:00:00 2001 From: Su Tian Date: Mon, 12 Jul 2021 14:05:36 -0400 Subject: [PATCH] 0712 --- msgpi/analysis.py | 6 +++--- msgpi/presg.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/msgpi/analysis.py b/msgpi/analysis.py index b866849..90d3f80 100644 --- a/msgpi/analysis.py +++ b/msgpi/analysis.py @@ -151,7 +151,7 @@ def runVABS(command, input_name, analysis, scrnout=True, logger=None): elif analysis == 3 or analysis == 'fi': cmd.append('3') - logger.debug(' '.join(cmd)) + logger.info(' '.join(cmd)) if scrnout: sbp.call(cmd) @@ -177,12 +177,12 @@ def runSwiftComp( command, input_name, analysis, smdim, aperiodic=False, output_gmsh_format=True, reduced_integration=False, scrnout=True, logger=None): - """Run VABS. + """Run SwiftComp. Parameters ---------- command : str - Command name of VABS + Command name of SwiftComp input_name : str Name of the input file. analysis : {0, 2, 3, 4, 5, '', 'h', 'dl', 'd', 'l', 'fi', 'f', 'fe'} diff --git a/msgpi/presg.py b/msgpi/presg.py index 30778c4..34bd3b2 100644 --- a/msgpi/presg.py +++ b/msgpi/presg.py @@ -356,7 +356,7 @@ def preSG( cmd.append('-' + analysis) # cmd = ' '.join(cmd) - logger.debug(' '.join(cmd)) + logger.info(' '.join(cmd)) utl.run(cmd, timeout, scrnout) # if scrnout: # print('cmd:', cmd)