|
1 | | -{ |
2 | | - "cells": [ |
3 | | - { |
4 | | - "cell_type": "markdown", |
5 | | - "metadata": {}, |
6 | | - "source": [ |
7 | | - "# Continuous-Energy Neutron Data\n", |
8 | | - "This file will list the available data for incident, continuous energy, neutrons. These are materials that have a library type of `c` or `nc`.\n", |
9 | | - "\n", |
10 | | - "## Columns\n", |
11 | | - "The main columns shown for fast neutrons are:\n", |
12 | | - "\n", |
13 | | - "`ZAID`\n", |
14 | | - ": ZAID\n", |
15 | | - "\n", |
16 | | - "`AWR`\n", |
17 | | - ": atomic weight ratio\n", |
18 | | - "\n", |
19 | | - "`library`\n", |
20 | | - ": The collection of data tables making up a library of data\n", |
21 | | - "\n", |
22 | | - "`path`\n", |
23 | | - ": Relative path to where the actual data file is found\n", |
24 | | - "\n", |
25 | | - "`ZA`\n", |
26 | | - ": ZA of the target material\n", |
27 | | - "\n", |
28 | | - "`T(K)`\n", |
29 | | - ": The temperature (in Kelvin) of the material\n", |
30 | | - "\n", |
31 | | - "`Date`\n", |
32 | | - ": The date the data was processed. There is some *very* old data\n", |
33 | | - "\n", |
34 | | - "`NE`\n", |
35 | | - ": The number of energies in the grid\n", |
36 | | - "\n", |
37 | | - "`Emax`\n", |
38 | | - ": The highest tabulated energy\n", |
39 | | - "\n", |
40 | | - "`GPD`\n", |
41 | | - ": Whether gamma production data is included in the file\n", |
42 | | - "\n", |
43 | | - "`nubar`\n", |
44 | | - ": Whether fission neutrons are tabulated. There are four possible values:\n", |
45 | | - "\n", |
46 | | - " - `no` No nubar data is given\n", |
47 | | - " - `pr` Only prompt nubar is given \n", |
48 | | - " - `tot` Only total nubar is given\n", |
49 | | - " - `both` Both delayed and prompt nubar are given\n", |
50 | | - " \n", |
51 | | - " `CP`\n", |
52 | | - " : Whether or not secondary charged-particle data are present\n", |
53 | | - " \n", |
54 | | - " `DN`\n", |
55 | | - " : Whether or not delayed neutron data are present\n", |
56 | | - " \n", |
57 | | - " `UR`\n", |
58 | | - " : Whether or not unresolved resonance data (probably tables) are present" |
59 | | - ] |
60 | | - }, |
61 | | - { |
62 | | - "cell_type": "markdown", |
63 | | - "metadata": {}, |
64 | | - "source": [ |
65 | | - "## Listing\n", |
66 | | - "To get a list of continuous-energy neutron data, execute the following cells. To execute, select the cell and press CTRL-Enter" |
67 | | - ] |
68 | | - }, |
69 | | - { |
70 | | - "cell_type": "code", |
71 | | - "execution_count": null, |
72 | | - "metadata": {}, |
73 | | - "outputs": [], |
74 | | - "source": [ |
75 | | - "import listing\n", |
76 | | - "XSDIR = listing.loadXSDIR()\n", |
77 | | - "lib_type = ['c', 'nc']\n", |
78 | | - "display = listing.DisplayData(XSDIR, lib_type)" |
79 | | - ] |
80 | | - }, |
81 | | - { |
82 | | - "cell_type": "markdown", |
83 | | - "metadata": {}, |
84 | | - "source": [ |
85 | | - "To show the listing for a particular `ZA`, execute the `display` function which takes the `ZA` as an argument. If no `ZA` is given as an argument, *all* the entries will be displayed (and abbreviated) which is probably not what you want." |
86 | | - ] |
87 | | - }, |
88 | | - { |
89 | | - "cell_type": "code", |
90 | | - "execution_count": null, |
91 | | - "metadata": {}, |
92 | | - "outputs": [], |
93 | | - "source": [ |
94 | | - "ZA = 5010\n", |
95 | | - "display(ZA)" |
96 | | - ] |
97 | | - }, |
98 | | - { |
99 | | - "cell_type": "code", |
100 | | - "execution_count": null, |
101 | | - "metadata": {}, |
102 | | - "outputs": [], |
103 | | - "source": [ |
104 | | - "plot(\"92235.00c\", mt=18)" |
105 | | - ] |
106 | | - } |
107 | | - ], |
108 | | - "metadata": { |
109 | | - "kernelspec": { |
110 | | - "display_name": "Python 3", |
111 | | - "language": "python", |
112 | | - "name": "python3" |
113 | | - }, |
114 | | - "language_info": { |
115 | | - "codemirror_mode": { |
116 | | - "name": "ipython", |
117 | | - "version": 3 |
118 | | - }, |
119 | | - "file_extension": ".py", |
120 | | - "mimetype": "text/x-python", |
121 | | - "name": "python", |
122 | | - "nbconvert_exporter": "python", |
123 | | - "pygments_lexer": "ipython3", |
124 | | - "version": "3.8.5" |
125 | | - } |
126 | | - }, |
127 | | - "nbformat": 4, |
128 | | - "nbformat_minor": 4 |
129 | | -} |
0 commit comments