-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshieldblock701_openmcInput.py
executable file
·131 lines (130 loc) · 4.26 KB
/
shieldblock701_openmcInput.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/usr/bin/python
#
import numpy
from tabulate import tabulate # some people may need to pip install tabulate
import openmc
import pandas as pd
#
# materials section
#
# using UWUW workflow so materials are already injected into the h5m CAD file
# Not sure how to get openmc to read these...perhaps it is automatic
# but openmc still wants a materials.xml file to be present
#
# try exporting a materials.xml without anything in it
materials = openmc.Materials([]) # create the empty collection of materials
materials.export_to_xml() # write the empty materials.xml file
#
#
# may need exporting cross sections to xml (if default endf/b-7.1 not acceptable)
#
# using DAGMC CAD for geometry
dag_univ = openmc.DAGMCUniverse(filename='shieldblock701_zip.h5m')
geometry = openmc.Geometry(dag_univ)
geometry.export_to_xml()
#
# plot section
# generate some plot slices
zslice_plot = openmc.Plot()
zslice_plot.filename='plotzsliceshieldblock701cell'
zslice_plot.basis = 'xy'
zslice_plot.origin = (0, 0, 5)
zslice_plot.width = (115., 115.)
zslice_plot.pixels = (400, 400)
#
yslice_plot = openmc.Plot()
yslice_plot.filename='plotysliceshieldblock701cell'
yslice_plot.basis = 'xz'
yslice_plot.origin = (0, 0, 0)
yslice_plot.width = (115., 115.)
yslice_plot.pixels = (400, 400)
#
plots = openmc.Plots([zslice_plot,yslice_plot])
plots.export_to_xml()
openmc.plot_geometry()
#
#
# source and settings section
source = openmc.Source()
# sets the location of the source to x=0 y=0 z=-10
source.space = openmc.stats.Point((0, 0, -10))
# sets the direction to isotropic
source.angle = openmc.stats.Isotropic()
# sets the energy distribution to 100% 14.1 MeV neutrons
source.energy = openmc.stats.Discrete([14.1e6], [1])
source.particle = 'neutron'
source.strength = 1 # set source strength 1 n/sec
#
settings = openmc.Settings()
settings.run_mode = 'fixed source'
settings.source = source
settings.batches = 10
settings.particles = 100000
settings.export_to_xml()
#
# tallies section
cell_filter = openmc.CellFilter([1, 2, 3])
mytally = openmc.Tally(14) # set tally number to 14 (arbitrary)
mytally.filters = [cell_filter]
mytally.scores = ['flux']
#
tallies = openmc.Tallies([mytally])
tallies.export_to_xml()
#
# now run
openmc.run()
#
#
# get cell tallies
# (get tally values from statepoint file statepoint.10.h5)
with openmc.StatePoint('statepoint.10.h5') as sp:
sp_tally = sp.get_tally(id=mytally.id)
#
flux_mean = sp_tally.get_values(scores=['flux'], value='mean')
flux_std_dev = sp_tally.get_values(scores=['flux'], value='std_dev')
#
# print tallies with pandas_dataframe
print("\n My Tallies: \n")
df = sp_tally.get_pandas_dataframe()
print(df)
#
#### To compare to MCNP we need to convert units of flux ####
#
# create a list containing the volume of each tally cell in cm3
vol_tallycell1=100000.0
vol_tallycell2=100000.0
vol_tallycell3=8000.0
#
vol_tallycells=numpy.ones((3,1,1)) # create a numpy array of ones
#
vol_tallycells[0,0,0]=vol_tallycell1 # set value of each cell (recall indexing starts at 0)
vol_tallycells[1,0,0]=vol_tallycell2 # set value of each cell (recall indexing starts at 0)
vol_tallycells[2,0,0]=vol_tallycell3 # set value of each cell (recall indexing starts at 0)
#print("\n The volume of tally cells array is: ", vol_tallycells, "\n")
#
# need to divide tallies by cell volume to get flux in units of n/(cm2 sec) per source particle
flux=numpy.divide(flux_mean, vol_tallycells)
# calculate relative error to compare to MCNP
relative_error=flux_std_dev/flux_mean
#print("\n Relative Error: ", relative_error)
#
#
results_openmc=numpy.hstack((flux,relative_error)) # combine flux and relerr arrays horizontally
#
print("\n Convert units of above table in order to compare versus MCNP cell tallies: \n")
print("Flux n/(cm2 sec) Relative Error")
print("------------------------------------")
# print a pretty table using tabulate (some people may need to pip install tabulate)
print(tabulate(results_openmc,floatfmt=".3e",tablefmt="plain"))
#
# create pandas dataframe
#column_names=['Flux n/(cm2 sec)','RelativeError']
#index_names=['one','two','three']
#testdf=pd.DataFrame(data=results_openmc, index=index_names,columns=column_names)
#print(testdf)
#
# source strength=??? (can put in source)
# slab1 steel vol=1 has vol=1e5 cm3
# slab2 water vol=2 has vol=1e5 cm3
# square beam tube void vol=3 has vol=8e3 cm3
#