Skip to content

Commit 6a8dcbe

Browse files
author
andrewjohnson
committed
First initial draft of slide and notebooks
1 parent a660537 commit 6a8dcbe

File tree

15 files changed

+23369
-93
lines changed

15 files changed

+23369
-93
lines changed

.gitignore

Lines changed: 13 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -3,99 +3,19 @@ __pycache__/
33
*.py[cod]
44
*$py.class
55

6-
# C extensions
7-
*.so
8-
9-
# Distribution / packaging
10-
.Python
11-
env/
12-
build/
13-
develop-eggs/
14-
dist/
15-
downloads/
16-
eggs/
17-
.eggs/
18-
lib/
19-
lib64/
20-
parts/
21-
sdist/
22-
var/
23-
wheels/
24-
*.egg-info/
25-
.installed.cfg
26-
*.egg
27-
28-
# PyInstaller
29-
# Usually these files are written by a python script from a template
30-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31-
*.manifest
32-
*.spec
33-
34-
# Installer logs
35-
pip-log.txt
36-
pip-delete-this-directory.txt
37-
38-
# Unit test / coverage reports
39-
htmlcov/
40-
.tox/
41-
.coverage
42-
.coverage.*
43-
.cache
44-
nosetests.xml
45-
coverage.xml
46-
*.cover
47-
.hypothesis/
48-
49-
# Translations
50-
*.mo
51-
*.pot
52-
53-
# Django stuff:
54-
*.log
55-
local_settings.py
56-
57-
# Flask stuff:
58-
instance/
59-
.webassets-cache
60-
61-
# Scrapy stuff:
62-
.scrapy
63-
64-
# Sphinx documentation
65-
docs/_build/
66-
67-
# PyBuilder
68-
target/
69-
706
# Jupyter Notebook
717
.ipynb_checkpoints
728

73-
# pyenv
74-
.python-version
75-
76-
# celery beat schedule file
77-
celerybeat-schedule
78-
79-
# SageMath parsed files
80-
*.sage.py
81-
82-
# dotenv
83-
.env
84-
85-
# virtualenv
86-
.venv
87-
venv/
88-
ENV/
89-
90-
# Spyder project settings
91-
.spyderproject
92-
.spyproject
93-
94-
# Rope project settings
95-
.ropeproject
96-
97-
# mkdocs documentation
98-
/site
99-
100-
# mypy
101-
.mypy_cache/
9+
# latex stuff
10+
*.aux
11+
*.log
12+
*.dvi
13+
*.snm
14+
*.toc
15+
*.nav
16+
*.out
17+
*.pdf
18+
*.bbl
19+
*.blg
20+
21+
.*.swp

models/branching.coe

Lines changed: 13932 additions & 0 deletions
Large diffs are not rendered by default.

