Results - Summary
{% if 'F2' in tally_types %}
{% for particle in f2_tallies if f2_tallies[particle] %}
F2 Tally {{particle.capitalize()[:-1]}} Values
Tally Number |
Surface |
Value (uSv/h) |
Error |
{% for tally in f2_tallies[particle] %}
{{tally.tally_number}} |
{{tally.results['surface']}} |
{{"%.3e"|format(tally.results['result'])}} |
{{tally.results['variance']}}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if 'F4' in tally_types %}
{% for particle in f4_tallies if f4_tallies[particle] %}
F4 Tally {{particle.capitalize()[:-1]}} Values
Tally Number |
Cell Number |
Value (uSv/h) |
Error |
{% for tally in f4_tallies[particle] %}
{% for region in tally.results %}
{{tally.tally_number}} |
{{region['region'][5:]}} |
{{"%.3e"|format(region['result'])}} |
{{region['variance']}}
|
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% if 'F5' in tally_types %}
{% for particle in f5_tallies if f5_tallies[particle] %}
F5 Tally {{particle.capitalize()[:-1]}} Values
Tally Number |
X |
Y |
Z |
Value (uSv/h) |
Error |
{% for tally in f5_tallies[particle] %}
{{tally.tally_number}} |
{{tally.results['x']}} |
{{tally.results['y']}} |
{{tally.results['z']}} |
{{"%.3e"|format(tally.results['result'])}} |
{{tally.results['variance']}}
|
{% endfor %}
{% endfor %}
{% endif %}
Results Breakdown
{# F2 TALLY RESULTS #}
{% if 'F2' in tally_types %}
F2 Tally Results
{% for particle in f2_tallies %}
{% for tally in f2_tallies[particle] %}
Results for {{tally.particles.capitalize()[:-1]}} {{tally.tally_type[:-1].title()}}, Tally Number: {{tally.tally_number}}
Tally Number |
Surface |
Value (uSv/h) |
Error |
{{tally.tally_number}} |
{{tally.results['surface']}} |
{{"%.3e"|format(tally.results['result'])}} |
{{tally.results['variance']}}
|
{{ tally_check(tally=tally) }}
{% endfor %} {# This was "for tally in particle" #}
{% endfor %} {# This was "for particle in F2_tallies" #}
{% endif %} {# This was "if F2 in tally_types" #}
{# F4 TALLY RESULTS #}
{% if 'F4' in tally_types %}
F4 Tally Results
{% for particle in f4_tallies %}
{% for tally in f4_tallies[particle] %}
Results for {{tally.particles.capitalize()[:-1]}} {{tally.tally_type[:-1].title()}}, Tally Number: {{tally.tally_number}}
Tally Number |
Cell Number |
Value (uSv/h) |
Error |
{% for region in tally.results %}
{{tally.tally_number}} |
{{region['region'][5:]}} |
{{"%.3e"|format(region['result'])}} |
{{region['variance']}}
|
{% endfor %}
{{ tally_check(tally=tally) }}
{% endfor %} {# This was "for tally in particle" #}
{% endfor %} {# This was "for particle in F4_tallies" #}
{% endif %} {# This was "if F4 in tally_types" #}
{# F5 TALLY RESULTS #}
{% if 'F5' in tally_types %}
F5 Tally Results
{% for particle in f5_tallies %}
{% for tally in f5_tallies[particle] %}
Results for {{tally.particles.capitalize()[:-1]}} {{tally.tally_type[:-1].title()}}, Tally Number: {{tally.tally_number}}
Tally Number |
X |
Y |
Z |
Value (uSv/h) |
Error |
{{tally.tally_number}} |
{{tally.results['x']}} |
{{tally.results['y']}} |
{{tally.results['z']}} |
{{"%.3e"|format(tally.results['result'])}} |
{{tally.results['variance']}}
|
{{ tally_check(tally=tally) }}
{% endfor %} {# This was "for tally in particle" #}
{% endfor %} {# This was "for particle in F5_tallies" #}
{% endif %} {# This was "if F5 in tally_types" #}
{% endif %} {# This is the "if tallies" #}
{% if k_eff %}
Eddy, the MCNP and SCALE output HTML Generator, was created by
Cerberus Nuclear.
Unless the results in this document were calculated directly by Cerberus Nuclear,
Cerberus accepts no responsibility for the accuracy of any results presented.
This software is provided by Cerberus Nuclear Limited "as is" and any express or implied
warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular
purpose are disclaimed.
In no event shall cerberus nuclear limited be liable for any direct, indirect, incidental, special, exemplary,
or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use,
data, or profits; or business interruption) however caused and on any theory of liability, whether in contract,
strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software,
even if advised of the possibility of such damage.
Comments
The following comments were generated:
{% for comment in comments %}{{comment.capitalize()}}
{% endfor %}