Added two more radial core map plots to SMR model for debugging

This commit is contained in:
Will Boyd 2017-02-06 19:48:16 -05:00
parent 95b57ffdfe
commit 6af8d5ddf0
2 changed files with 25 additions and 3 deletions

View file

@ -531,9 +531,9 @@ stack_surfs_BA = [
surfs['grid2top'],
surfs['grid3bot'],
surfs['grid3top'],
surfs['top active core'],
surfs['grid4bot'],
surfs['grid4top'],
surfs['top active core'],
surfs['top pin plenum'],
surfs['top FR'],
surfs['bot upper nozzle'],

View file

@ -23,12 +23,34 @@ col_spec = {mats['H2O'].id: [198, 226, 255], # light blue
# Create a collection of plots
plots = openmc.Plots()
plot = openmc.Plot(name='radial core map')
plot = openmc.Plot(name='radial core map 1')
plot.basis = 'xy'
plot.color = 'mat'
plot.origin = [0., 0., (highest_extent-lowest_extent)/2.]
plot.width = [19*lattice_pitch/2, 19*lattice_pitch/2.]
plot.filename = 'radial_core_map'
plot.filename = 'radial_core_map1'
plot.col_spec = col_spec
plot.background = [255, 255, 255]
plot.pixels = [1000, 1000]
plots += [plot]
plot = openmc.Plot(name='radial core map 2')
plot.basis = 'xy'
plot.color = 'mat'
plot.origin = [0., 0., 40.]
plot.width = [19*lattice_pitch/2, 19*lattice_pitch/2.]
plot.filename = 'radial_core_map2'
plot.col_spec = col_spec
plot.background = [255, 255, 255]
plot.pixels = [1000, 1000]
plots += [plot]
plot = openmc.Plot(name='radial core map 3')
plot.basis = 'xy'
plot.color = 'mat'
plot.origin = [0., 0., 218.]
plot.width = [19*lattice_pitch/2, 19*lattice_pitch/2.]
plot.filename = 'radial_core_map3'
plot.col_spec = col_spec
plot.background = [255, 255, 255]
plot.pixels = [1000, 1000]