specify mesh size
This commit is contained in:
parent
975e42b132
commit
e779c2e1e6
|
@ -29,13 +29,18 @@ parser.add_option('-n','--numvol', dest = 'N', \
|
||||||
type='int',\
|
type='int',\
|
||||||
metavar='int',\
|
metavar='int',\
|
||||||
help='number of physical volumes' )
|
help='number of physical volumes' )
|
||||||
parser.add_option('-s','--surfaces', dest = 'surfaces', \
|
parser.add_option('-f','--faces', dest = 'surfaces', \
|
||||||
action = 'extend', \
|
action = 'extend', \
|
||||||
type = 'string', \
|
type = 'string', \
|
||||||
metavar = '<string LIST>', \
|
metavar = '<string LIST>', \
|
||||||
help = 'surfaces to tag (x, y, and/or z)')
|
help = 'surfaces to tag (x, y, and/or z)')
|
||||||
|
parser.add_option('-s','--size', dest = 'size', \
|
||||||
|
type='float',\
|
||||||
|
metavar='float',\
|
||||||
|
help='mesh size' )
|
||||||
|
|
||||||
(options, filename) = parser.parse_args()
|
(options, filename) = parser.parse_args()
|
||||||
|
parser.set_defaults(size = 0.1)
|
||||||
|
|
||||||
my_geofile = filename[0]
|
my_geofile = filename[0]
|
||||||
numVol = options.N
|
numVol = options.N
|
||||||
|
@ -122,4 +127,15 @@ with open(my_geofile,'a') as f:
|
||||||
for i in range(numVol):
|
for i in range(numVol):
|
||||||
f.write('%s%d%s%d%s\n' %('Physical Volume (', i+1,') = {',i+1,'};'))
|
f.write('%s%d%s%d%s\n' %('Physical Volume (', i+1,') = {',i+1,'};'))
|
||||||
|
|
||||||
|
f.write('Field[1] = Box;\n')
|
||||||
|
f.write('%s%f%s\n' %('Field[1].VIn = ', options.size,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].VOut = ',options.size,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].XMin = ',xmin,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].XMax = ',xmax,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].YMin = ',ymin,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].YMax = ',ymax,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].ZMin = ',zmin,';'))
|
||||||
|
f.write('%s%f%s\n' %('Field[1].ZMax = ',zmax,';'))
|
||||||
|
f.write('Background Field = 1;\n')
|
||||||
|
|
||||||
f.close()
|
f.close()
|
||||||
|
|
Loading…
Reference in New Issue