models/bwr

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
% -----------------------------------------------------------------------------
2+
3+
% Geometry and material data are from the UO2 BWR (hot 40% void) case in:
4+
5+
% A. Yamamoto, et al. "Benchmark Problem Suite for Reactor Physics Study of LWR
6+
% Next Generation Fuels." J. Nucl. Sci. Technol. 39 (2002) 900-912.
7+
8+
9+
set acelib "/xs/sss_endfb7u.xsdata"
10+
set declib "/xs/sss_endfb7.dec"
11+
set nfylib "/xs/sss_endfb7.nfy"
12+
13+
set pop 10000 500 20
14+
15+
% --- Geometry model ----------------------------------------------------------
16+
17+
% --- Fuel pins:
18+
19+
pin 1
20+
fue1 0.49
21+
zirc 0.56
22+
cool
23+
24+
pin 2
25+
fue2 0.49
26+
zirc 0.56
27+
cool
28+
29+
pin 3
30+
fue3 0.49
31+
zirc 0.56
32+
cool
33+
34+
pin 4
35+
fue4 0.49
36+
zirc 0.56
37+
cool
38+
39+
pin G
40+
fueG 0.49
41+
zirc 0.56
42+
cool
43+
44+
pin 9
45+
cool
46+
47+
% --- Lattice:
48+
49+
lat 10 1 0.0 0.0 11 11 1.440
50+
51+
9 9 9 9 9 9 9 9 9 9 9
52+
9 4 3 2 1 1 1 2 3 4 9
53+
9 9 1 G 1 1 1 G 1 3 9
54+
9 9 9 1 G 1 G 1 G 2 9
55+
9 9 9 9 1 9 9 G 1 1 9
56+
9 9 9 9 9 9 9 1 1 1 9
57+
9 9 9 9 9 9 1 G 1 1 9
58+
9 9 9 9 9 9 9 1 G 2 9
59+
9 9 9 9 9 9 9 9 1 3 9
60+
9 9 9 9 9 9 9 9 9 4 9
61+
9 9 9 9 9 9 9 9 9 9 9
62+
63+
% --- Flow channel:
64+
65+
surf 1 sqc 0.0 0.0 6.70
66+
surf 2 sqc 0.0 0.0 6.95
67+
surf 3 sqc 0.0 0.0 7.62
68+
69+
% --- Internal moderator channels:
70+
71+
surf 4 cyl 0.915 -0.915 1.1750
72+
surf 5 cyl 0.915 -0.915 1.2450
73+
74+
% --- Assembly:
75+
cell 1 0 moder -4
76+
cell 2 0 zirc 4 -5
77+
cell 3 0 fill 10 -1 5
78+
cell 4 0 zirc 1 -2
79+
cell 5 0 moder 2 -3
80+
cell 99 0 outside 3
81+
82+
% --- Boundary condition:
83+
84+
set bc 2
85+
86+
% --- Symmetry
87+
88+
set usym 10 3 2 0.0 0.0 225 180
89+
90+
% -----------------------------------------------------------------------------
91+
92+
% --- Material data -----------------------------------------------------------
93+
94+
% --- Fuel types:
95+
96+
mat fue1 -10.1 burn 1
97+
92235.09c 1.4322E-03
98+
92238.09c 2.1032E-02
99+
8016.09c 4.4928E-02
100+
101+
mat fue2 -10.1 burn 1
102+
92235.09c 1.1367E-03
103+
92238.09c 2.1324E-02
104+
8016.09c 4.4921E-02
105+
106+
mat fue3 -10.1 burn 1
107+
92235.09c 9.0936E-04
108+
92238.09c 2.1549E-02
109+
8016.09c 4.4916E-02
110+
111+
mat fue4 -10.1 burn 1
112+
92235.09c 6.8203E-04
113+
92238.09c 2.1774E-02
114+
8016.09c 4.4912E-02
115+
116+
mat fueG -9.8 burn 1
117+
92235.09c 1.0389E-03
118+
92238.09c 1.9490E-02
119+
8016.09c 4.3985E-02
120+
64154.09c 4.1864E-05
121+
64155.09c 2.8739E-04
122+
64156.09c 3.9950E-04
123+
64157.09c 3.0602E-04
124+
64158.09c 4.8536E-04
125+
64160.09c 4.3093E-04
126+
127+
% --- Structural material
128+
129+
mat zirc -6.53 rgb 200 200 200
130+
40000.06c 1.00
131+
132+
% --- Coolant and moderator:
133+
134+
mat cool -0.457 moder lwtr 1001 rgb 150 200 255
135+
1001.06c 0.66667
136+
8016.06c 0.33333
137+
138+
mat moder -0.737 moder lwtr 1001 rgb 100 150 205
139+
1001.06c 0.66667
140+
8016.06c 0.33333
141+
142+
therm lwtr lwe7.12t
143+
144+
% -----------------------------------------------------------------------------
145+
146+
% - Detector
147+
148+
ene twoGrp 4 default2
149+
ene fineGrp 4 nj2
150+
151+
det xymesh
152+
de twoGrp
153+
dx -7.6 7.6 20
154+
dy -7.6 7.6 20
155+
156+
mat u5 1 92235.06c 1
157+
158+
det spectrum
159+
de fineGrp
160+
dr -1 void
161+
dr 18 u5
162+
163+
det mixed
164+
de twoGrp
165+
dx -7.6 7.6 10
166+
dr 18 u5
167+
dr 16 u5
168+
169+
set gcu 0
170+
171+
% small depletion
172+
dep butot 0.5 1.0 5.0 10.0 20.0
173+
set powdens 1E3
174+
175+
set inventory
176+
177+
922350
178+
942390
179+
942400
180+
942410
181+
952410
182+
952430
183+
641550
184+
641570
185+
541350
186+
621490
187+
531310
188+
551340
189+
551370
190+
% set printm 1

0 commit comments

Comments
 (0)