Update Jupyter notebooks based on Tally property changes

This commit is contained in:
Paul Romano 2016-02-23 10:48:47 -06:00
parent 1e674ebbdb
commit a4ed73fc11
4 changed files with 237 additions and 250 deletions

View file

@ -408,9 +408,8 @@
"\n",
"# Create mesh tally to score flux and fission rate\n",
"tally = openmc.Tally(name='flux')\n",
"tally.add_filter(mesh_filter)\n",
"tally.add_score('flux')\n",
"tally.add_score('fission')\n",
"tally.filters = [mesh_filter]\n",
"tally.scores = ['flux', 'fission']\n",
"tallies_file.add_tally(tally)"
]
},