added output of default values, still does not run for my geometry
This commit is contained in:
parent
89a8f8d8c0
commit
1ff98296b3
|
@ -140,7 +140,7 @@ parser.add_option('-d', '--distance', dest='d', type='int', \
|
||||||
parser.add_option('-N', '--smooth', dest='N', type='int', \
|
parser.add_option('-N', '--smooth', dest='N', type='int', \
|
||||||
help='N for curvature flow [%default]')
|
help='N for curvature flow [%default]')
|
||||||
parser.add_option('-p', '--processors', dest='p', type='int', nargs = 3, \
|
parser.add_option('-p', '--processors', dest='p', type='int', nargs = 3, \
|
||||||
help='number of threads in x,y,z direction')
|
help='number of threads in x,y,z direction %default')
|
||||||
parser.add_option('-b', '--black', dest='black', action='extend', type='string', \
|
parser.add_option('-b', '--black', dest='black', action='extend', type='string', \
|
||||||
help='indices of stationary microstructures', metavar='<LIST>')
|
help='indices of stationary microstructures', metavar='<LIST>')
|
||||||
|
|
||||||
|
@ -172,7 +172,7 @@ else:
|
||||||
|
|
||||||
#--- loop over input files ------------------------------------------------------------------------
|
#--- loop over input files ------------------------------------------------------------------------
|
||||||
for file in files:
|
for file in files:
|
||||||
if file['name'] != 'STDIN': file['croak'].write('\033[1m'+scriptName+'\033[0m: '+file['name']+'\n')
|
if file['name'] != 'STDIN': file['croak'].write('\033[1m'+scriptName+'\033[0m: '+file['name']+'\n')
|
||||||
else: file['croak'].write('\033[1m'+scriptName+'\033[0m\n')
|
else: file['croak'].write('\033[1m'+scriptName+'\033[0m\n')
|
||||||
|
|
||||||
theTable = damask.ASCIItable(file['input'],file['output'],labels=False)
|
theTable = damask.ASCIItable(file['input'],file['output'],labels=False)
|
||||||
|
|
Loading…
Reference in New Issue