diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3ca5504 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,36 @@ +# Thanks to https://github.com/codecov. Got this script from there. +language: c +sudo: required + +before_install: + - sudo apt-get install gfortran + - pip install --user cpp-coveralls + +script: + - cd src + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_data.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_io.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_xsec.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_nodal.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_cmfd.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_th.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_trans.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c mod_control.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage -c ADPRES.f90 + - gfortran -O4 -fprofile-arcs -ftest-coverage *.o -o adpres + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/IAEA3Ds + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/FDM + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/PNM + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/DVP + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/CBCsearch + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/adjoint + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/fixed_source + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/MOX/part3_helios + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/static/NEACRP/A1 + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/transient/LMW + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/transient/MOX/part4_helios + - ./adpres /home/travis/build/imronuke/ADPRES/smpl/transient/NEACRP/A1t + +after_success: + - coveralls --exclude lib --exclude tests --gcov-options '\-lp' + - bash <(curl -s https://codecov.io/bash) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4af911d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 imronuke + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..988279a --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +![Language](https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/fortran.png) [![Build Status](https://travis-ci.com/imronuke/ADPRES.svg?branch=master)](https://travis-ci.com/imronuke/ADPRES) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/imronuke/ADPRES/blob/master/LICENSE) [![codecov](https://codecov.io/gh/imronuke/ADPRES/branch/master/graph/badge.svg)](https://codecov.io/gh/imronuke/ADPRES) + + + + + +[![ADPRES](https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/adpres1.png)](https://imronuke.github.io/ADPRES/) + +**Documentation available at**: https://imronuke.github.io/ADPRES/ + +**Features:** +* Input is straightforward, modular and in a free-format form +* Solves both static and transient core problems **with or without TH feedback** +* Performs forward, adjoint and fixed-source calculations +* Performs calculations using branched cross sections data. An example of the library format can be seen [here](https://github.com/imronuke/ADPRES/blob/master/smpl/xsec/SERPENT_CMM/m40.tab) +* Critical boron concentration search +* Rod ejection simulation or Reactivity Initiated Accident (RIA) +* Solves multi-group of neutron energy +* Solves calculations with Assembly Discontinuity Factors (ADFs) +* CMFD accelerated using two-node problem non-linear iteration +* CMFD matrix is solved with the latest linear system solver: BiCGSTAB +* Thermal-hydraulics solutions are obtained by solving mass and energy conservation equations in an enclosed channel +* Three nodal kernels are available: + * Traditional Finite Difference Method + * Polynomial Nodal Method (PNM) which is equivalent to Nodal Expansion Method (NEM) + * Semi-Analytic Nodal Method (SANM) + +# ADPRES + +Abu Dhabi Polytechnic Reactor Simulator (ADPRES) is an open nuclear reactor simulator and reactor core analysis tool that solves static and transient neutron diffusion equation for one, two or three dimensional reactor problems in Cartesian geometry. Currently, ADPRES uses Semi-Analytic Nodal Method (SANM) to spatially discretise the neutron diffusion equation. While theta method is used for the time discretisation. + +ADPRES is also a great learning tool for reactor theory classes, and we have been striving hard to make the input is easy to create. Among ADPRES' main objectives is to make all nuclear engineering students have access on reactor simulator code for them to use, learn, and modify for their own purposes. It is open and completely free, so everyone has access to the source codes and and play with them. + +# User Guides + +Here you can find quick and complete guides on how to use ADPRES. Given you have background on nuclear engineering, **we believe you can create your own ADPRES input within minutes!** +## [Theory and Background](https://imronuke.github.io/ADPRES/method) +## [Installation (Building from Source Codes)](https://imronuke.github.io/ADPRES/install) +## [Quick guides](https://imronuke.github.io/ADPRES/quick-guides) +## [Complete guides](https://imronuke.github.io/ADPRES/card-desc) + + +# How to give feedbacks +You may raise an issue or contact me at +* muhammad.imron[at]adpoly.ac.ae +* makrus.imron[at]gmail.com + +# How to cite +If you find this work helpful and use this work for a publication, you may cite as + +**Imron, M. (2019). [Development and verification of open reactor simulator ADPRES](https://doi.org/10.1016/j.anucene.2019.06.049). Annals of Nuclear Energy, 133, 580–588.** + + +> **"The best of people are those who bring most benefit to the rest of mankind." (THE PROPHET)** diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..bb15e88 --- /dev/null +++ b/_config.yml @@ -0,0 +1,3 @@ +theme: jekyll-theme-minimal +logo: https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/adpres1.png)](https://imronuke.github.io/ADPRES/ +google_analytics: UA-163207535-1 diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 0000000..50e146b --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1,3 @@ +theme: jekyll-theme-cayman +logo: https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/adpres1.png +google_analytics: UA-163207535-1 diff --git a/docs/adf.md b/docs/adf.md new file mode 100644 index 0000000..dda9b24 --- /dev/null +++ b/docs/adf.md @@ -0,0 +1,126 @@ +--- +title: %ADF +theme: _config.yml +filename: adf +--- + +# %ADF Card + +ADF card can be incorporated into ADPRES input, if any, to make the solution more accurate. + +| %ADF | Variable | Description | Remarks or examples | +| --- | --- | --- | --- | +| LINE 1 | DC(1) | East side discontinuity factor | Repeat LINE 2 NG times. And again repeat this input segment NMAT times.(See example below) | +| | DC(2) | West side discontinuity factor | +| | DC(3) | North side discontinuity factor | +| | DC(4) | South side discontinuity factor | +| | DC(5) | Bottom side discontinuity factor | +| | DC(6) | Top side discontinuity factor | +| LINE 2 | ROT | Direction for ADF rotation | This line is optional. Necessary if the value of discontinuity factor is not fully symmetric. Repeat this line followed by LINE 3 as many as desired until zero number (LINE 5) is entered.
1 = 90 degree counter clockwise
2 = 180 degree counter clock wise
3 = 270 degree counter clockwise | +| LINE 3 | X1 | Start assembly position in X-direction | This line follows LINE 2 which tells the position of assembly being rotated. Repeat this line as many as desired until zero numbers (LINE 4). Followings are value limits for these line
1 \<= X1 \<= NX;
1 \<= X2 \<= NX;
1 \<= Y1 \<= NY;
1 \<= Y2 \<= NY;
1 \<= Z1 \<= NZ;
1 \<= Z2 \<= NZ;
X1 \<= X2; Y1 \<= Y2; Z1 \<= Z2 | +| | X2 | End assembly position in X-direction | +| | Y1 | Start assembly position in Y-direction | +| | Y2 | End assembly position in Y-direction | +| | Z1 | Start assembly position in Z-direction | +| | Z2 | End assembly position in Z-direction | +| LINE 4 | 0 | Zero numbers entered to end X1 through Z2 | | +| | 0 | +| | 0 | +| | 0 | +| | 0 | +| | 0 | +| LINE 5 | 0 | Zero number to end ROT | +| LINE 6 | ZP | ADF print option | This line is optional. | + +Example: +``` +! Assembly Discontinuity Factors Card +%ADF +!g1 -> east west north south +!g2 -> east west north south +! COMPOSITION 1 + 0.9966 0.9288 0.9966 0.9288 1.0000 1.0000 ! LINE 1 + 1.1332 1.6570 1.1332 1.6570 1.0000 1.0000 ! LINE 1 +! COMPOSITION 2 + 1.0787 0.8423 1.0787 0.8423 1.0000 1.0000 ! LINE 1 + 1.6423 0.6809 1.6423 0.6809 1.0000 1.0000 ! LINE 1 +! COMPOSITION 3 + 0.9989 0.9114 0.9989 0.9114 1.0000 1.0000 ! LINE 1 + 1.1664 1.5805 1.1664 1.5805 1.0000 1.0000 ! LINE 1 +! COMPOSITION 4 +1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 ! LINE 1 +1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 ! LINE 1 +! ADF ROTATION DUE TO DIAGONALLY SYMMETRIC ADFs + 1 ! 90 degree counter clock-wise ! LINE 2 + 2 2 1 1 1 2 ! LINE 3 (and next rows) + 2 2 3 3 1 2 + 2 2 5 5 1 2 + 2 2 7 7 1 2 + 2 2 9 9 1 2 + 2 2 11 11 1 2 + 4 4 1 1 1 2 + 4 4 3 3 1 2 + 4 4 5 5 1 2 + 4 4 7 7 1 2 + 4 4 9 9 1 2 + 6 6 1 1 1 2 + 6 6 3 3 1 2 + 6 6 5 5 1 2 + 6 6 7 7 1 2 + 6 6 9 9 1 2 + 8 8 1 1 1 2 + 8 8 3 3 1 2 + 8 8 5 5 1 2 + 8 8 7 7 1 2 +10 10 1 1 1 2 +10 10 3 3 1 2 + 0 0 0 0 0 0 ! LINE 4 + 2 ! 180 degree counter clock-wise + 2 2 2 2 1 2 ! LINE 3 (and next rows) + 2 2 4 4 1 2 + 2 2 6 6 1 2 + 2 2 8 8 1 2 + 2 2 10 10 1 2 + 4 4 2 2 1 2 + 4 4 4 4 1 2 + 4 4 6 6 1 2 + 4 4 8 8 1 2 + 4 4 10 10 1 2 + 6 6 2 2 1 2 + 6 6 4 4 1 2 + 6 6 6 6 1 2 + 6 6 8 8 1 2 + 8 8 2 2 1 2 + 8 8 4 4 1 2 + 8 8 6 6 1 2 + 8 8 8 8 1 2 +10 10 2 2 1 2 +10 10 4 4 1 2 + 0 0 0 0 0 0 ! LINE 4 + 3 ! 270 degree counter clock-wise + 1 1 2 2 1 2 ! LINE 3 (and next rows) + 1 1 4 4 1 2 + 1 1 6 6 1 2 + 1 1 8 8 1 2 + 1 1 10 10 1 2 + 3 3 2 2 1 2 + 3 3 4 4 1 2 + 3 3 6 6 1 2 + 3 3 8 8 1 2 + 3 3 10 10 1 2 + 5 5 2 2 1 2 + 5 5 4 4 1 2 + 5 5 6 6 1 2 + 5 5 8 8 1 2 + 7 7 2 2 1 2 + 7 7 4 4 1 2 + 7 7 6 6 1 2 + 7 7 8 8 1 2 + 9 9 2 2 1 2 + 9 9 4 4 1 2 + 9 9 6 6 1 2 +11 11 2 2 1 2 + 0 0 0 0 0 0 ! LINE 4 + 0 ! ADF INPUTS END ! LINE 5 + 1 ! Print option ! LINE 6 +``` diff --git a/docs/bcon.md b/docs/bcon.md new file mode 100644 index 0000000..21e160b --- /dev/null +++ b/docs/bcon.md @@ -0,0 +1,52 @@ +--- +title: %BCON +theme: _config.yml +filename: bcon +--- + +# %BCON Card + +This card is used to input boron concentration parameters. `%BCON` and `%CBCS` shall not present together. + +| `%BCON` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | BCON | Core boron concentration in ppm | Used as guess if `%THER` card active | +| LINE 2 | RBCON | Reference boron concentration in ppm from which the interpolation is done | Dummy if `%XTAB` card present | +| LINE 3 | CISGTR(g) | Macroscopic Cross Section changes due to changes of boron concentration in ppm | Repeat LINE 2 NG times. And again repeat this input segment NMAT times. **This line is not necessary if `%XTAB` card present** | +| | CSIGA(g) | +| | CNUF(g) | +| | CSIGF(g) | +| | CSIGS(g,1:NG) | +| LINE 4 | POPT | Print option if users want to print this card | Optional | + +Example: +``` +! BORON CONCENTRATION +%BCON +560.53 1200.2 ! Boron concentration ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 +``` diff --git a/docs/card-desc.md b/docs/card-desc.md new file mode 100644 index 0000000..c3ab01e --- /dev/null +++ b/docs/card-desc.md @@ -0,0 +1,64 @@ +--- +title: Card Description +theme: _config.yml +filename: card-desc +--- + +# General Rules + +Some general rules for ADPRES inputs: +1. Input deck is in free-format form with maximum 200 columns +2. Comments are marked by `!`. Example: +``` +! COMPOSITION 1 +0.20574 0.00654 0.00415 0.00415 1.0 0.0 0.01462 !Group 1 +0.68866 0.04850 0.06099 0.06099 0.0 0.0 0.00000 !Group 2 +``` + +3. ADPRES input is modular, where it is broken into several cards. Cards’ keywords shall be uppercase and marked by `%`. Example: +``` +%MODE +FORWARD +%XSEC ! Cross section card +2 4 ! Number of groups and number of materials +... +... +%GEOM ! Geometry card +12 12 2 !nx, ny, nz +... +... +``` + +4. Numbers can be repeated using `*` mark. For example +``` +10.0 8*20.0 !is equivalent to 10.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 +``` + + +# Card Description + +ADPRES has several input cards. Card is a keyword marked with `%`. Each card can be placed arbitrarily in the input deck. Two cards are mandatory for any problems, while the rest are optional and conditional depend on the nature problem being solved. The description of input for each card is explained in this subsection. Following table lists all cards used in ADPRES. You can click each cards to get their description + + +| **No.** | **Cards** | **Description** | **Remark** | +| --- | --- | --- | --- | +| 1. | [`%MODE`](https://imronuke.github.io/ADPRES/mode) | Calculation mode | Mandatory | +| 2. | [`%GEOM`](https://imronuke.github.io/ADPRES/geom) | Geometry of the problem | Mandatory | +| 3. | [`%XSEC`](https://imronuke.github.io/ADPRES/xsec) | Cross Sections | Conditional | +| 4. | [`%CASE`](https://imronuke.github.io/ADPRES/case) | Problem case | Optional | +| 5. | [`%ESRC`](https://imronuke.github.io/ADPRES/esrc) | Extra source | Conditional | +| 7. | [`%ITER`](https://imronuke.github.io/ADPRES/iter) | Iteration Control | Optional | +| 8. | [`%PRNT`](https://imronuke.github.io/ADPRES/prnt) | Output print control | Optional | +| 9. | [`%ADF`](https://imronuke.github.io/ADPRES/adf) | Assembly Discontinuity Factor | Optional | +| 10. | [`%CROD`](https://imronuke.github.io/ADPRES/crod) | Control rods | Conditional | +| 11. | [`%EJCT`](https://imronuke.github.io/ADPRES/ejct) | Control rods ejection and/or insertion | Conditional | +| 12. | [`%FTEM`](https://imronuke.github.io/ADPRES/ftem) | Fuel temperature input card | Conditional | +| 13. | [`%MTEM`](https://imronuke.github.io/ADPRES/mtem) | Moderator/Coolant temperature input card | Conditional | +| 14. | [`%CDEN`](https://imronuke.github.io/ADPRES/cden) | Coolant density input card | Conditional | +| 15. | [`%BCON`](https://imronuke.github.io/ADPRES/bcon) | Boron concentration input card | Conditional | +| 16. | [`%CBCS`](https://imronuke.github.io/ADPRES/cbcs) | Critical boron concentration input card | Conditional | +| 17. | [`%THER`](https://imronuke.github.io/ADPRES/ther) | TH input card | Conditional | +| 18. | [`%XTAB`](https://imronuke.github.io/ADPRES/xtab) | XSEC library for branch calculations | Conditional | +| 19. | [`%KERN`](https://imronuke.github.io/ADPRES/kern) | Nodal kernel options | Optional | +| 20. | [`%EXTR`](https://imronuke.github.io/ADPRES/extr) | Exponential flux transformation option card for transient problem | Optional | +| 21. | [`%THET`](https://imronuke.github.io/ADPRES/thet) | Used to set theta value for transient problem | Optional | diff --git a/docs/case.md b/docs/case.md new file mode 100644 index 0000000..18c312d --- /dev/null +++ b/docs/case.md @@ -0,0 +1,22 @@ +--- +title: %CASE +theme: _config.yml +filename: case +--- + +# %CASE Card + +This card describes the problem case and case description if necessary. + +| %CASE | Variable | Description | Examples | +| --- | --- | --- | --- | +| LINE 1 | CASE_ID | Case name | Example: `DVP` | +| LINE 2 | CASE_EXP | Case Description | Example: `DVP Problem Test` | + +Example: +``` +! CASE CARD +%CASE +MOX_HEL +MOX TRANSIENT PROBLEM WITH XSEC FROM HELIOS +``` diff --git a/docs/cbcs.md b/docs/cbcs.md new file mode 100644 index 0000000..e3b07be --- /dev/null +++ b/docs/cbcs.md @@ -0,0 +1,51 @@ +--- +title: %CBCS +theme: _config.yml +filename: cbcs +--- + +# %CBCS Card + +When the calculation mode is `BCSEARCH`, either this card or `%XTAB` is mandatory, and `%BCON` card shall not present. + +| `%CBCS` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | RBCON | Reference boron concentration in ppm from which the interpolation is done | Dummy if `%XTAB` card present | +| LINE 2 | CISGTR(g) | Macroscopic Cross Section changes due to changes of boron concentration in ppm | Repeat LINE 2 NG times. And again repeat this input segment NMAT times. **This line is not necessary if `%XTAB` card present** | +| | CSIGA(g) | +| | CNUF(g) | +| | CSIGF(g) | +| | CSIGS(g,1:NG) | +| LINE 3 | POPT | Print option if users want to print this card | Optional | + +Example: +``` +! CRITICAL BORON SEARCH CARD +%CBCS +1200.2 ! Boron concentration ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 +``` diff --git a/docs/cden.md b/docs/cden.md new file mode 100644 index 0000000..19cd3a3 --- /dev/null +++ b/docs/cden.md @@ -0,0 +1,52 @@ +--- +title: %CDEN +theme: _config.yml +filename: cden +--- + +# %CDEN Card + +This card is used to input coolant density parameters. + +| `%CDEN` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | CCDEN | Uniform distribution of coolant density in g/cm3 | Used as guess if `%THER` card active | +| LINE 2 | RCDEN | Coolant density reference in g/cm3 from which the interpolation is done | Dummy if `%XTAB` card present | +| LINE 3 | LSGTR(g) | Macroscopic Cross Section changes due to changes of coolant density in g/cm3 | Repeat LINE 2 NG times. And again repeat this input segment NMAT times. **This line is not necessary if `%XTAB` card present** | +| | LSIGA(g) | +| | LNUF(g) | +| | LSIGF(g) | +| | LSIGS(g,1:NG) | +| LINE 4 | POPT | Print option if users want to print this card | Optional | + +Example: +``` +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 +1 +``` diff --git a/docs/crod.md b/docs/crod.md new file mode 100644 index 0000000..24e0ed8 --- /dev/null +++ b/docs/crod.md @@ -0,0 +1,66 @@ +--- +title: %crod +theme: _config.yml +filename: crod +--- + +# %CROD Card + +If the problems have control rods inserted, users can use this card. This card is mandatory for `RODEJECT` calculation mode. + +| %CROD | Variable | Description | Remarks or examples | +| --- | --- | --- | --- | +| LINE 1 | NB | Number of CR banks | | +| | NSTEP | Maximum number of steps | +| LINE 2 | POS0 | Zero step position (cm from bottom) | | +| | SSIZE | step size (cm/step) | +| LINE 3 | BPOS(1:NB) | Control Rod Bank position (step) **0 step means full inserted** | | +| LINE 4 | BMAP(1:NX) | Control Rod Bank Map | Repeat this line NY times (see example the input below) | +| LINE 5 | DISGTR(g) | Macroscopic Cross Section changes due to control rods insertion | Repeat LINE 2 NG times. And again repeat this input segment NMAT times. **This line is not necessary if `%XTAB` card present** | +| | DSIGA(g) | +| | DNUF(g) | +| | DSIGF(g) | +| | CHI(g) | +| | DSIGS(g,1:NG) | + +Example: +``` +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 0. 0. 228. 0. 0. 0. ! CR Bank pos. (0=fully inserted, 228=fully withdrawn) + 1 0 2 0 0 0 3 0 0 ! (LINE 4) + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +``` diff --git a/docs/ejct.md b/docs/ejct.md new file mode 100644 index 0000000..cdab094 --- /dev/null +++ b/docs/ejct.md @@ -0,0 +1,40 @@ +--- +title: %EJCT +theme: _config.yml +filename: ejct +--- + +# %EJCT Card + +This card us used for transient problems due to control rods insertion or withdrawal. This card is mandatory if calculation mode is `RODEJECT`. + +| %EJCT | Variable | Description | Remarks or examples | +| --- | --- | --- | --- | +| LINE 1 | FBPOS(n) | Final bank n position after ejection and/or insertion (step) | Repeat this line NB times (NB = Number of CR bank) | +| | TMOVE(n) | When bank n starts move (second) | +| | BSPEED(n) | Bank n speed (steps/second) | +| LINE 2 | TTOT | Total simulation time (seconds) | Example: `60. 0.1 40.0 1.0` | +| | TSTEP1 | First time step (seconds) | +| | TDIV | When to start second time step (seconds) | +| | TSTEP2 | Second time step (seconds) | +| LINE 3 | IBETA(1:6) | 6-groups delayed neutron fraction | **Not necessary of `%XTAB` card present** | +| LINE 4 | LAMB(1:6) | 6-groups precursor decay constant | **Not necessary of `%XTAB` card present** | +| LINE 5 | VELO(1:NG) | Neutron velocity | **Not necessary of `%XTAB` card present** | + +Example: +``` +! Rod ejection card +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 228. 0.0 2280.0 ! Bank 1 (LINE 1) + 0. 0.0 0.0 ! Bank 2 + 0. 0.0 0.0 ! Bank 3 + 228. 0.0 0.0 ! Bank 4 + 0. 0.0 0.0 ! Bank 5 + 0. 0.0 0.0 ! Bank 6 + 0. 0.0 0.0 ! Bank 7 +5.0 0.005 1.0 0.05 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +``` diff --git a/docs/esrc.md b/docs/esrc.md new file mode 100644 index 0000000..c7a43c0 --- /dev/null +++ b/docs/esrc.md @@ -0,0 +1,44 @@ +--- +title: %ESRC +theme: _config.yml +filename: esrc +--- + +# %ESRC Card + +This card shall be present only if the calculation mode is `%FIXEDSRC` + +| `%ESRC` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | NSRC | Number of sources | | +| LINE 2 | SDEN | Source density | Repeat LINE 2 through LINE 7 NSRC times | +| LINE 3 | SPEC(1:NG) | Source energy spectrum (normalized to 1.0) | | +| LINE 4 | ZPOS | Axial position of the source (between 1 to NZ) | This line must be followed by XPOS and YPOS. And then this input segment can be repeated as many as desired until 0 (LINE 7) is entered | +| LINE 5 | XPOS | Radial position of the source (along X axis) for current axial position | Repeat this line as many as desired until 0 (LINE 6) is entered | +| | YPOS | Radial position of the source (along Y axis) for current axial position | +| LINE 6 | 0 | Zero numbers are entered to end XPOS and YPOS | | +| | 0 | +| LINE 7 | 0 | Zero number to end ZPOS | | + +Example: +``` +! External source card +%ESRC +2 ! Number of source (LINE 1) +! Repeat this input segment +! according to the number of sources +100000. ! Source Density (n/cm3.s) (LINE 2) +1.0 0.0 ! Source energy spectrum (LINE 3) +10 ! z-position of the source (LINE 4) +2 9 ! x-y position of the source (LINE 5) +2 8 +1 8 +0 0 ! x-y position ends (LINE 6) +0 ! z-position ends (LINE 7) +200000. ! Source Density (n/cm3.s) (LINE 2) +1.0 0.0 ! Source energy spectrum (LINE 3) +10 ! z-position of the source (LINE 4) +1 9 ! x-y position of the source (LINE 5) +0 0 ! x-y position ends (LINE 6) +0 ! z-position ends (LINE 7) +``` diff --git a/docs/extr.md b/docs/extr.md new file mode 100644 index 0000000..d054416 --- /dev/null +++ b/docs/extr.md @@ -0,0 +1,18 @@ +--- +title: %EXTR +theme: _config.yml +filename: extr +--- + +# %EXTR Card + +This card is used to activate exponential flux transformation. Useful for rod ejection from HZP. This card has no input. By default, this option is not active. Only effective for `RODEJECT` mode. + +| `%EXTR` | Variable | Description | Available options | +| --- | --- | --- | --- | +| N/A | N/A | N/A | N/A | + +Example: +``` +%EXTR +``` diff --git a/docs/ftem.md b/docs/ftem.md new file mode 100644 index 0000000..5058bfa --- /dev/null +++ b/docs/ftem.md @@ -0,0 +1,52 @@ +--- +title: %FTEM +theme: _config.yml +filename: ftem +--- + +# %THER Card + +This card is used to input fuel temperature parameters. + +| `%FTEM` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | CFTEM | Uniform distribution of the fuel temperature in Kelvin | Used as guess if `%THER` card active | +| LINE 2 | RFTEM | Fuel temperature reference in Kelvin from which the interpolation is done | Dummy if `%XTAB` card is active | +| LINE 3 | FISGTR(g) | Macroscopic Cross Section changes due to changes of fuel temperature in Kelvin | Repeat LINE 2 NG times. And again repeat this input segment NMAT times. **This line is not necessary if `%XTAB` card present** | +| | FSIGA(g) | +| | FNUF(g) | +| | FSIGF(g) | +| | FSIGS(g,1:NG) | +| LINE 4 | POPT | Print option if users want to print this card | Optional | + +Example: +``` +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 +1 +``` diff --git a/docs/geom.md b/docs/geom.md new file mode 100644 index 0000000..53af1fb --- /dev/null +++ b/docs/geom.md @@ -0,0 +1,188 @@ +--- +title: %GEOM +theme: _config.yml +filename: geom +--- + +# %GEOM Card + +This card is used to describe the problem geometry in rectangular coordinate system. This card is mandatory. The coordinate system used in ADPRES is shown in the following figure + +![alt text](https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/geom_1.png "ADPRES 3D coordinate system") + +The point of origin is located at the corner between west, bottom and south sides. The next figure shows the coordinate system for radial planar map (seen from top) which typically used for two-dimensional problems. + +![alt text](https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/geom_2.png "ADPRES 2D coordinate system") + +Below you can find various %GEOM card examples for one, two and three-dimensional problems. + +| `%GEOM` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | NX | Number of assemblies along X-direction | NX at least equal to 2 | +| | NY | Number of assemblies along Y-direction | NY at least equal to 2 | +| | NZ | Number of assemblies along Z-direction | NZ at least equal to 2 | +| LINE 2 | XSIZE(1:NX) | Assembly size along X-direction(from west to east) | | +| LINE 3 | XDIV(1:NX) | Assembly division along X-direction(from west to east) | | +| LINE 4 | YSIZE(1:NY) | Assembly size along Y-direction(from south to north) | | +| LINE 5 | YDIV(1:NY) | Assembly division along Y-direction(from south to north) | | +| LINE 6 | ZSIZE(1:NZ) | Assembly size along Z-direction(from bottom to top) | | +| LINE 7 | ZDIV(1:NZ) | Assembly division along Z-direction(from bottom to top) | | +| LINE 8 | NP | Number of different core planar with different material composition | | +| LINE 9 | ZPLN(1:NZ) | Planar assignment along axial or z-direction from bottom to top (see the example below) | | +| LINE 10 | ASM(1:NX) | Radial planar material map | Repeat this line NY times to form a core planar material map. Then, repeat this planar map NP times | +| LINE 11 | XEAST | East boundary conditions | 0 = Zero flux | +| | XWEST | West boundary conditions | 1 = Zero incoming current | +| | YNORTH | North boundary conditions | 2 = Reflective | +| | YSOUTH | South boundary conditions | +| | ZBOTT | Bottom boundary conditions | +| | ZTOP | Top boundary conditions | + +## Example for 3D problem +Three-dimensional problem with 2x2 nodes per FA +``` +! Typical %GEOM CARD for 3D problem with 2x2 nodes per FA +%GEOM +9 9 19 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*20.0 10.0 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +19*20.0 !z-direction assembly in cm +19*1 !z-direction nodal is not divided +4 !np number of planar type +1 13*2 4*3 4 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 4 4 4 4 4 4 4 4 4 (LINE 10) + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_2 (Fuel) + 3 2 2 2 3 2 2 1 4 (LINE 10) + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_3 (Fuel+Partial Control Rods) + 3 2 2 2 3 2 2 1 4 (LINE 10) + 2 2 2 2 2 2 2 1 4 + 2 2 3 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_4 (Top reflectors) + 5 4 4 4 5 4 4 4 4 (LINE 10) + 4 4 4 4 4 4 4 4 4 + 4 4 5 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 5 4 4 4 5 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions +! 0 = zero-flux +! 1 = zero-incoming current +! 2 = reflective +(east), (west), (north), (south), (bottom), (top) + 1 2 2 1 1 1 +``` + +## Example for 2D problem +Two-dimensional problem with 2x2 nodes per FA +``` +! Typical %GEOM CARD for 2D problem with 2x2 nodes per FA +%GEOM +9 9 2 !nx, ny, nz +11.5613 8*23.1226 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*23.1226 11.5613 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +2*11.5613 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 1 8 2 6 1 7 1 4 3 + 8 1 8 2 8 1 1 4 3 + 2 8 1 8 2 7 1 4 3 + 6 2 8 2 8 1 8 4 3 + 1 8 2 8 2 5 4 3 3 + 7 1 7 1 5 4 4 3 0 + 1 1 1 8 4 4 3 3 0 + 4 4 4 4 3 3 3 0 0 + 3 3 3 3 3 0 0 0 0 +! Boundary conditions +! 0 = zero-flux +! 1 = zero-incoming current +! 2 = reflective +(east), (west), (north), (south), (bottom), (top) + 1 2 2 1 2 2 +``` + +Two-dimensional problem with 16x16 nodes per FA +``` +! Typical %GEOM CARD for 2D problem with 16x16 nodes per FA +%GEOM +9 9 2 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +8 8*16 ! 16x16 per FA +8*20.0 10.0 !y-direction assembly size in cm +8*16 8 ! 16x16 per FA +2*1.25 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions +! 0 = zero-flux +! 1 = zero-incoming current +! 2 = reflective +(east), (west), (north), (south), (bottom), (top) + 1 2 2 1 2 2 +``` + +## Example for 1D problem +One-dimensional problem with 1 cm node or mesh size +``` +! Typical %GEOM CARD for 1D problem with 1 cm node or mesh size +%GEOM +5 2 2 !nx, ny, nz +5*20.0 !x-direction assembly size in cm +5*20 !x-direction assembly divided into 20 (1 cm each) +2*1.0 !y-direction assembly size in cm +2*1 !y-direction nodal is not divided +2*1.0 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 5 4 3 2 1 + 5 4 3 2 1 +! Boundary conditions +! 0 = zero-flux +! 1 = zero-incoming current +! 2 = reflective +(east), (west), (north), (south), (bottom), (top) + 2 1 2 2 2 2 +``` diff --git a/docs/images/adpres1.png b/docs/images/adpres1.png new file mode 100644 index 0000000..3362659 Binary files /dev/null and b/docs/images/adpres1.png differ diff --git a/docs/images/adpres2.png b/docs/images/adpres2.png new file mode 100644 index 0000000..621334b Binary files /dev/null and b/docs/images/adpres2.png differ diff --git a/docs/images/fortran.png b/docs/images/fortran.png new file mode 100644 index 0000000..873b246 Binary files /dev/null and b/docs/images/fortran.png differ diff --git a/docs/images/geom_1.png b/docs/images/geom_1.png new file mode 100644 index 0000000..2b2a7a4 Binary files /dev/null and b/docs/images/geom_1.png differ diff --git a/docs/images/geom_2.png b/docs/images/geom_2.png new file mode 100644 index 0000000..bd383ea Binary files /dev/null and b/docs/images/geom_2.png differ diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..d1a15b8 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,46 @@ +[![ADPRES](https://raw.githubusercontent.com/imronuke/ADPRES/master/docs/images/adpres1.png)](https://github.com/imronuke/ADPRES) + +# Users Manual + +Here you can find quick and complete guides on how to use ADPRES. Given you have background on nuclear engineering, **we believe you can create your own ADPRES input within minutes!** +## [Theory and Background](https://imronuke.github.io/ADPRES/method) +## [Installation (Building from Source Codes)](https://imronuke.github.io/ADPRES/install) +## [Quick guides](https://imronuke.github.io/ADPRES/quick-guides) +## [Complete guides](https://imronuke.github.io/ADPRES/card-desc) + +# ADPRES + +Abu Dhabi Polytechnic Reactor Simulator (ADPRES) is an open nuclear reactor simulator and reactor core analysis tool that solves static and transient neutron diffusion equation for one, two or three dimensional reactor problems in Cartesian geometry. Currently, ADPRES uses Semi-Analytic Nodal Method (SANM) to spatially discretise the neutron diffusion equation. While theta method is used for the time discretisation. + +ADPRES is also a great learning tool for reactor theory classes, and we have been striving hard to make the input is easy to create. Among ADPRES' main objectives is to make all nuclear engineering students have access on reactor simulator code for them to use, learn, and modify for their own purposes. It is open and completely free, so everyone has access to the source codes and and play with them. + +ADPRES features: +* Input is straightforward, modular and in a free-format form +* Solves both static and transient core problems **with or without TH feedback** +* Performs forward, adjoint and fixed-source calculations +* Performs calculations using branched cross sections data. An example of the library format can be seen [here](https://github.com/imronuke/ADPRES/blob/master/smpl/xsec/SERPENT_CMM/m40.tab) +* Critical boron concentration search +* Rod ejection simulation or Reactivity Initiated Accident (RIA) +* Solves multi-group of neutron energy +* Solves calculations with Assembly Discontinuity Factors (ADFs) +* CMFD accelerated using two-node problem non-linear iteration +* CMFD matrix is solved with the latest linear system solver: BiCGSTAB +* Thermal-hydraulics solutions are obtained by solving mass and energy conservation equations in an enclosed channel +* Three nodal kernels are available: + * Traditional Finite Difference Method + * Polynomial Nodal Method (PNM) which is equivalent to Nodal Expansion Method (NEM) + * Semi-Analytic Nodal Method (SANM) + + +# How to give feedbacks +You may raise an issue or contact me at +* muhammad.imron[at]adpoly.ac.ae +* makrus.imron[at]gmail.com + +# How to cite +If you find this work helpful and use this work for a publication, you may cite as + +**Imron, M. (2019). [Development and verification of open reactor simulator ADPRES](https://doi.org/10.1016/j.anucene.2019.06.049). Annals of Nuclear Energy, 133, 580–588.** + + +> **"The best of people are those who bring most benefit to the rest of mankind." (THE PROPHET)** diff --git a/docs/install.md b/docs/install.md new file mode 100644 index 0000000..1d8df92 --- /dev/null +++ b/docs/install.md @@ -0,0 +1,127 @@ +--- +title: Quick Install Guide +theme: _config.yml +filename: install +--- + +# Building from source codes +To build ADPRES from the source codes you just need a Fortran compiler, that's it. We design ADPRES to be very portable, so we expect it can be installed using any Fortran compiler on any machine. + +## Building in Ubuntu or other GNU-Linux based OS +In Ubuntu, other GNU-Linux based OS or CYGWIN you can use either gfotran or Intel fortran to build the source codes. You can install gfortran in Ubuntu OS by using this command in your computer's terminal + +``` +sudo apt install gfortran +``` + +Then you can download the [ADPRES zip files](https://github.com/imronuke/ADPRES/archive/master.zip) then extract that zip file, or you can clone them (note: you need to download git first if you don't have it) + +``` +git clone https://github.com/imronuke/ADPRES.git +``` + +In a machine where the gfortran is already installed, go to the ADPRES folder which you had been extracted or cloned + +``` +cd ADPRES-master +``` + +and build the source codes by using command: + +``` +sudo ./install.sh +``` + +If this way didn't work, try to install bash into your computer. Alternatively, you can build ADPRES manually + +``` +gfortran -O4 -c src/mod_data.f90 +gfortran -O4 -c src/mod_io.f90 +gfortran -O4 -c src/mod_xsec.f90 +gfortran -O4 -c src/mod_nodal.f90 +gfortran -O4 -c src/mod_cmfd.f90 +gfortran -O4 -c src/mod_th.f90 +gfortran -O4 -c src/mod_trans.f90 +gfortran -O4 -c src/mod_control.f90 +gfortran -O4 -c src/ADPRES.f90 +gfortran *.o -o adpres +sudo cp adpres /usr/bin +``` + +(NOTE: you need to have admin privilege to run these commands) + +These command will create an executable file named `adpres` and copied the executable file to `/usr/bin`. Now, you can run a test using several examples of inputs file in folder [smpl](https://github.com/imronuke/ADPRES/tree/master/smpl) to see if you had built ADPRES properly. You can run ADPRES using command + +``` +adpres [INPUT_FILE_PATH_NAME] +``` + +for example, you can run [`IAEA3Ds`](https://github.com/imronuke/ADPRES/blob/master/smpl/static/IAEA3Ds) input by + +``` +adpres smpl/static/IAEA3Ds +``` + +If you see `ADPRES EXIT NORMALLY` at the end of terminal output, then congratulations! you have successfully installed ADPRES. By the way, it should take about 0.2 seconds for ADPRES to solve IAEA3Ds problem if you build using gfortran in a typical today's computer. The way to build using Intel fortran is similar, just change `gfortran` with `ifort` in the commands above. + +## Building in Mac OS +The way to install ADPRES on Mac OS is similar to installing ADPRES on Ubuntu. First you need to install gfortran to your computer. You can find the information on how to install gfortran for Mac OS from [here](https://gcc.gnu.org/wiki/GFortranBinariesMacOS). And instead of executing this command as you were supposed to do in Ubuntu + +``` +sudo ./install.sh +``` + +you shall execute this command in Mac OS + +``` +sudo ./mac_install.sh +``` + +The rest of the steps are the same. + + +## Building in Windows +There are at least two ways installing ADPRES on Windows. + +### Using Windows Subsystem for Linux (WSL) in Windows 10 +Using this way, you can go to Microsoft Store and install Ubuntu from there for free. Open the Ubuntu app and follow the same steps on installing ADPRES on Ubuntu OS. + +### Using g95 Fortran Compiler +You can also intsall ADPRES directly into Windows by using free fortran compiler g95 which can be obtained from [here](https://www.fortran.com/wp-content/uploads/2013/05/g95-Mingw_201210.exe). Then install g95 to your computer. + +Now you can download the [ADPRES zip files](https://github.com/imronuke/ADPRES/archive/master.zip) from Github then extract that zip file. + +After you installed g95 and extracted ADPRES zip file, open the command prompt. And from the command prompt, using `cd` command, go to the ADPRES folder which you had been extracted + +``` +cd ADPRES-master +``` + +and build the source codes using g95: + +``` +g95 -O4 -c src\mod_data.f90 +g95 -O4 -c src\mod_io.f90 +g95 -O4 -c src\mod_xsec.f90 +g95 -O4 -c src\mod_nodal.f90 +g95 -O4 -c src\mod_cmfd.f90 +g95 -O4 -c src\mod_th.f90 +g95 -O4 -c src\mod_trans.f90 +g95 -O4 -c src\mod_control.f90 +g95 -O4 -c src\ADPRES.f90 +g95 *.o -o adpres +``` + +These command will create an executable file named `adpres`. If you use Intel fortran compiler, just change `g95` with `ifort` in the commands above. Now, you can run a test using several examples of inputs file in folder [smpl](https://github.com/imronuke/ADPRES/tree/master/smpl) to see if you had built ADPRES properly. You can run ADPRES using command + +``` +adpres [INPUT_FILE_PATH_NAME] +``` + +for example, you can run [`IAEA3Ds`](https://github.com/imronuke/ADPRES/blob/master/smpl/static/IAEA3Ds) input by + +``` +adpres smpl\static\IAEA3Ds +``` + +If you see `ADPRES EXIT NORMALLY` at the end of terminal output, then congratulations! you have successfully installed ADPRES on Windows. diff --git a/docs/iter.md b/docs/iter.md new file mode 100644 index 0000000..77544ff --- /dev/null +++ b/docs/iter.md @@ -0,0 +1,37 @@ +--- +title: %ITER +theme: _config.yml +filename: iter +--- + +# %ITER Card + +This card can be used to control the iterations in ADPRES calculation + +| %ITER | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | NOUT | Maximum number of outer iteration | Default = 500 | +| | NIN | Maximum number of inner iteration per an outer iteration | Default = 2 | +| | SERC | Fission source error criteria (relative error) | Default = 1.e-5 | +| | FERC | Flux error criteria (relative error) | Default = 1.e-5 | +| | NAC | Outer iteration fission source extrapolation interval | Default = 5 | +| | NUPD | Nodal update interval through outer iteration | Default = (NX+NY+NZ)/2.5. Effective only for ANM and PNM [nodal kernel](https://imronuke.github.io/ADPRES/kern) | +| | TH_NITER | Maximum number of T-H iteration | Default = 30. Effective only if [`%THER`](https://imronuke.github.io/ADPRES/ther) present | +| | NTH | Maximum number of outer iteration per T-H iteration | Default = 20. Effective only if [`%THER`](https://imronuke.github.io/ADPRES/ther) present | + +Note: TH iteration is non-linear iteration to determine TH parameters + +Example: +``` +! Iteration control card +%ITER +! Set maximum number of outer iteration = 1200 +! Set maximum number of inner iteration = 3 +! Set fission source error criteria = 1.e-5 +! Set flux error criteria = 1.e-5 +! Set fission source extrapolation interval every 25 outer iterations +! Set nodal update interval every 40 outer iterations +! Set maximum number of TH iterations = 20 +! Set maximum number outer iterations for each TH iteration is 80 +1200 3 1.e-5 1.e-5 25 40 20 80 +``` diff --git a/docs/kern.md b/docs/kern.md new file mode 100644 index 0000000..d5f584a --- /dev/null +++ b/docs/kern.md @@ -0,0 +1,19 @@ +--- +title: %KERN +theme: _config.yml +filename: kern +--- + +# %KERN Card + +This card is used to choose other nodal kernel. By default, ADPRES uses Semi-Analytic Nodal Method. + +| `%KERN` | Variable | Description | Available options | +| --- | --- | --- | --- | +| LINE 1 | KERN | Nodal kernel | `FDM` : Finite Difference Method
`PNM` : Polynomial Nodal Method (equivalent to Nodal Expansion Method)
`SANM` : Semi-Analytic Nodal Method | + +Example: +``` +%KERN +PNM +``` diff --git a/docs/method.md b/docs/method.md new file mode 100644 index 0000000..e3bdeb0 --- /dev/null +++ b/docs/method.md @@ -0,0 +1,51 @@ +# Theory and Background + +Since ADPRES uses the current available methods, rather than re-explaining the methods, we would like to just mention the references of the methods implemented in the ADPRES. + +The ADPRES development began in 2017 and was motivated by many hurdles to obtain such similar codes in the region where the author was working. The initial version of ADPRES employed Nodal Expansion Method (NEM) based on the response matrix formulations [1,2,3,4]. The transverse integrated leakages were approximated by the Quadratic Transverse Leakage Approximation (QTLA)[1]. The transient and and thermal module were also added to enable ADPRES solving time-dependent problems with thermal-hydraulics (T-H) feedback. The transient diffusion equation was solved with fully implicit method, and T-H solutions were obtained by solving mass and energy conservation equations in an enclosed channel following NODAL 3 computer code [5] with slight modifications. This version of ADPRES was published in Annals of Nuclear Energy in 2019 [6]. However, this version encountered slow performance compared to other modern nodal simulators. + +Thus, in the early 2020, the ADPRES was revamped to implement CMFD acceleration with two-node problems and non-linear iteration procedures [7] for the sake of rapid calculations. By implementing CMFD acceleration, the current ADPRES version is able to solve time-dependent problems 10-20 times faster than previous version of ADPRES. Initially, ADPRES implemented Polynomial Nodal Method [8,5], then upgraded to Semi-Analytic Nodal Method [9,10] for better accuracy and the neutron precursor equations are solved analytically [11]. Also, in the transient calculations, the delayed terms and other terms that do not appear in static calculations are included with transverse leakages in the calculation of transverse moments to further save memory storage [12]. Users also have option to perform exponential flux [13] transformation and to set theta value for time-dependent problems. It is also possible to perform calculations with branched cross sections (i.e. set of cross sections for various TH parameters, boron concentration, and control rod position). The branched cross section library format was adopted from [14] and had been tested UO-MOX PWR transient benchmark [14]. + +# Acknowledgement + +This ADPRES development would have been impossible without the God's Mercy and the works done by those mentioned in the references. We would like to thank them and other people who contributed on their works. We also would like to thank to other people who directly or indirectly contributed to this work: + +* Dr. Ali Al Naqbi, Abu Dhabi Polytechnic +* Dr. Anthony Hechanova, Abu Dhabi Polytechnic +* Prof. Nam Zin Cho, KAIST +* Dr. Alexander Agung, Gadjah Mada University +* Dr. Andang Widiharto, Gadjah Mada University +* Liem Peng Hong, PhD, NAIS and Tokyo City University +* Donny Hartanto, Phd +* GNU Fortran and Intel Fortran developer teams. +* All my colleagues and friends. + +# References + +1. Finnemann, H., Bennewitz F. and Wagner M. R., (1977) Interface current techniques for multidimensional reactor calculations, Atomkernenergie, Vol. 30, pp. 123-128. + +2. Bennewitz F., Finnemann H. and Moldaschl H.(1975) Solution of the multidimensional neutron diffusion equa-tion by nodal expansion. Proc. Conf. Computational Methods in Nuclear Engineering, p. 1-99, CONF-750413. + +3. Lawrence, R.D., (1986) Progress in nodal methods for the solution of the neutron diffusion and transport equations, Progress in Nuclear Energy, Vol. 17, No.3, pp. 271-301. + +4. Okumura, K., (1998) MOSRA-Light: High speed three-dimensional nodal diffusion code for vector computers, JAEA-Research 98-025. (in Japanese) + +5. Liem P.H., et al., (2010) NODAL3: A Nodal Neutron Diffusion Code Version 2.0 User Guides (unpublihsed) + +6. Imron, M. (2019). Development and verification of open reactor simulator ADPRES. Annals of Nuclear Energy, 133, 580–588. https://doi.org/10.1016/j.anucene.2019.06.049 + +7. Smith, K. S. (1984) Nodal Method Storage Reduction by Nonlinear Iteration. Transactions of American Nuclear Society 44, 265. + +8. Zimin V.G. and Ninokata, H., (1997) Nonlinear Iteration Procedure Based on Legendre Polynomials, Trans. Am. Nucl. Soc., 76, 162. + +9. Zimin, V. G., & Ninokata, H. (1998). Nodal neutron kinetics model based on nonlinear iteration procedure for LWR analysis. Annals of Nuclear Energy, 25(8), 507–528. https://doi.org/10.1016/S0306-4549(97)00078-9 + +10. Zimin V.G. and Ninokata, H., (1997) Polynomials ans Semi-Analytic Nodal Methods For Non-Linear Iteration Procedures, PYHSOR-98, 2, 994. + +11. Stacey, W. M. (1969) Space-Time Nuclear Reactor Kinetics. Academic Press, New York. + +12. Engrand, P. R., Maldonado, G. I., A1-Chalabi, R. M. and Turinsky, P. J. (1992) Non-Linear Iterative Strategy for NEM Refinement and Extension. Transactions of American Nuclear Society 65, 221. + +13. Hendricks, J.S., “Finite difference solution of the time dependent neutron group diffusion equations”, Thesis, Department of Nuclear Engineering, Massachusetts Institute of Technology, MITNE-176 (1975). + +14. Kozlowski, T., Downar, T., 2007. PWR MOX/UO2 Core Transient Benchmark Final Report. Retrieved from: https://www.oecd-nea.org/science/wprs/MOX-UOX-transients/benchmark_documents/final_report/mox-uo2-bench.pdf diff --git a/docs/mode.md b/docs/mode.md new file mode 100644 index 0000000..fce09db --- /dev/null +++ b/docs/mode.md @@ -0,0 +1,25 @@ +--- +title: %MODE +theme: _config.yml +filename: mode +--- + +# %MODE Card + +This card is used to describe the calculation mode. It has several options as follow + +| `%MODE` | Variable | Description | Available options | +| --- | +| LINE 1 | MODE | Calculation mode | `FORWARD` : Forward Calculation
`ADJOINT` : Adjoint Calculation
`FIXEDSRC` : Fixed Source Calculation
`BCSEARCH`: Critical boron concentration search
`RODEJECT` : Rod ejection and/or insertion mode (transient problems) | + +There are some conditions for some calculation modes. +1. When calculation mode is `FIXEDSRC`, then the [`%ESRC`](https://imronuke.github.io/ADPRES/esrc) card must be present +2. When calculation mode is `BCSEARCH`, then the [`%CBCS`](https://imronuke.github.io/ADPRES/cbcs) OR [`%XTAB`](https://imronuke.github.io/ADPRES/xtab) card must be present +3. When calculation mode is `RODEJECT`, then the [`%EJCT`](https://imronuke.github.io/ADPRES/ejct) card must be present + +Example: +``` +! Mode card +%MODE +FORWARD +``` diff --git a/docs/mtem.md b/docs/mtem.md new file mode 100644 index 0000000..1958d1b --- /dev/null +++ b/docs/mtem.md @@ -0,0 +1,52 @@ +--- +title: %MTEM +theme: _config.yml +filename: mtem +--- + +# %MTEM Card + +This card is used to input moderator or coolant temperature parameters. + +| `%MTEM` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | CMTEM | Uniform distribution of the moderator temperature in Kelvin | Used as guess if `%THER` card active | +| LINE 2 | RMTEM | Moderator temperature reference in Kelvin from which the interpolation is done | Dummy if `%XTAB` card active | +| LINE 3 | MISGTR(g) | Macroscopic Cross Section changes due to changes of moderator temperature in Kelvin | Repeat LINE 2 NG times. And again repeat this input segment NMAT times. **This line is not necessary if `%XTAB` card present** | +| | MSIGA(g) | +| | MNUF(g) | +| | MSIGF(g) | +| | MSIGS(g,1:NG) | +| LINE 4 | POPT | Print option if users want to print this card | Optional | + +Example: +``` +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 +1 +``` diff --git a/docs/prnt.md b/docs/prnt.md new file mode 100644 index 0000000..82fb7aa --- /dev/null +++ b/docs/prnt.md @@ -0,0 +1,22 @@ +--- +title: %PRNT +theme: _config.yml +filename: prnt +--- + +# %PRNT Card + +This card can be used to choose the specific output that users want. + +| %PRNT | | | | +| --- | --- | --- | --- | +| LINE 1 | CAPRAD | Radial assembly power distribution print option | 1 = YES
0 = NO
Default for all = YES | +| | CAPAXI | Axial assembly power distribution print option | +| | CAFRAD | Radial Flux Power Distribution | + +Example: +``` +! PRINT CARD +%PRNT +1 1 0 ! print output +``` diff --git a/docs/quick-guides.md b/docs/quick-guides.md new file mode 100644 index 0000000..b0a7872 --- /dev/null +++ b/docs/quick-guides.md @@ -0,0 +1,208 @@ +--- +title: Quick Guides +theme: _config.yml +filename: quick-guides +--- + +# Quick Guides +## Writing Input +ADPRES input is designed to be self-explanatory. It has several input cards marked by `%`, for example: `%mode`, `%geom`, `%xsec`, and so on. Some cards are mandatory for any problems. While some cards are conditional depending on the problems at hand and some cards are optional. Comments are marked by `!`. For example, the following is the [IAEA3D input](https://github.com/imronuke/ADPRES/blob/master/smpl/static/IAEA3Ds), where you can find its specification [here](https://engineering.purdue.edu/PARCS/Code/TestSuite/CalculationMode/StandAloneMode/Eigenvalue/IAEA3DPWR). + +``` +! IAEA3D input data +! NODE SIZE = 10 cm +! PARCS K-EFF : 1.029096 +! ADPRES K-EFF : 1.029082 (ERROR = 1.4 PCM) + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +IAEA3D +10 CM NODE SIZE + +! Cross-sections card +%XSEC +2 5 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.080 0.135 0.135 0.0 0.000 0.7533 ! MAT1 : Outer Fuel +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.085 0.135 0.135 0.0 0.000 0.7483 ! MAT2 : Inner Fuel +0.222222 0.0100 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.1300 0.135 0.135 0.0 0.000 0.7033 ! MAT3 : Inner Fuel + Control Rod +0.166667 0.000 0.000 0.000 0.0 0.1267 0.040 +1.111111 0.010 0.000 0.000 0.0 0.000 1.1011 ! MAT4 : Reflector +0.166667 0.000 0.000 0.000 0.0 0.000 0.040 +1.111111 0.055 0.000 0.000 0.0 0.000 0.000 ! MAT5 : Reflector + Control Rod +%GEOM +9 9 19 ! number of assembly in x, y, z directions +10.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 !x-direction assembly size in cm +1 8 8 8 8 8 8 8 8 !x-direction assembly divided into 2 (10 cm each) +20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 10.0 !y-direction assembly size in cm +8 8 8 8 8 8 8 8 1 !y-direction assembly divided into 2 (10 cm each) +19*20.0 !z-direction assembly in cm +19*1 !z-direction nodal is not divided +4 !np number of planar type +1 13*2 4*3 4 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_2 (Fuel) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_3 (Fuel+Partial Control Rods) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 3 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_4 (Top reflectors) + 5 4 4 4 5 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 5 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 5 4 4 4 5 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions +! 0 = zero-flux +! 1 = zero-incoming current +! 2 = reflective +(east), (west), (north), (south), (bottom), (top) + 1 2 2 1 1 1 + +! NOTE: Writing 19*20.0 is equivalent to write 20.0 nineteen times in a row +``` + +In the above example, there are +1. Two mandatory cards : `%MODE` and `%GEOM` +2. One conditional card: `%XSEC` +3. One optional card : `%CASE` + +You find the detailed description for each card [here](https://imronuke.github.io/ADPRES/card-desc), but we will explain them briefly now +### [%MODE Card](https://imronuke.github.io/ADPRES/mode) +This is the mode of ADPRES calculation. Since here we want to calculate static forward calculation (eigenvalue problem) the calculation mode is `FORWARD`. The detailed description of this card is [here](https://imronuke.github.io/ADPRES/mode). +### [%CASE Card](https://imronuke.github.io/ADPRES/case) +This card is optional. This describes the problem at hand. The detailed description of this card is [here](https://imronuke.github.io/ADPRES/case). +### [%XSEC Card](https://imronuke.github.io/ADPRES/xsec) +This card is conditional, necessary only if `%XTAB` card is not present. This card tells ADPRES the cross sections data for the problem. The cross section data must be given for each group and for each material as shown in the example. The description of the cross sections data can be seen in the comments. The detailed description of this card is [here](https://imronuke.github.io/ADPRES/xsec). +### [%GEOM Card](https://imronuke.github.io/ADPRES/geom) +This card is describes the geometry of the problem. It quite similar to other reactor core simulator which you can easily understand if you have background on nuclear engineering. The description of the inputs given in the comments. The detailed description of this card is [here](https://imronuke.github.io/ADPRES/geom). + + +## Running a Test +In Linux or other Unix based OS, you can run ADPRES using command + +``` +adpres [INPUT_FILE_PATH_NAME] +``` + +for example, you can run [`IAEA3Ds`](https://github.com/imronuke/ADPRES/blob/master/smpl/static/IAEA3Ds) input by + +``` +adpres /home/imronuke/smpl/static/IAEA3Ds +``` + +While in Windows, for example, you can run as follow + +``` +adpres C:\Users\imronuke\Downloads\ADPRES-master\smpl\static\IAEA3Ds +``` + + +## Reading Output + +After you run a test, you should see in the summary of the output in terminal as follow + +``` + ########################################################### + # ADPRES 1.2 # + # ABU DHABI POLYTECHNIC REACTOR SIMULATOR # + ########################################################### + + + CALCULATION MODE : FORWARD CALCULATION + + CASE ID : IAEA3D + 10 CM NODE SIZE + + NODAL KERNEL : SEMI-ANALYTIC NODAL METHOD + + reading input ... done + + + ============================================================================== + CALCULATION RESULTS + ============================================================================== + + Itr k-eff Fis.Src Error Inner Error + ---------------------------------------------------- + 1 0.981424 5.47871E-01 8.55259E+03 + 2 1.001319 2.41976E-01 8.56379E+00 + 3 1.009804 1.67297E-01 6.27992E-01 + 4 1.013500 1.33833E-01 1.44559E-01 + ...FISSION SOURCE EXTRAPOLATED... + 5 1.026980 2.65156E+00 1.31348E-01 + . + . + . + 15 1.028565 5.05638E-01 6.73943E-02 + 16 1.028253 6.31685E-02 4.20531E-01 + 17 1.028196 3.63469E-02 4.93252E-01 + 18 1.028082 2.21127E-02 2.48688E-01 + 19 1.028020 1.29756E-02 6.24972E-02 + ...FISSION SOURCE EXTRAPOLATED... + 20 1.027400 3.54750E-01 2.34432E-02 + 21 1.027655 6.04390E-02 3.09183E-01 + .....NODAL COUPLING UPDATED..... +MAX. CHANGE IN NODAL COUPLING COEF.= 3.16843E-01 AT NODE I = 6, J = 4, K = 19 + 22 1.028084 5.88420E-02 1.59061E-01 + 23 1.032373 1.30872E-01 4.33336E-01 + . + . + . + 127 1.029082 1.20168E-05 8.28493E-05 + 128 1.029082 9.48481E-06 2.04727E-05 + 129 1.029082 7.46358E-06 9.66768E-06 + + MULTIPLICATION EFFECTIVE (K-EFF) = 1.029082 + + + CPU time breakdown in seconds + Input reading time : 0.0078 ( 5.0%) + XSEC processing time : 0.0003 ( 0.2%) + CMFD time : 0.0893 (57.1%) + Nodal update time : 0.0590 (37.7%) + T-H time : 0.0000 ( 0.0%) + ------------------------------------------ + Total time : 0.1565 + + ADPRES EXIT NORMALLY + ``` + + If you get `ADPRES EXIT NORMALLY` in the end of the terminal output, it means you successfully run ADPRES. Since it is a forward (eigenvalue) problem, you will see the outer iterations as they evolve and you will see also the effective multiplication factor as well as CPU time breakdown. The detailed output, such as radial and axial power distribution, can be found in the same file name as input but with an `.out` extension. + + It is always a good idea to see this output file to ensure that you had written input correctly. ADPRES echoes your input and redescribe the input to make sure that this is the problem you want to solve. ADPRES may run well without any error but it gives you wrong results. This might happen if the input is not consistent with the problem specification. diff --git a/docs/ther.md b/docs/ther.md new file mode 100644 index 0000000..9cc3ef6 --- /dev/null +++ b/docs/ther.md @@ -0,0 +1,38 @@ +--- +title: %THER +theme: _config.yml +filename: ther +--- + +# %THER Card + +This card is used to set the T-H parameters. It also activates T-H feedback. When `%THER` card present, either conditions must be satisfied +1. `%FTEM` and one or more of these cards shall also present: `%MTEM` and `%CDEN` +2. `%XTAB` shall be present + +| `%THER` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | PPOW | Percent reactor power | 0.0 < PPOW <= 100.0 | +| LINE 2 | POW | Reactor thermal power for given geometry in `%GEOM` card in Watt | | +| LINE 3 | TIN | Coolant inlet temperature in Kelvin | | +| | CMFLOW | Coolant mass flow rate in kg/s | | +| LINE 4 | RF | Fuel meat (UO2) radius in meter | | +| | TG | Gap thickness in meter | | +| | TC | Cladding thickness in meter | | +| | PPITCH | Fuel pin pitch in meter | | +| LINE 5 | NFPIN | Number of fuel pin for each assembly | | +| | NGT | Number of guide tubes | | +| LINE 6 | CF | Fraction of heat deposited in the coolant | | + +Example: +``` +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +891.25e6 ! Reactor thermal power for quarter geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thinkness, cladding thinkness and pin picth (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 +``` diff --git a/docs/thet.md b/docs/thet.md new file mode 100644 index 0000000..6d34a0a --- /dev/null +++ b/docs/thet.md @@ -0,0 +1,19 @@ +--- +title: %THET +theme: _config.yml +filename: thet +--- + +# %THET Card + +This card is used to set the value of theta. Only effective for `RODEJECT` mode. + +| `%THET` | Variable | Description | Available options | +| --- | --- | --- | --- | +| LINE 1 | theta | Theta value | 0.01 <= theta <= 1.0. Default is 1.0 or correspond to fully-implicit method| + +Example: +``` +%THET +0.5 !This correspond to Crank-Nicholson method +``` diff --git a/docs/xsec.md b/docs/xsec.md new file mode 100644 index 0000000..6d22714 --- /dev/null +++ b/docs/xsec.md @@ -0,0 +1,37 @@ +--- +title: %XSEC +theme: _config.yml +filename: xsec +--- + +# %XSEC Card + +This card is used to describe the cross section data. This card is conditional : either `%XSEC` or `XTAB` card must be present + +| `%XSEC` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | NG | Number of groups | | +| | NMAT | Number materials | +| LINE 2 | SIGTR(g) | Transport macroscopic XS for group g | Repeat LINE 2 NG times. And again repeat this input segment NMAT times.(See example below) | +| SIGA(g) | Absorption macroscopic XS for group g | +| NUF(g) | Nu \* Fission macroscopic XS for group g | +| SIGF(g) | Fission macroscopic XS for group g | +| CHI(g) | Fission neutron spectrum for group g | +| SIGS(g,1:NG) | Scattering macroscopic XS from group g to other groups | + +Example: +``` +%XSEC +2 5 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.080 0.135 0.135 0.0 0.000 0.7533 ! MAT1 : Outer Fuel +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.085 0.135 0.135 0.0 0.000 0.7483 ! MAT2 : Inner Fuel +0.222222 0.0100 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.1300 0.135 0.135 0.0 0.000 0.7033 ! MAT3 : Inner Fuel + Control Rod +0.166667 0.000 0.000 0.000 0.0 0.1267 0.040 +1.111111 0.010 0.000 0.000 0.0 0.000 1.1011 ! MAT4 : Reflector +0.166667 0.000 0.000 0.000 0.0 0.000 0.040 +1.111111 0.055 0.000 0.000 0.0 0.000 0.000 ! MAT5 : Reflector + Control Rod +``` diff --git a/docs/xtab.md b/docs/xtab.md new file mode 100644 index 0000000..abccae2 --- /dev/null +++ b/docs/xtab.md @@ -0,0 +1,44 @@ +--- +title: %XTAB +theme: _config.yml +filename: xtab +--- + +# %XTAB Card + +This card is used for branch calculations. The format library used in ADPRES is in tabular form similar to the ones used in [UO2/MOX Transient Benchmark](https://www.oecd-nea.org/science/wprs/MOX-UOX-transients/benchmark_documents/final_report/mox-uo2-bench.pdf). An example of this library can be seen [here](https://github.com/imronuke/ADPRES/blob/master/smpl/xsec/SERPENT_CMM/m40.tab). This card is conditional : either `%XSEC` or `XTAB` card must be present + +| `%XTAB` | Variable | Description | Remarks | +| --- | --- | --- | --- | +| LINE 1 | NG | Number of groups | | +| | NMAT | Number materials | +| LINE 2 | FNAME | The path of the library | Repeat this line NMAT times.(See example below) | +| | FNUM | Number of the material inside the library FNAME | + +Example: +``` +! XTAB CARD +%XTAB +2 19 ! Number of groups and number of materials +! XTAB files for each material +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 1 !MAT 1 : u42u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 2 !MAT 2 : u42u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 4 !MAT 3 : u42u 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 5 !MAT 4 : u42u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 6 !MAT 5 : u42u 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 7 !MAT 6 : u42u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 1 !MAT 7 : u45u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 2 !MAT 8 : u45u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 3 !MAT 9 : u45u 20.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 5 !MAT 10: u45u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 7 !MAT 11: u45u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 1 !MAT 12: m40m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 4 !MAT 13: m40m 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 7 !MAT 14: m40m 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 1 !MAT 15: m43m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 2 !MAT 16: m43m 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 6 !MAT 17: m43m 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refr.tab 1 !MAT 18: RADIAL REFLECTOR +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refa.tab 1 !MAT 19: AXIAL REFLECTOR +1 +``` diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..42cdb40 --- /dev/null +++ b/install.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# start + +echo "ADPRES compilation starts" + +set FORT=gfotran + +echo " " +echo "Compiling src/mod_data.f90" +gfortran -O4 -c src/mod_data.f90 +echo "Compiling src/mod_io.f90" +gfortran -O4 -c src/mod_io.f90 +echo "Compiling src/mod_xsec.f90" +gfortran -O4 -c src/mod_xsec.f90 +echo "Compiling src/mod_nodal.f90" +gfortran -O4 -c src/mod_nodal.f90 +echo "Compiling src/mod_cmfd.f90" +gfortran -O4 -c src/mod_cmfd.f90 +echo "Compiling src/mod_th.f90" +gfortran -O4 -c src/mod_th.f90 +echo "Compiling src/mod_trans.f90" +gfortran -O4 -c src/mod_trans.f90 +echo "Compiling src/mod_control.f90" +gfortran -O4 -c src/mod_control.f90 +echo "Compiling src/ADPRES.f90" +gfortran -O4 -c src/ADPRES.f90 +echo "Combining all together" +gfortran *.o -o adpres + +echo " " +echo "Copy adpres to /usr/bin" +sudo cp adpres /usr/bin + +echo " " +echo "Deleted unnecessary files" +rm *.o *.mod + +echo " " +echo "ADPRES successfully compiled" diff --git a/mac_install.sh b/mac_install.sh new file mode 100755 index 0000000..8b1941b --- /dev/null +++ b/mac_install.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# start + +echo "ADPRES compilation starts" + +set FORT=gfotran + +echo " " +echo "Compiling src/mod_data.f90" +gfortran -O4 -c src/mod_data.f90 +echo "Compiling src/mod_io.f90" +gfortran -O4 -c src/mod_io.f90 +echo "Compiling src/mod_xsec.f90" +gfortran -O4 -c src/mod_xsec.f90 +echo "Compiling src/mod_nodal.f90" +gfortran -O4 -c src/mod_nodal.f90 +echo "Compiling src/mod_cmfd.f90" +gfortran -O4 -c src/mod_cmfd.f90 +echo "Compiling src/mod_th.f90" +gfortran -O4 -c src/mod_th.f90 +echo "Compiling src/mod_trans.f90" +gfortran -O4 -c src/mod_trans.f90 +echo "Compiling src/mod_control.f90" +gfortran -O4 -c src/mod_control.f90 +echo "Compiling src/ADPRES.f90" +gfortran -O4 -c src/ADPRES.f90 +echo "Combining all together" +gfortran *.o -o adpres -static-libgfortran + +echo " " +echo "Copy adpres to /usr/local/bin" +sudo cp adpres /usr/local/bin + +echo " " +echo "Deleted unnecessary files" +rm *.o *.mod + +echo " " +echo "ADPRES successfully compiled" diff --git a/smpl/static/BIBLIS b/smpl/static/BIBLIS new file mode 100644 index 0000000..bc50b2d --- /dev/null +++ b/smpl/static/BIBLIS @@ -0,0 +1,58 @@ +! BIBLIS input data +! K-EFF REF : 1.02511 +! MAX POWER ERROR : 0.14% + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +BIBLIS +BIBLIS Benchmark With Representative of Actual Data 2x2/FA + +! Cross-sections card +%XSEC +2 8 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.2321263 0.0095042 0.0058708 0.0058708 1.0000000 0.0000000 0.0177540 +0.9170105 0.0750580 0.0960670 0.0960670 0.0000000 0.0000000 0.0000000 ! COMPOSITION 1 +0.2320293 0.0096785 0.0061908 0.0061908 1.0000000 0.0000000 0.0176210 +0.9167583 0.0784360 0.1035800 0.1035800 0.0000000 0.0000000 0.0000000 ! COMPOSITION 2 +0.2525253 0.0026562 0.0000000 0.0000000 1.0000000 0.0000000 0.0231060 +1.2025012 0.0715960 0.0000000 0.0000000 0.0000000 0.0000000 0.0000000 ! COMPOSITION 3 +0.2316584 0.0103630 0.0074527 0.0074527 1.0000000 0.0000000 0.0171010 +0.9162544 0.0914080 0.1323600 0.1323600 0.0000000 0.0000000 0.0000000 ! COMPOSITION 4 +0.2317873 0.0100030 0.0061908 0.0061908 1.0000000 0.0000000 0.0172900 +0.9095043 0.0848280 0.1035800 0.1035800 0.0000000 0.0000000 0.0000000 ! COMPOSITION 5 +0.2317229 0.0101320 0.0064285 0.0064285 1.0000000 0.0000000 0.0171920 +0.9095043 0.0873140 0.1091100 0.1091100 0.0000000 0.0000000 0.0000000 ! COMPOSITION 6 +0.2316584 0.0101650 0.0061908 0.0061908 1.0000000 0.0000000 0.0171250 +0.9060433 0.0880240 0.1035800 0.1035800 0.0000000 0.0000000 0.0000000 ! COMPOSITION 7 +0.2315941 0.0102940 0.0064285 0.0064285 1.0000000 0.0000000 0.0170270 +0.9057971 0.0905100 0.1091100 0.1091100 0.0000000 0.0000000 0.0000000 ! COMPOSITION 8 + + +! Geometry card +%GEOM +9 9 2 !nx, ny, nz +11.5613 8*23.1226 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*23.1226 11.5613 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +2*11.5613 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 1 8 2 6 1 7 1 4 3 + 8 1 8 2 8 1 1 4 3 + 2 8 1 8 2 7 1 4 3 + 6 2 8 2 8 1 8 4 3 + 1 8 2 8 2 5 4 3 3 + 7 1 7 1 5 4 4 3 0 + 1 1 1 8 4 4 3 3 0 + 4 4 4 4 3 3 3 0 0 + 3 3 3 3 3 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 2 2 diff --git a/smpl/static/CBCsearch b/smpl/static/CBCsearch new file mode 100644 index 0000000..5b483aa --- /dev/null +++ b/smpl/static/CBCsearch @@ -0,0 +1,232 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION WITH NO TH FEEDBACK +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case A2 (no TH feedback) +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +9 9 18 !nx, ny, nz +10.803 8*21.606 !x-direction assembly size in cm + 1 8*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 3 2 + 1 1 1 1 1 1 1 2 0 + 1 1 1 1 1 1 3 2 0 + 1 1 1 1 1 3 2 0 0 + 1 1 1 1 3 2 0 0 0 + 1 1 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 + 4 5 4 5 4 5 4 6 2 + 5 4 5 4 5 4 6 6 2 + 4 5 4 5 4 5 6 3 2 + 5 4 5 4 5 6 6 2 0 + 4 5 4 5 4 6 3 2 0 + 5 4 5 6 6 3 2 0 0 + 4 6 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 + 4 9 4 9 4 7 4 6 2 + 9 4 8 4 8 4 11 6 2 + 4 8 4 8 4 8 6 3 2 + 9 4 8 4 8 10 6 2 0 + 4 8 4 8 4 6 3 2 0 + 7 4 8 10 6 3 2 0 0 + 4 11 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 2 0 0 0 + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +100.00 200.00 100.00 200.00 200.00 200.00 200.00 ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! CRITICAL BORON SEARCH CARD +%CBCS +1200.2 !Boron concentration ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 diff --git a/smpl/static/DVP b/smpl/static/DVP new file mode 100644 index 0000000..eadec68 --- /dev/null +++ b/smpl/static/DVP @@ -0,0 +1,144 @@ +! DVP BWR REACTOR PROBLEM +! THIS PROBLEM IS TO DEMONSTRATE ADF FEATURE IN ADPRES +!See: +!========= +! K.S. Smith, Assembly Homogenization Techniques for LWR Analysis. +! Progress in Nuclear Energy, Vol. 17 No.3, pp. 303-335, 1986. +!========= + + + +%MODE +FORWARD +%CASE +DVP +PROBLEM TEST +%XSEC +2 4 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +! COMPOSITION 1 +0.20574 0.00654 0.00415 0.00415 1.0 0.0 0.01462 +0.68866 0.04850 0.06099 0.06099 0.0 0.0 0.00000 +! COMPOSITION 2 +0.23793 0.00944 0.00437 0.00437 1.0 0.0 0.01798 +0.85348 0.06661 0.07142 0.07142 0.0 0.0 0.00000 +! COMPOSITION 3 +0.24090 0.00696 0.00437 0.00437 1.0 0.0 0.02030 +0.88551 0.05106 0.06330 0.06330 0.0 0.0 0.00000 +! COMPOSITION 4 +0.23600 0.000038 0.00000 0.00000 1.0 0.0 0.04575 +1.36422 0.01031 0.00000 0.00000 0.0 0.0 0.00000 +%GEOM +12 12 2 !nx, ny, nz +12*15.313 !x-direction assembly size in cm +12*2 !x-direction assembly divided into 20 cm each +12*15.313 !y-direction assembly size in cm +12*2 !y-direction assembly divided into 20 cm each +2*15.313 !z-direction assembly size in cm +2*1 !z-direction assembly divided into 20 cm each +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 4 4 4 4 4 4 4 4 0 0 0 0 + 1 1 3 4 4 4 4 4 4 4 0 0 + 1 3 3 1 4 4 4 4 4 4 4 0 + 1 3 3 3 1 1 3 4 4 4 4 0 + 1 3 3 1 1 1 3 3 4 4 4 4 + 1 1 1 1 1 1 1 3 3 4 4 4 + 1 1 1 1 1 1 1 3 1 4 4 4 + 1 2 2 1 1 3 3 3 1 4 4 4 + 1 2 2 1 1 3 3 1 3 1 4 4 + 1 1 1 1 1 1 1 1 1 3 3 4 + 1 1 1 1 1 1 1 1 1 3 1 4 + 1 2 2 1 1 2 2 1 1 3 1 4 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 2 2 +%ADF +!g1 -> east west north south +!g2 -> east west north south +! COMPOSITION 1 + 0.9966 0.9288 0.9966 0.9288 1.0000 1.0000 + 1.1332 1.6570 1.1332 1.6570 1.0000 1.0000 +! COMPOSITION 2 + 1.0787 0.8423 1.0787 0.8423 1.0000 1.0000 + 1.6423 0.6809 1.6423 0.6809 1.0000 1.0000 +! COMPOSITION 3 + 0.9989 0.9114 0.9989 0.9114 1.0000 1.0000 + 1.1664 1.5805 1.1664 1.5805 1.0000 1.0000 +! COMPOSITION 4 +1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 +1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 +! ADF ROTATION DUE TO DIAGONALLY SYMMETRIC ADFs + 1 ! 90 degree counter clock-wise + 2 2 1 1 1 2 + 2 2 3 3 1 2 + 2 2 5 5 1 2 + 2 2 7 7 1 2 + 2 2 9 9 1 2 + 2 2 11 11 1 2 + 4 4 1 1 1 2 + 4 4 3 3 1 2 + 4 4 5 5 1 2 + 4 4 7 7 1 2 + 4 4 9 9 1 2 + 6 6 1 1 1 2 + 6 6 3 3 1 2 + 6 6 5 5 1 2 + 6 6 7 7 1 2 + 6 6 9 9 1 2 + 8 8 1 1 1 2 + 8 8 3 3 1 2 + 8 8 5 5 1 2 + 8 8 7 7 1 2 +10 10 1 1 1 2 +10 10 3 3 1 2 + 0 0 0 0 0 0 + 2 ! 180 degree counter clock-wise + 2 2 2 2 1 2 + 2 2 4 4 1 2 + 2 2 6 6 1 2 + 2 2 8 8 1 2 + 2 2 10 10 1 2 + 4 4 2 2 1 2 + 4 4 4 4 1 2 + 4 4 6 6 1 2 + 4 4 8 8 1 2 + 4 4 10 10 1 2 + 6 6 2 2 1 2 + 6 6 4 4 1 2 + 6 6 6 6 1 2 + 6 6 8 8 1 2 + 8 8 2 2 1 2 + 8 8 4 4 1 2 + 8 8 6 6 1 2 + 8 8 8 8 1 2 +10 10 2 2 1 2 +10 10 4 4 1 2 + 0 0 0 0 0 0 + 3 ! 270 degree counter clock-wise + 1 1 2 2 1 2 + 1 1 4 4 1 2 + 1 1 6 6 1 2 + 1 1 8 8 1 2 + 1 1 10 10 1 2 + 3 3 2 2 1 2 + 3 3 4 4 1 2 + 3 3 6 6 1 2 + 3 3 8 8 1 2 + 3 3 10 10 1 2 + 5 5 2 2 1 2 + 5 5 4 4 1 2 + 5 5 6 6 1 2 + 5 5 8 8 1 2 + 7 7 2 2 1 2 + 7 7 4 4 1 2 + 7 7 6 6 1 2 + 7 7 8 8 1 2 + 9 9 2 2 1 2 + 9 9 4 4 1 2 + 9 9 6 6 1 2 +11 11 2 2 1 2 + 0 0 0 0 0 0 + 0 ! ADF INPUTS END + ! ADF PRINT (OPTIONAL) + 1 diff --git a/smpl/static/FDM b/smpl/static/FDM new file mode 100644 index 0000000..3130ba3 --- /dev/null +++ b/smpl/static/FDM @@ -0,0 +1,56 @@ +! IAEA2D input data with FDM nodal kernel + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +IAEA2D +IAEA2D Benchmark With 16x16 nodes/FA with FDM nodal kernel + +%KERN +FDM + +%ITER +1200 5 1.e-5 1.e-5 15 40 20 80 ! Set fission interpolation interval every 10 outer iteration + +! Cross-sections card +%XSEC +2 4 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.080032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 1 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.085032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 2 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.130032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 3 +0.166667 0.000160 0.000000 0.000000 1.000000 0.000000 0.040000 +1.111111 0.010024 0.000000 0.000000 0.000000 0.000000 0.000000 ! COMPOSITION 4 +! Geometry card +%GEOM +9 9 2 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +8 8*16 ! 16x16 per FA +8*20.0 10.0 !y-direction assembly size in cm +8*16 8 ! 16x16 per FA +2*1.25 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 2 2 + +! Print Card +%PRNT +1 1 0 ! print output diff --git a/smpl/static/FDM-1D b/smpl/static/FDM-1D new file mode 100644 index 0000000..12a046a --- /dev/null +++ b/smpl/static/FDM-1D @@ -0,0 +1,53 @@ +! UOS NUCLEAR REACTOR THEORY +! PROJECT 2 +! INITIALLY CREATED BY DONNY HARTANTO PhD (dhartanto@sharjah.ac.ae) + +%MODE +FORWARD + +%CASE +PROJECT +1D MODEL WITH 1 CM MESH SIZE IN X-DIRECTION + +%KERN +FDM + +%ITER +1200 5 1.e-5 1.e-5 25 40 20 80 ! Set fission interpolation interval every 25 outer iteration + +! Cross-sections card +%XSEC +2 5 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 +!Assembly Type B0 +2.13423E-01 8.88418E-03 6.35051E-03 1.01608E-15 1.00000E+00 0.00000E+00 1.67468E-02 +9.10701E-01 8.05427E-02 1.25097E-01 2.00156E-14 0.00000E+00 0.00000E+00 0.00000E+00 +!Assembly Type B1 +2.15143E-01 9.22029E-03 6.17295E-03 7.88446E-14 1.00000E+00 0.00000E+00 1.73055E-02 +9.17557E-01 8.98616E-02 1.15639E-01 1.53587E-12 0.00000E+00 0.00000E+00 0.00000E+00 +!Assembly Type B2 +2.15251E-01 9.16554E-03 6.05043E-03 9.68066E-16 1.00000E+00 0.00000E+00 1.73944E-02 +9.17368E-01 8.83031E-02 1.12347E-01 1.79756E-14 0.00000E+00 0.00000E+00 0.00000E+00 +!Assembly Type B3 +2.15501E-01 9.35080E-03 6.15644E-03 9.85030E-16 1.00000E+00 0.00000E+00 1.74459E-02 +9.20283E-01 9.35288E-02 1.13602E-01 1.81763E-14 0.00000E+00 0.00000E+00 0.00000E+00 +!Radial Reflector XS +2.37497E-01 2.00798E-03 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 2.93333E-02 +1.24667E+00 2.86063E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 + +! Geometry card +%GEOM +5 2 2 !nx, ny, nz +5*20.0 !x-direction assembly size in cm +5*20 !x-direction assembly divided into 20 (1 cm each) +2*1.0 !y-direction assembly size in cm +2*1 !y-direction nodal is not divided +2*1.0 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar + 5 4 3 2 1 + 5 4 3 2 1 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +2 1 2 2 2 2 diff --git a/smpl/static/IAEA2D b/smpl/static/IAEA2D new file mode 100644 index 0000000..7110ee4 --- /dev/null +++ b/smpl/static/IAEA2D @@ -0,0 +1,48 @@ +! IAEA2D input data +! K-EFF REF : 1.029585 (Muller paper, 1991) +! MAX POWER ERROR : 0.17% + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +IAEA2D +IAEA2D Benchmark With 2x2 nodes/FA + +! Cross-sections card +%XSEC +2 4 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.080032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 1 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.085032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 2 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.130032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 3 +0.166667 0.000160 0.000000 0.000000 1.000000 0.000000 0.040000 +1.111111 0.010024 0.000000 0.000000 0.000000 0.000000 0.000000 ! COMPOSITION 4 +! Geometry card +%GEOM +9 9 2 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*20.0 10.0 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +2*10.0 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 2 2 diff --git a/smpl/static/IAEA3Ds b/smpl/static/IAEA3Ds new file mode 100644 index 0000000..8c54c99 --- /dev/null +++ b/smpl/static/IAEA3Ds @@ -0,0 +1,80 @@ +! IAEA3D input data +! NODE SIZE = 10 cm +! PARCS K-EFF : 1.029096 +! ADPRES K-EFF : 1.029082 (ERROR = 1.4 PCM) + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +IAEA3D +10 CM NODE SIZE + +! Cross-sections card +%XSEC +2 5 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.080 0.135 0.135 0.0 0.000 0.7533 ! MAT1 : Outer Fuel +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.085 0.135 0.135 0.0 0.000 0.7483 ! MAT2 : Inner Fuel +0.222222 0.0100 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.1300 0.135 0.135 0.0 0.000 0.7033 ! MAT3 : Inner Fuel + Control Rod +0.166667 0.000 0.000 0.000 0.0 0.1267 0.040 +1.111111 0.010 0.000 0.000 0.0 0.000 1.1011 ! MAT4 : Reflector +0.166667 0.000 0.000 0.000 0.0 0.000 0.040 +1.111111 0.055 0.000 0.000 0.0 0.000 0.000 ! MAT5 : Reflector + Control Rod +%GEOM +9 9 19 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*20.0 10.0 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +19*20.0 !z-direction assembly in cm +19*1 !z-direction nodal is not divided +4 !np number of planar type +1 13*2 4*3 4 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_2 (Fuel) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_3 (Fuel+Partial Control Rods) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 3 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_4 (Top reflectors) + 5 4 4 4 5 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 5 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 5 4 4 4 5 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 1 1 diff --git a/smpl/static/KOEBERG b/smpl/static/KOEBERG new file mode 100644 index 0000000..2806ded --- /dev/null +++ b/smpl/static/KOEBERG @@ -0,0 +1,82 @@ +! KOEBERG input data +! K-EFF REF : 1.007954 +! MAX POWER ERROR : 0.25% + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +KOEBERG +KOEBERG 2x2/FA and 4-group xsec + +! Cross-sections card +%XSEC +4 7 ! Number of groups and number of materials +! COMPOSITION 1 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.133768 0.003654 0.008228 0.008228 0.745248 0.000000 0.063789 0.000486 0.000000 +0.318911 0.002124 0.000536 0.000536 0.254328 0.000000 0.000000 0.064381 0.000003 +0.492072 0.019908 0.007058 0.007058 0.000424 0.000000 0.000000 0.000000 0.050849 +0.888436 0.067990 0.083930 0.083930 0.000000 0.000000 0.000000 0.001245 0.000000 +! COMPOSITION 2 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.133726 0.003685 0.008295 0.008295 0.745248 0.000000 0.063112 0.000478 0.000000 +0.317507 0.002215 0.000713 0.000713 0.254328 0.000000 0.000000 0.063078 0.000003 +0.492652 0.022012 0.009230 0.009230 0.000424 0.000000 0.000000 0.000000 0.048420 +0.878393 0.085052 0.108244 0.108244 0.000000 0.000000 0.000000 0.001543 0.000000 +! COMPOSITION 3 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.133763 0.003684 0.008285 0.008285 0.745248 0.000000 0.062765 0.000473 0.000000 +0.316884 0.002221 0.000713 0.000713 0.254328 0.000000 0.000000 0.062404 0.000003 +0.492307 0.022403 0.009214 0.009214 0.000424 0.000000 0.000000 0.000000 0.047549 +0.873852 0.088077 0.108087 0.108087 0.000000 0.000000 0.000000 0.001598 0.000000 +! COMPOSITION 4 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.133733 0.003740 0.008459 0.008459 0.745248 0.000000 0.063737 0.000486 0.000000 +0.318888 0.002299 0.000923 0.000923 0.254328 0.000000 0.000000 0.064330 0.000003 +0.494058 0.022621 0.011714 0.011714 0.000424 0.000000 0.000000 0.000000 0.049518 +0.890694 0.091000 0.133600 0.133600 0.000000 0.000000 0.000000 0.001630 0.000000 +! COMPOSITION 5 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.133744 0.003730 0.008409 0.008409 0.745248 0.000000 0.062737 0.000473 0.000000 +0.316871 0.002315 0.000921 0.000921 0.254328 0.000000 0.000000 0.062376 0.000003 +0.493328 0.023822 0.011675 0.011675 0.000424 0.000000 0.000000 0.000000 0.046859 +0.875796 0.100246 0.134282 0.134282 0.000000 0.000000 0.000000 0.001797 0.000000 +! COMPOSITION 6 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.133787 0.003730 0.008400 0.008400 0.745248 0.000000 0.062386 0.000468 0.000000 +0.316247 0.002321 0.000921 0.000921 0.254328 0.000000 0.000000 0.061696 0.000003 +0.492953 0.024196 0.011651 0.011651 0.000424 0.000000 0.000000 0.000000 0.046005 +0.871610 0.103283 0.133974 0.133974 0.000000 0.000000 0.000000 0.001852 0.000000 +! COMPOSITION 7 +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 sigs_g3 sigs_g4 +0.157252 0.000466 0.000000 0.000000 0.745248 0.000000 0.042052 0.000322 0.000000 +0.340102 0.000263 0.000000 0.000000 0.254328 0.000000 0.000000 0.044589 0.000000 +0.627349 0.004282 0.000000 0.000000 0.000424 0.000000 0.000000 0.000000 0.052246 +0.315051 0.116918 0.000000 0.000000 0.000000 0.000000 0.000000 0.000978 0.000000 + +! Geometry card +%GEOM +9 9 2 !nx, ny, nz +10.804 8*21.608 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 +8*21.608 10.804 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 +2*10.804 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 1 3 1 3 1 2 1 4 7 + 3 1 3 1 2 1 6 4 7 + 1 3 1 2 1 3 4 7 7 + 3 1 2 1 3 5 4 7 0 + 1 2 1 3 1 4 7 7 0 + 2 1 3 5 4 7 7 0 0 + 1 6 4 4 7 7 0 0 0 + 4 4 7 7 7 0 0 0 0 + 7 7 7 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 2 2 diff --git a/smpl/static/MOX/Part1b/aroA1 b/smpl/static/MOX/Part1b/aroA1 new file mode 100644 index 0000000..d506cf0 --- /dev/null +++ b/smpl/static/MOX/Part1b/aroA1 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 21 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroA3 b/smpl/static/MOX/Part1b/aroA3 new file mode 100644 index 0000000..36ac69c --- /dev/null +++ b/smpl/static/MOX/Part1b/aroA3 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 19 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroA5 b/smpl/static/MOX/Part1b/aroA5 new file mode 100644 index 0000000..e048a2f --- /dev/null +++ b/smpl/static/MOX/Part1b/aroA5 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 25 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroA7 b/smpl/static/MOX/Part1b/aroA7 new file mode 100644 index 0000000..a9b31c4 --- /dev/null +++ b/smpl/static/MOX/Part1b/aroA7 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 23 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroB6 b/smpl/static/MOX/Part1b/aroB6 new file mode 100644 index 0000000..35f25fe --- /dev/null +++ b/smpl/static/MOX/Part1b/aroB6 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroC3 b/smpl/static/MOX/Part1b/aroC3 new file mode 100644 index 0000000..f5f407d --- /dev/null +++ b/smpl/static/MOX/Part1b/aroC3 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 19 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroC7 b/smpl/static/MOX/Part1b/aroC7 new file mode 100644 index 0000000..7ff09d2 --- /dev/null +++ b/smpl/static/MOX/Part1b/aroC7 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 23 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroD6 b/smpl/static/MOX/Part1b/aroD6 new file mode 100644 index 0000000..27a3f67 --- /dev/null +++ b/smpl/static/MOX/Part1b/aroD6 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroE5 b/smpl/static/MOX/Part1b/aroE5 new file mode 100644 index 0000000..37352d5 --- /dev/null +++ b/smpl/static/MOX/Part1b/aroE5 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 22 7 2 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1b/aroE7 b/smpl/static/MOX/Part1b/aroE7 new file mode 100644 index 0000000..c5626d4 --- /dev/null +++ b/smpl/static/MOX/Part1b/aroE7 @@ -0,0 +1,157 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 18 26 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 26 +26 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 26 +26 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 26 2 7 6 1 3 1 11 1 3 1 6 7 2 26 26 +0 26 10 15 7 9 16 4 16 4 16 9 7 15 10 26 0 +0 26 26 10 2 15 7 12 7 12 7 15 2 10 26 26 0 +0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 +0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + + + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariA1 b/smpl/static/MOX/Part1d/ariA1 new file mode 100644 index 0000000..becc4d3 --- /dev/null +++ b/smpl/static/MOX/Part1d/ariA1 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 5 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariA3 b/smpl/static/MOX/Part1d/ariA3 new file mode 100644 index 0000000..81276fb --- /dev/null +++ b/smpl/static/MOX/Part1d/ariA3 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 3 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariA5 b/smpl/static/MOX/Part1d/ariA5 new file mode 100644 index 0000000..d105d99 --- /dev/null +++ b/smpl/static/MOX/Part1d/ariA5 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 11 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariA7 b/smpl/static/MOX/Part1d/ariA7 new file mode 100644 index 0000000..446807e --- /dev/null +++ b/smpl/static/MOX/Part1d/ariA7 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 7 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariB6 b/smpl/static/MOX/Part1d/ariB6 new file mode 100644 index 0000000..17ffcaf --- /dev/null +++ b/smpl/static/MOX/Part1d/ariB6 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 4 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariC3 b/smpl/static/MOX/Part1d/ariC3 new file mode 100644 index 0000000..233fa3b --- /dev/null +++ b/smpl/static/MOX/Part1d/ariC3 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 3 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariC7 b/smpl/static/MOX/Part1d/ariC7 new file mode 100644 index 0000000..2a386c9 --- /dev/null +++ b/smpl/static/MOX/Part1d/ariC7 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 7 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariD6 b/smpl/static/MOX/Part1d/ariD6 new file mode 100644 index 0000000..b6527e1 --- /dev/null +++ b/smpl/static/MOX/Part1d/ariD6 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 9 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariE5 b/smpl/static/MOX/Part1d/ariE5 new file mode 100644 index 0000000..a7a1e5c --- /dev/null +++ b/smpl/static/MOX/Part1d/ariE5 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 6 7 18 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/Part1d/ariE7 b/smpl/static/MOX/Part1d/ariE7 new file mode 100644 index 0000000..3e3b1e4 --- /dev/null +++ b/smpl/static/MOX/Part1d/ariE7 @@ -0,0 +1,150 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +17 17 2 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) +! Planar_type_1 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 2 26 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 4 23 16 25 7 19 1 21 1 19 7 25 16 23 4 26 +26 8 12 20 1 13 10 2 1 2 10 13 1 20 12 8 26 +26 17 23 16 3 1 19 10 19 10 19 1 3 16 23 17 26 +26 9 15 24 1 14 1 13 7 13 1 14 1 24 15 9 26 +26 26 18 7 22 1 3 1 25 1 3 1 22 7 18 26 26 + 0 26 10 15 7 24 16 20 16 20 16 24 7 15 10 26 0 + 0 26 26 10 18 15 23 12 23 12 23 15 18 10 26 26 0 + 0 0 26 26 26 9 17 8 4 8 17 9 26 26 26 0 0 + 0 0 0 0 26 26 26 26 26 26 26 26 26 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/part1_ari_helios b/smpl/static/MOX/part1_ari_helios new file mode 100644 index 0000000..a4418f0 --- /dev/null +++ b/smpl/static/MOX/part1_ari_helios @@ -0,0 +1,146 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%GEOM +9 9 2 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 !planar assignment (from bottom to top) + +! Planar_type_1 + 26 26 26 26 26 0 0 0 0 + 4 8 17 9 26 26 26 0 0 + 23 12 23 15 18 10 26 26 0 + 16 20 16 24 7 15 10 26 0 + 25 1 3 1 22 7 18 26 26 + 7 13 1 14 1 24 15 9 26 + 19 10 19 1 3 16 23 17 26 + 1 2 10 13 1 20 12 8 26 + 21 1 19 7 25 16 23 4 26 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 2 2 + +%ADF + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 + + diff --git a/smpl/static/MOX/part1_ari_serpent b/smpl/static/MOX/part1_ari_serpent new file mode 100644 index 0000000..2718984 --- /dev/null +++ b/smpl/static/MOX/part1_ari_serpent @@ -0,0 +1,203 @@ +! UO-MOX REACTOR PROBLEM + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +9 9 2 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +2*21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +1 !np number of planar type +2*1 + +! Planar_type_1 +26 26 26 26 26 0 0 0 0 + 4 8 17 9 26 26 26 0 0 +23 12 23 15 18 10 26 26 0 +16 20 16 24 7 15 10 26 0 +25 1 3 1 22 7 18 26 26 + 7 13 1 14 1 24 15 9 26 +19 10 19 1 3 16 23 17 26 + 1 2 10 13 1 20 12 8 26 +21 1 19 7 25 16 23 4 26 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 2 2 + +%XSEC +2 27 ! Number of groups and number of materials + !u42 UNRODDED. BURN-UP: 0.15 +2.34544E-01 9.98037E-03 7.59247E-03 9.76397E-14 1.00000E+00 5.28264E-01 1.77629E-02 +8.66255E-01 1.17854E-01 1.56179E-01 2.07650E-12 0.00000E+00 1.79595E-03 1.35588E+00 + !u42 UNRODDED. BURN-UP: 17.50 +2.34060E-01 1.05182E-02 6.37658E-03 7.98642E-14 1.00000E+00 5.29794E-01 1.73011E-02 +8.90166E-01 1.16461E-01 1.60507E-01 2.02949E-12 0.00000E+00 1.77298E-03 1.37200E+00 + !u42 UNRODDED. BURN-UP: 22.50 +2.33976E-01 1.07120E-02 6.06207E-03 7.54039E-14 1.00000E+00 5.30879E-01 1.72784E-02 +8.91182E-01 1.15242E-01 1.55663E-01 1.95013E-12 0.00000E+00 1.76810E-03 1.37396E+00 + !u42 UNRODDED. BURN-UP: 32.50 +2.34373E-01 1.10352E-02 5.49309E-03 6.74266E-14 1.00000E+00 5.33030E-01 1.73025E-02 +8.99875E-01 1.12037E-01 1.43996E-01 1.77454E-12 0.00000E+00 1.70253E-03 1.37812E+00 + !u42 UNRODDED. BURN-UP: 35.00 +2.34237E-01 1.11075E-02 5.36375E-03 6.56277E-14 1.00000E+00 5.33516E-01 1.73101E-02 +9.00204E-01 1.11068E-01 1.40842E-01 1.72910E-12 0.00000E+00 1.67425E-03 1.37876E+00 + !u42 UNRODDED. BURN-UP: 37.50 +2.34345E-01 1.11916E-02 5.24444E-03 6.39616E-14 1.00000E+00 5.34041E-01 1.73219E-02 +8.99349E-01 1.10102E-01 1.37694E-01 1.68425E-12 0.00000E+00 1.66484E-03 1.38006E+00 + !u45 UNRODDED. BURN-UP: 0.15 +2.34210E-01 1.01350E-02 7.92582E-03 1.02056E-13 1.00000E+00 5.27567E-01 1.75495E-02 +8.60367E-01 1.22015E-01 1.64920E-01 2.19279E-12 0.00000E+00 1.86721E-03 1.35489E+00 + !u45 UNRODDED. BURN-UP: 17.50 +2.34206E-01 1.06286E-02 6.67634E-03 8.38651E-14 1.00000E+00 5.29261E-01 1.71506E-02 +8.85733E-01 1.20500E-01 1.68613E-01 2.13826E-12 0.00000E+00 1.84672E-03 1.37029E+00 + !u45 UNRODDED. BURN-UP: 20.00 +2.34154E-01 1.07118E-02 6.50779E-03 8.14759E-14 1.00000E+00 5.29773E-01 1.71403E-02 +8.89900E-01 1.19930E-01 1.66382E-01 2.10039E-12 0.00000E+00 1.83478E-03 1.37185E+00 + !u45 UNRODDED. BURN-UP: 32.50 +2.34325E-01 1.11090E-02 5.75540E-03 7.09140E-14 1.00000E+00 5.32420E-01 1.71556E-02 +8.96792E-01 1.15888E-01 1.51878E-01 1.87896E-12 0.00000E+00 1.75181E-03 1.37649E+00 + !u45 UNRODDED. BURN-UP: 37.50 +2.34595E-01 1.12536E-02 5.48584E-03 6.71711E-14 1.00000E+00 5.33537E-01 1.71856E-02 +8.98788E-01 1.13996E-01 1.45567E-01 1.78784E-12 0.00000E+00 1.71294E-03 1.37816E+00 + !m40 UNRODDED. BURN-UP: 0.15 +2.34297E-01 1.17344E-02 8.31627E-03 9.69696E-14 1.00000E+00 5.19237E-01 1.51764E-02 +9.07557E-01 2.50064E-01 3.64904E-01 4.26563E-12 0.00000E+00 3.61004E-03 1.31659E+00 + !m40 UNRODDED. BURN-UP: 22.50 +2.35521E-01 1.23542E-02 6.99915E-03 8.14831E-14 1.00000E+00 5.24624E-01 1.50572E-02 +8.98229E-01 1.92322E-01 2.72063E-01 3.17327E-12 0.00000E+00 2.81240E-03 1.32071E+00 + !m40 UNRODDED. BURN-UP: 37.50 +2.36316E-01 1.26992E-02 6.25232E-03 7.26936E-14 1.00000E+00 5.27756E-01 1.51017E-02 +8.96383E-01 1.65223E-01 2.23744E-01 2.60452E-12 0.00000E+00 2.41806E-03 1.32346E+00 + !m43 UNRODDED. BURN-UP: 0.15 +2.34031E-01 1.19189E-02 8.70410E-03 1.01413E-13 1.00000E+00 5.18629E-01 1.49782E-02 +9.06947E-01 2.58500E-01 3.80820E-01 4.45107E-12 0.00000E+00 3.68292E-03 1.31752E+00 + !m43 UNRODDED. BURN-UP: 17.50 +2.34985E-01 1.24275E-02 7.64869E-03 8.90212E-14 1.00000E+00 5.22945E-01 1.48776E-02 +8.99449E-01 2.14730E-01 3.08507E-01 3.60045E-12 0.00000E+00 3.09513E-03 1.31889E+00 + !m43 UNRODDED. BURN-UP: 35.00 +2.36113E-01 1.28111E-02 6.73999E-03 7.83420E-14 1.00000E+00 5.26554E-01 1.48811E-02 +8.92584E-01 1.79408E-01 2.49055E-01 2.90054E-12 0.00000E+00 2.63490E-03 1.32215E+00 + !u42 RODDED. BURN-UP: 17.50 +2.34695E-01 1.61698E-02 6.19342E-03 7.74095E-14 1.00000E+00 5.20833E-01 1.36187E-02 +8.73850E-01 1.52942E-01 1.68689E-01 2.13010E-12 0.00000E+00 2.19889E-03 1.30693E+00 + !u42 RODDED. BURN-UP: 22.50 +2.34714E-01 1.63306E-02 5.89870E-03 7.32239E-14 1.00000E+00 5.21501E-01 1.35653E-02 +8.84962E-01 1.51976E-01 1.64038E-01 2.05224E-12 0.00000E+00 2.16935E-03 1.30942E+00 + !u42 RODDED. BURN-UP: 32.50 +2.34896E-01 1.65954E-02 5.36541E-03 6.56794E-14 1.00000E+00 5.22690E-01 1.35122E-02 +8.88244E-01 1.49124E-01 1.52796E-01 1.88079E-12 0.00000E+00 2.11930E-03 1.31245E+00 + !u42 RODDED. BURN-UP: 35.00 +2.34783E-01 1.66647E-02 5.24655E-03 6.40043E-14 1.00000E+00 5.22934E-01 1.34932E-02 +8.94907E-01 1.48362E-01 1.49704E-01 1.83585E-12 0.00000E+00 2.12155E-03 1.31299E+00 + !u42 RODDED. BURN-UP: 37.50 +2.35069E-01 1.67194E-02 5.13258E-03 6.24168E-14 1.00000E+00 5.23230E-01 1.34902E-02 +8.95411E-01 1.47265E-01 1.46659E-01 1.79199E-12 0.00000E+00 2.11397E-03 1.31437E+00 + !u45 RODDED. BURN-UP: 0.15 +2.34908E-01 1.58219E-02 7.65195E-03 9.83508E-14 1.00000E+00 5.18746E-01 1.38168E-02 +8.55500E-01 1.54259E-01 1.70693E-01 2.26951E-12 0.00000E+00 2.22653E-03 1.29336E+00 + !u45 RODDED. BURN-UP: 20.00 +2.34623E-01 1.63177E-02 6.32396E-03 7.90279E-14 1.00000E+00 5.20700E-01 1.34727E-02 +8.80177E-01 1.56871E-01 1.75038E-01 2.20669E-12 0.00000E+00 2.26112E-03 1.30590E+00 + !u45 RODDED. BURN-UP: 37.50 +2.35039E-01 1.67724E-02 5.36125E-03 6.54697E-14 1.00000E+00 5.22934E-01 1.33871E-02 +8.90765E-01 1.51366E-01 1.54621E-01 1.89692E-12 0.00000E+00 2.15770E-03 1.31257E+00 +! reflector +2.52078E-01 2.28946E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.28598E-01 2.84275E-02 +1.32879E+00 3.79706E-02 0.00000E+00 0.00000E+00 0.00000E+00 6.83220E-04 1.98425E+00 +! reflector (axial) +1.71190E-01 1.00281E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.66798E-01 4.35628E-02 +1.36174E+00 2.99824E-02 0.00000E+00 0.00000E+00 0.00000E+00 4.54319E-04 2.08645E+00 + +%ADF +!g1 -> east west north south +!g2 -> east west north south + !u42 UNRODDED. BURN-UP: 0.15 +1.00820E+00 1.00820E+00 1.00820E+00 1.00820E+00 1.00000E+00 1.00000E+00 +1.02765E+00 1.02765E+00 1.02765E+00 1.02765E+00 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 17.50 +1.00121E+00 1.00121E+00 1.00121E+00 1.00121E+00 1.00000E+00 1.00000E+00 +9.65625E-01 9.65625E-01 9.65625E-01 9.65625E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 22.50 +9.99939E-01 9.99939E-01 9.99939E-01 9.99939E-01 1.00000E+00 1.00000E+00 +9.58700E-01 9.58700E-01 9.58700E-01 9.58700E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 32.50 +1.00216E+00 1.00216E+00 1.00216E+00 1.00216E+00 1.00000E+00 1.00000E+00 +9.52719E-01 9.52719E-01 9.52719E-01 9.52719E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 35.00 +1.00257E+00 1.00257E+00 1.00257E+00 1.00257E+00 1.00000E+00 1.00000E+00 +9.49727E-01 9.49727E-01 9.49727E-01 9.49727E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 37.50 +1.00347E+00 1.00347E+00 1.00347E+00 1.00347E+00 1.00000E+00 1.00000E+00 +9.46229E-01 9.46229E-01 9.46229E-01 9.46229E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 0.15 +1.00854E+00 1.00854E+00 1.00854E+00 1.00854E+00 1.00000E+00 1.00000E+00 +1.02661E+00 1.02661E+00 1.02661E+00 1.02661E+00 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 17.50 +1.00053E+00 1.00053E+00 1.00053E+00 1.00053E+00 1.00000E+00 1.00000E+00 +9.67569E-01 9.67569E-01 9.67569E-01 9.67569E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 20.00 +1.00046E+00 1.00046E+00 1.00046E+00 1.00046E+00 1.00000E+00 1.00000E+00 +9.63609E-01 9.63609E-01 9.63609E-01 9.63609E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 32.50 +1.00191E+00 1.00191E+00 1.00191E+00 1.00191E+00 1.00000E+00 1.00000E+00 +9.50400E-01 9.50400E-01 9.50400E-01 9.50400E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 37.50 +1.00248E+00 1.00248E+00 1.00248E+00 1.00248E+00 1.00000E+00 1.00000E+00 +9.46750E-01 9.46750E-01 9.46750E-01 9.46750E-01 1.00000E+00 1.00000E+00 + !m40 UNRODDED. BURN-UP: 0.15 +1.00099E+00 1.00099E+00 1.00099E+00 1.00099E+00 1.00000E+00 1.00000E+00 +1.33012E+00 1.33012E+00 1.33012E+00 1.33012E+00 1.00000E+00 1.00000E+00 + !m40 UNRODDED. BURN-UP: 22.50 +9.87912E-01 9.87912E-01 9.87912E-01 9.87912E-01 1.00000E+00 1.00000E+00 +1.18136E+00 1.18136E+00 1.18136E+00 1.18136E+00 1.00000E+00 1.00000E+00 + !m40 UNRODDED. BURN-UP: 37.50 +9.88934E-01 9.88934E-01 9.88934E-01 9.88934E-01 1.00000E+00 1.00000E+00 +1.12555E+00 1.12555E+00 1.12555E+00 1.12555E+00 1.00000E+00 1.00000E+00 + !m43 UNRODDED. BURN-UP: 0.15 +9.98132E-01 9.98132E-01 9.98132E-01 9.98132E-01 1.00000E+00 1.00000E+00 +1.37061E+00 1.37061E+00 1.37061E+00 1.37061E+00 1.00000E+00 1.00000E+00 + !m43 UNRODDED. BURN-UP: 17.50 +9.90490E-01 9.90490E-01 9.90490E-01 9.90490E-01 1.00000E+00 1.00000E+00 +1.26002E+00 1.26002E+00 1.26002E+00 1.26002E+00 1.00000E+00 1.00000E+00 + !m43 UNRODDED. BURN-UP: 35.00 +9.86466E-01 9.86466E-01 9.86466E-01 9.86466E-01 1.00000E+00 1.00000E+00 +1.17609E+00 1.17609E+00 1.17609E+00 1.17609E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 17.50 +1.06443E+00 1.06443E+00 1.06443E+00 1.06443E+00 1.00000E+00 1.00000E+00 +1.37474E+00 1.37474E+00 1.37474E+00 1.37474E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 22.50 +1.06421E+00 1.06421E+00 1.06421E+00 1.06421E+00 1.00000E+00 1.00000E+00 +1.37383E+00 1.37383E+00 1.37383E+00 1.37383E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 32.50 +1.06747E+00 1.06747E+00 1.06747E+00 1.06747E+00 1.00000E+00 1.00000E+00 +1.36334E+00 1.36334E+00 1.36334E+00 1.36334E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 35.00 +1.06752E+00 1.06752E+00 1.06752E+00 1.06752E+00 1.00000E+00 1.00000E+00 +1.36214E+00 1.36214E+00 1.36214E+00 1.36214E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 37.50 +1.06786E+00 1.06786E+00 1.06786E+00 1.06786E+00 1.00000E+00 1.00000E+00 +1.35987E+00 1.35987E+00 1.35987E+00 1.35987E+00 1.00000E+00 1.00000E+00 + !u45 RODDED. BURN-UP: 0.15 +1.06915E+00 1.06915E+00 1.06915E+00 1.06915E+00 1.00000E+00 1.00000E+00 +1.42485E+00 1.42485E+00 1.42485E+00 1.42485E+00 1.00000E+00 1.00000E+00 + !u45 RODDED. BURN-UP: 20.00 +1.06390E+00 1.06390E+00 1.06390E+00 1.06390E+00 1.00000E+00 1.00000E+00 +1.37502E+00 1.37502E+00 1.37502E+00 1.37502E+00 1.00000E+00 1.00000E+00 + !u45 RODDED. BURN-UP: 37.50 +1.06716E+00 1.06716E+00 1.06716E+00 1.06716E+00 1.00000E+00 1.00000E+00 +1.36005E+00 1.36005E+00 1.36005E+00 1.36005E+00 1.00000E+00 1.00000E+00 +! reflector +1.22730E+00 1.22730E+00 1.22730E+00 1.22730E+00 1.00000E+00 1.00000E+00 +2.40027E-01 2.40027E-01 2.40027E-01 2.40027E-01 1.00000E+00 1.00000E+00 +! reflector (axial) +1.01082E+00 1.01082E+00 1.01082E+00 1.01082E+00 1.00000E+00 1.00000E+00 +1.03533E+00 1.03533E+00 1.03533E+00 1.03533E+00 1.00000E+00 1.00000E+00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/part1_aro_helios b/smpl/static/MOX/part1_aro_helios new file mode 100644 index 0000000..e3d7a85 --- /dev/null +++ b/smpl/static/MOX/part1_aro_helios @@ -0,0 +1,147 @@ +! NOX-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +9 9 2 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +2*10.71 !z-direction assembly size in cm +1 1 !z-direction assembly division +1 !np number of planar type +1 1 + +! Planar_type_1 + 26 26 26 26 26 0 0 0 0 + 4 8 17 9 26 26 26 0 0 + 7 12 7 15 2 10 26 26 0 + 16 4 16 9 7 15 10 26 0 + 11 1 3 1 6 7 2 26 26 + 7 13 1 14 1 9 15 9 26 + 3 10 3 1 3 16 7 17 26 + 1 2 10 13 1 4 12 8 26 + 5 1 3 7 11 16 7 4 26 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 2 2 + +%XSEC +2 26 ! Number of groups and number of materials +! sigtr siga nu*sigf kap*sigf chi sigs_g1 sigs_g2 + 2.42628E-01 9.94228E-03 7.62589E-03 9.88973E-14 1.00000E+00 5.30344E-01 1.74866E-02 + 8.79010E-01 1.18334E-01 1.57892E-01 2.10180E-12 0.00000E+00 0.00000E+00 1.35558E+00 !MAT 1 : u42u 0.15 GWD/TON + 2.40542E-01 1.03909E-02 6.39660E-03 8.10545E-14 1.00000E+00 5.30226E-01 1.70733E-02 + 9.03889E-01 1.16488E-01 1.61268E-01 2.05038E-12 0.00000E+00 0.00000E+00 1.37062E+00 !MAT 2 : u42u 17.50 GWD/TON + 2.39594E-01 1.05744E-02 6.08059E-03 7.65910E-14 1.00000E+00 5.30861E-01 1.70480E-02 + 9.07752E-01 1.15171E-01 1.56260E-01 1.96985E-12 0.00000E+00 0.00000E+00 1.37277E+00 !MAT 3 : u42u 22.50 GWD/TON + 2.37615E-01 1.08959E-02 5.50317E-03 6.85255E-14 1.00000E+00 5.32146E-01 1.70564E-02 + 9.13842E-01 1.11650E-01 1.44055E-01 1.78878E-12 0.00000E+00 0.00000E+00 1.37615E+00 !MAT 4 : u42u 32.50 GWD/TON + 2.37110E-01 1.09687E-02 5.37044E-03 6.66874E-14 1.00000E+00 5.32461E-01 1.70660E-02 + 9.15128E-01 1.10633E-01 1.40796E-01 1.74224E-12 0.00000E+00 0.00000E+00 1.37687E+00 !MAT 5 : u42u 35.00 GWD/TON + 2.36594E-01 1.10387E-02 5.24249E-03 6.49213E-14 1.00000E+00 5.32735E-01 1.70776E-02 + 9.16344E-01 1.09587E-01 1.37521E-01 1.69596E-12 0.00000E+00 0.00000E+00 1.37755E+00 !MAT 6 : u42u 37.50 GWD/TON + 2.42850E-01 1.00974E-02 7.96089E-03 1.03335E-13 1.00000E+00 5.29572E-01 1.72761E-02 + 8.77593E-01 1.22496E-01 1.66723E-01 2.21942E-12 0.00000E+00 0.00000E+00 1.35448E+00 !MAT 7 : u45u 0.15 GWD/TON + 2.40811E-01 1.05022E-02 6.70231E-03 8.51295E-14 1.00000E+00 5.29615E-01 1.69166E-02 + 9.01786E-01 1.20673E-01 1.69672E-01 2.16299E-12 0.00000E+00 0.00000E+00 1.36903E+00 !MAT 8 : u45u 17.50 GWD/TON + 2.40364E-01 1.05895E-02 6.53620E-03 8.27830E-14 1.00000E+00 5.29923E-01 1.69018E-02 + 9.03833E-01 1.20028E-01 1.67314E-01 2.12402E-12 0.00000E+00 0.00000E+00 1.37019E+00 !MAT 9 : u45u 20.00 GWD/TON + 2.38011E-01 1.09752E-02 5.77059E-03 7.20788E-14 1.00000E+00 5.31479E-01 1.69098E-02 + 9.11882E-01 1.15670E-01 1.52273E-01 1.89758E-12 0.00000E+00 0.00000E+00 1.37467E+00 !MAT 10 : u45u 32.50 GWD/TON + 2.37023E-01 1.11095E-02 5.49420E-03 6.82594E-14 1.00000E+00 5.32098E-01 1.69338E-02 + 9.14453E-01 1.13515E-01 1.45519E-01 1.80135E-12 0.00000E+00 0.00000E+00 1.37613E+00 !MAT 11 : u45u 37.50 GWD/TON + 2.42172E-01 1.15996E-02 8.33977E-03 9.89194E-14 1.00000E+00 5.21033E-01 1.50023E-02 + 9.06462E-01 2.51194E-01 3.67816E-01 4.34691E-12 0.00000E+00 0.00000E+00 1.31985E+00 !MAT 12 : m40m 0.15 GWD/TON + 2.40535E-01 1.22430E-02 7.04385E-03 8.34796E-14 1.00000E+00 5.24500E-01 1.48329E-02 + 9.03729E-01 1.92891E-01 2.73756E-01 3.22866E-12 0.00000E+00 0.00000E+00 1.32118E+00 !MAT 13 : m40m 22.50 GWD/TON + 2.39156E-01 1.25635E-02 6.29380E-03 7.45469E-14 1.00000E+00 5.26342E-01 1.48696E-02 + 9.02742E-01 1.64843E-01 2.24266E-01 2.64012E-12 0.00000E+00 0.00000E+00 1.32278E+00 !MAT 14 : m40m 37.50 GWD/TON + 2.42178E-01 1.17871E-02 8.72688E-03 1.03419E-13 1.00000E+00 5.20474E-01 1.48126E-02 + 9.08432E-01 2.59823E-01 3.83999E-01 4.53755E-12 0.00000E+00 0.00000E+00 1.32091E+00 !MAT 15 : m43m 0.15 GWD/TON + 2.40854E-01 1.23192E-02 7.69412E-03 9.11290E-14 1.00000E+00 5.23279E-01 1.46595E-02 + 9.05341E-01 2.15772E-01 3.10884E-01 3.66854E-12 0.00000E+00 0.00000E+00 1.32041E+00 !MAT 16 : m43m 17.50 GWD/TON + 2.39534E-01 1.26778E-02 6.78762E-03 8.03392E-14 1.00000E+00 5.25322E-01 1.46506E-02 + 9.04104E-01 1.79663E-01 2.50662E-01 2.95217E-12 0.00000E+00 0.00000E+00 1.32215E+00 !MAT 17 : m43m 35.00 GWD/TON + 2.31319E-01 1.60447E-02 6.21042E-03 7.85755E-14 1.00000E+00 5.20604E-01 1.34626E-02 + 8.84772E-01 1.52033E-01 1.68974E-01 2.14574E-12 0.00000E+00 0.00000E+00 1.30658E+00 !MAT 18 : u42r 17.50 GWD/TON + 2.30112E-01 1.61940E-02 5.91172E-03 7.43415E-14 1.00000E+00 5.20840E-01 1.34085E-02 + 8.88279E-01 1.50903E-01 1.64057E-01 2.06556E-12 0.00000E+00 0.00000E+00 1.30854E+00 !MAT 19 : u42r 22.50 GWD/TON + 2.27550E-01 1.64514E-02 5.36925E-03 6.67270E-14 1.00000E+00 5.21144E-01 1.33409E-02 + 8.93661E-01 1.47406E-01 1.51743E-01 1.88206E-12 0.00000E+00 0.00000E+00 1.31176E+00 !MAT 20 : u42r 32.50 GWD/TON + 2.26881E-01 1.65083E-02 5.24546E-03 6.50020E-14 1.00000E+00 5.21191E-01 1.33284E-02 + 8.94766E-01 1.46358E-01 1.48419E-01 1.83450E-12 0.00000E+00 0.00000E+00 1.31245E+00 !MAT 21 : u42r 35.00 GWD/TON + 2.26197E-01 1.65626E-02 5.12666E-03 6.33507E-14 1.00000E+00 5.21193E-01 1.33165E-02 + 8.95795E-01 1.45268E-01 1.45069E-01 1.78710E-12 0.00000E+00 0.00000E+00 1.31312E+00 !MAT 22 : u42r 37.50 GWD/TON + 2.34634E-01 1.57704E-02 7.67997E-03 9.95507E-14 1.00000E+00 5.20245E-01 1.36307E-02 + 8.61541E-01 1.54373E-01 1.72919E-01 2.30188E-12 0.00000E+00 0.00000E+00 1.29329E+00 !MAT 23 : u45r 0.15 GWD/TON + 2.31255E-01 1.61934E-02 6.34202E-03 8.02061E-14 1.00000E+00 5.20250E-01 1.33148E-02 + 8.85156E-01 1.55992E-01 1.75430E-01 2.22434E-12 0.00000E+00 0.00000E+00 1.30604E+00 !MAT 24 : u45r 20.00 GWD/TON + 2.26931E-01 1.66123E-02 5.36073E-03 6.64699E-14 1.00000E+00 5.20858E-01 1.32191E-02 + 8.94518E-01 1.49519E-01 1.53407E-01 1.89687E-12 0.00000E+00 0.00000E+00 1.31168E+00 !MAT 25 : u45r 37.50 GWD/TON + 3.01887E-01 2.42533E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.40121E-01 2.75262E-02 + 1.22567E+00 3.72376E-02 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 1.99026E+00 !MAT 26 : refl 0.00 GWD/TON + +%ADF +!g1 -> east west north south +!g2 -> east west north south + 1.01079 1.01079 1.01079 1.01079 1.00000 1.00000 + 1.00307 1.00307 1.00307 1.00307 1.00000 1.00000 !MAT 1 : u42u 0.15 + 1.00249 1.00249 1.00249 1.00249 1.00000 1.00000 + 0.94632 0.94632 0.94632 0.94632 1.00000 1.00000 !MAT 2 : u42u 17.50 + 1.00219 1.00219 1.00219 1.00219 1.00000 1.00000 + 0.94368 0.94368 0.94368 0.94368 1.00000 1.00000 !MAT 3 : u42u 22.50 + 1.00208 1.00208 1.00208 1.00208 1.00000 1.00000 + 0.94181 0.94181 0.94181 0.94181 1.00000 1.00000 !MAT 4 : u42u 32.50 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94162 0.94162 0.94162 0.94162 1.00000 1.00000 !MAT 5 : u42u 35.00 + 1.00210 1.00210 1.00210 1.00210 1.00000 1.00000 + 0.94150 0.94150 0.94150 0.94150 1.00000 1.00000 !MAT 6 : u42u 37.50 + 1.01036 1.01036 1.01036 1.01036 1.00000 1.00000 + 1.00058 1.00058 1.00058 1.00058 1.00000 1.00000 !MAT 7 : u45u 0.15 + 1.00241 1.00241 1.00241 1.00241 1.00000 1.00000 + 0.94603 0.94603 0.94603 0.94603 1.00000 1.00000 !MAT 8 : u45u 17.50 + 1.00220 1.00220 1.00220 1.00220 1.00000 1.00000 + 0.94436 0.94436 0.94436 0.94436 1.00000 1.00000 !MAT 9 : u45u 20.00 + 1.00192 1.00192 1.00192 1.00192 1.00000 1.00000 + 0.94103 0.94103 0.94103 0.94103 1.00000 1.00000 !MAT 10 : u45u 32.50 + 1.00193 1.00193 1.00193 1.00193 1.00000 1.00000 + 0.94066 0.94066 0.94066 0.94066 1.00000 1.00000 !MAT 11 : u45u 37.50 + 1.00462 1.00462 1.00462 1.00462 1.00000 1.00000 + 1.25708 1.25708 1.25708 1.25708 1.00000 1.00000 !MAT 12 : m40m 0.15 + 0.99607 0.99607 0.99607 0.99607 1.00000 1.00000 + 1.13217 1.13217 1.13217 1.13217 1.00000 1.00000 !MAT 13 : m40m 22.50 + 0.99572 0.99572 0.99572 0.99572 1.00000 1.00000 + 1.08069 1.08069 1.08069 1.08069 1.00000 1.00000 !MAT 14 : m40m 37.50 + 1.00346 1.00346 1.00346 1.00346 1.00000 1.00000 + 1.29433 1.29433 1.29433 1.29433 1.00000 1.00000 !MAT 15 : m43m 0.15 + 0.99626 0.99626 0.99626 0.99626 1.00000 1.00000 + 1.19983 1.19983 1.19983 1.19983 1.00000 1.00000 !MAT 16 : m43m 17.50 + 0.99438 0.99438 0.99438 0.99438 1.00000 1.00000 + 1.12742 1.12742 1.12742 1.12742 1.00000 1.00000 !MAT 17 : m43m 35.00 + 1.05635 1.05635 1.05635 1.05635 1.00000 1.00000 + 1.33443 1.33443 1.33443 1.33443 1.00000 1.00000 !MAT 18 : u42r 17.50 + 1.05615 1.05615 1.05615 1.05615 1.00000 1.00000 + 1.33271 1.33271 1.33271 1.33271 1.00000 1.00000 !MAT 19 : u42r 22.50 + 1.05623 1.05623 1.05623 1.05623 1.00000 1.00000 + 1.33209 1.33209 1.33209 1.33209 1.00000 1.00000 !MAT 20 : u42r 32.50 + 1.05629 1.05629 1.05629 1.05629 1.00000 1.00000 + 1.33218 1.33218 1.33218 1.33218 1.00000 1.00000 !MAT 21 : u42r 35.00 + 1.05634 1.05634 1.05634 1.05634 1.00000 1.00000 + 1.33231 1.33231 1.33231 1.33231 1.00000 1.00000 !MAT 22 : u42r 37.50 + 1.06288 1.06288 1.06288 1.06288 1.00000 1.00000 + 1.38018 1.38018 1.38018 1.38018 1.00000 1.00000 !MAT 23 : u45r 0.15 + 1.05568 1.05568 1.05568 1.05568 1.00000 1.00000 + 1.33250 1.33250 1.33250 1.33250 1.00000 1.00000 !MAT 24 : u45r 20.00 + 1.05580 1.05580 1.05580 1.05580 1.00000 1.00000 + 1.33102 1.33102 1.33102 1.33102 1.00000 1.00000 !MAT 25 : u45r 37.50 + 1.17639 1.17639 1.17639 1.17639 1.00000 1.00000 + 0.22755 0.22755 0.22755 0.22755 1.00000 1.00000 !MAT 26 : refl 0.00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/part1_aro_serpent b/smpl/static/MOX/part1_aro_serpent new file mode 100644 index 0000000..f0c6c9d --- /dev/null +++ b/smpl/static/MOX/part1_aro_serpent @@ -0,0 +1,204 @@ +! UO-MOX REACTOR PROBLEM + + +%MODE +FORWARD +%CASE +UOX-MOX +PROBLEM TEST + +%GEOM +9 9 2 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +2*21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +1 !np number of planar type +2*1 + +! Planar_type_1 + 26 26 26 26 26 0 0 0 0 + 4 8 17 9 26 26 26 0 0 + 7 12 7 15 2 10 26 26 0 + 16 4 16 9 7 15 10 26 0 + 11 1 3 1 6 7 2 26 26 + 7 13 1 14 1 9 15 9 26 + 3 10 3 1 3 16 7 17 26 + 1 2 10 13 1 4 12 8 26 + 5 1 3 7 11 16 7 4 26 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 2 2 + +%XSEC +2 27 ! Number of groups and number of materials + !u42 UNRODDED. BURN-UP: 0.15 +2.34544E-01 9.98037E-03 7.59247E-03 9.76397E-14 1.00000E+00 5.28264E-01 1.77629E-02 +8.66255E-01 1.17854E-01 1.56179E-01 2.07650E-12 0.00000E+00 1.79595E-03 1.35588E+00 + !u42 UNRODDED. BURN-UP: 17.50 +2.34060E-01 1.05182E-02 6.37658E-03 7.98642E-14 1.00000E+00 5.29794E-01 1.73011E-02 +8.90166E-01 1.16461E-01 1.60507E-01 2.02949E-12 0.00000E+00 1.77298E-03 1.37200E+00 + !u42 UNRODDED. BURN-UP: 22.50 +2.33976E-01 1.07120E-02 6.06207E-03 7.54039E-14 1.00000E+00 5.30879E-01 1.72784E-02 +8.91182E-01 1.15242E-01 1.55663E-01 1.95013E-12 0.00000E+00 1.76810E-03 1.37396E+00 + !u42 UNRODDED. BURN-UP: 32.50 +2.34373E-01 1.10352E-02 5.49309E-03 6.74266E-14 1.00000E+00 5.33030E-01 1.73025E-02 +8.99875E-01 1.12037E-01 1.43996E-01 1.77454E-12 0.00000E+00 1.70253E-03 1.37812E+00 + !u42 UNRODDED. BURN-UP: 35.00 +2.34237E-01 1.11075E-02 5.36375E-03 6.56277E-14 1.00000E+00 5.33516E-01 1.73101E-02 +9.00204E-01 1.11068E-01 1.40842E-01 1.72910E-12 0.00000E+00 1.67425E-03 1.37876E+00 + !u42 UNRODDED. BURN-UP: 37.50 +2.34345E-01 1.11916E-02 5.24444E-03 6.39616E-14 1.00000E+00 5.34041E-01 1.73219E-02 +8.99349E-01 1.10102E-01 1.37694E-01 1.68425E-12 0.00000E+00 1.66484E-03 1.38006E+00 + !u45 UNRODDED. BURN-UP: 0.15 +2.34210E-01 1.01350E-02 7.92582E-03 1.02056E-13 1.00000E+00 5.27567E-01 1.75495E-02 +8.60367E-01 1.22015E-01 1.64920E-01 2.19279E-12 0.00000E+00 1.86721E-03 1.35489E+00 + !u45 UNRODDED. BURN-UP: 17.50 +2.34206E-01 1.06286E-02 6.67634E-03 8.38651E-14 1.00000E+00 5.29261E-01 1.71506E-02 +8.85733E-01 1.20500E-01 1.68613E-01 2.13826E-12 0.00000E+00 1.84672E-03 1.37029E+00 + !u45 UNRODDED. BURN-UP: 20.00 +2.34154E-01 1.07118E-02 6.50779E-03 8.14759E-14 1.00000E+00 5.29773E-01 1.71403E-02 +8.89900E-01 1.19930E-01 1.66382E-01 2.10039E-12 0.00000E+00 1.83478E-03 1.37185E+00 + !u45 UNRODDED. BURN-UP: 32.50 +2.34325E-01 1.11090E-02 5.75540E-03 7.09140E-14 1.00000E+00 5.32420E-01 1.71556E-02 +8.96792E-01 1.15888E-01 1.51878E-01 1.87896E-12 0.00000E+00 1.75181E-03 1.37649E+00 + !u45 UNRODDED. BURN-UP: 37.50 +2.34595E-01 1.12536E-02 5.48584E-03 6.71711E-14 1.00000E+00 5.33537E-01 1.71856E-02 +8.98788E-01 1.13996E-01 1.45567E-01 1.78784E-12 0.00000E+00 1.71294E-03 1.37816E+00 + !m40 UNRODDED. BURN-UP: 0.15 +2.34297E-01 1.17344E-02 8.31627E-03 9.69696E-14 1.00000E+00 5.19237E-01 1.51764E-02 +9.07557E-01 2.50064E-01 3.64904E-01 4.26563E-12 0.00000E+00 3.61004E-03 1.31659E+00 + !m40 UNRODDED. BURN-UP: 22.50 +2.35521E-01 1.23542E-02 6.99915E-03 8.14831E-14 1.00000E+00 5.24624E-01 1.50572E-02 +8.98229E-01 1.92322E-01 2.72063E-01 3.17327E-12 0.00000E+00 2.81240E-03 1.32071E+00 + !m40 UNRODDED. BURN-UP: 37.50 +2.36316E-01 1.26992E-02 6.25232E-03 7.26936E-14 1.00000E+00 5.27756E-01 1.51017E-02 +8.96383E-01 1.65223E-01 2.23744E-01 2.60452E-12 0.00000E+00 2.41806E-03 1.32346E+00 + !m43 UNRODDED. BURN-UP: 0.15 +2.34031E-01 1.19189E-02 8.70410E-03 1.01413E-13 1.00000E+00 5.18629E-01 1.49782E-02 +9.06947E-01 2.58500E-01 3.80820E-01 4.45107E-12 0.00000E+00 3.68292E-03 1.31752E+00 + !m43 UNRODDED. BURN-UP: 17.50 +2.34985E-01 1.24275E-02 7.64869E-03 8.90212E-14 1.00000E+00 5.22945E-01 1.48776E-02 +8.99449E-01 2.14730E-01 3.08507E-01 3.60045E-12 0.00000E+00 3.09513E-03 1.31889E+00 + !m43 UNRODDED. BURN-UP: 35.00 +2.36113E-01 1.28111E-02 6.73999E-03 7.83420E-14 1.00000E+00 5.26554E-01 1.48811E-02 +8.92584E-01 1.79408E-01 2.49055E-01 2.90054E-12 0.00000E+00 2.63490E-03 1.32215E+00 + !u42 RODDED. BURN-UP: 17.50 +2.34695E-01 1.61698E-02 6.19342E-03 7.74095E-14 1.00000E+00 5.20833E-01 1.36187E-02 +8.73850E-01 1.52942E-01 1.68689E-01 2.13010E-12 0.00000E+00 2.19889E-03 1.30693E+00 + !u42 RODDED. BURN-UP: 22.50 +2.34714E-01 1.63306E-02 5.89870E-03 7.32239E-14 1.00000E+00 5.21501E-01 1.35653E-02 +8.84962E-01 1.51976E-01 1.64038E-01 2.05224E-12 0.00000E+00 2.16935E-03 1.30942E+00 + !u42 RODDED. BURN-UP: 32.50 +2.34896E-01 1.65954E-02 5.36541E-03 6.56794E-14 1.00000E+00 5.22690E-01 1.35122E-02 +8.88244E-01 1.49124E-01 1.52796E-01 1.88079E-12 0.00000E+00 2.11930E-03 1.31245E+00 + !u42 RODDED. BURN-UP: 35.00 +2.34783E-01 1.66647E-02 5.24655E-03 6.40043E-14 1.00000E+00 5.22934E-01 1.34932E-02 +8.94907E-01 1.48362E-01 1.49704E-01 1.83585E-12 0.00000E+00 2.12155E-03 1.31299E+00 + !u42 RODDED. BURN-UP: 37.50 +2.35069E-01 1.67194E-02 5.13258E-03 6.24168E-14 1.00000E+00 5.23230E-01 1.34902E-02 +8.95411E-01 1.47265E-01 1.46659E-01 1.79199E-12 0.00000E+00 2.11397E-03 1.31437E+00 + !u45 RODDED. BURN-UP: 0.15 +2.34908E-01 1.58219E-02 7.65195E-03 9.83508E-14 1.00000E+00 5.18746E-01 1.38168E-02 +8.55500E-01 1.54259E-01 1.70693E-01 2.26951E-12 0.00000E+00 2.22653E-03 1.29336E+00 + !u45 RODDED. BURN-UP: 20.00 +2.34623E-01 1.63177E-02 6.32396E-03 7.90279E-14 1.00000E+00 5.20700E-01 1.34727E-02 +8.80177E-01 1.56871E-01 1.75038E-01 2.20669E-12 0.00000E+00 2.26112E-03 1.30590E+00 + !u45 RODDED. BURN-UP: 37.50 +2.35039E-01 1.67724E-02 5.36125E-03 6.54697E-14 1.00000E+00 5.22934E-01 1.33871E-02 +8.90765E-01 1.51366E-01 1.54621E-01 1.89692E-12 0.00000E+00 2.15770E-03 1.31257E+00 +! reflector +2.52078E-01 2.28946E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.28598E-01 2.84275E-02 +1.32879E+00 3.79706E-02 0.00000E+00 0.00000E+00 0.00000E+00 6.83220E-04 1.98425E+00 +! reflector (axial) +1.71190E-01 1.00281E-03 0.00000E+00 0.00000E+00 0.00000E+00 6.66798E-01 4.35628E-02 +1.36174E+00 2.99824E-02 0.00000E+00 0.00000E+00 0.00000E+00 4.54319E-04 2.08645E+00 + +%ADF +!g1 -> east west north south +!g2 -> east west north south + !u42 UNRODDED. BURN-UP: 0.15 +1.00820E+00 1.00820E+00 1.00820E+00 1.00820E+00 1.00000E+00 1.00000E+00 +1.02765E+00 1.02765E+00 1.02765E+00 1.02765E+00 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 17.50 +1.00121E+00 1.00121E+00 1.00121E+00 1.00121E+00 1.00000E+00 1.00000E+00 +9.65625E-01 9.65625E-01 9.65625E-01 9.65625E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 22.50 +9.99939E-01 9.99939E-01 9.99939E-01 9.99939E-01 1.00000E+00 1.00000E+00 +9.58700E-01 9.58700E-01 9.58700E-01 9.58700E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 32.50 +1.00216E+00 1.00216E+00 1.00216E+00 1.00216E+00 1.00000E+00 1.00000E+00 +9.52719E-01 9.52719E-01 9.52719E-01 9.52719E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 35.00 +1.00257E+00 1.00257E+00 1.00257E+00 1.00257E+00 1.00000E+00 1.00000E+00 +9.49727E-01 9.49727E-01 9.49727E-01 9.49727E-01 1.00000E+00 1.00000E+00 + !u42 UNRODDED. BURN-UP: 37.50 +1.00347E+00 1.00347E+00 1.00347E+00 1.00347E+00 1.00000E+00 1.00000E+00 +9.46229E-01 9.46229E-01 9.46229E-01 9.46229E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 0.15 +1.00854E+00 1.00854E+00 1.00854E+00 1.00854E+00 1.00000E+00 1.00000E+00 +1.02661E+00 1.02661E+00 1.02661E+00 1.02661E+00 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 17.50 +1.00053E+00 1.00053E+00 1.00053E+00 1.00053E+00 1.00000E+00 1.00000E+00 +9.67569E-01 9.67569E-01 9.67569E-01 9.67569E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 20.00 +1.00046E+00 1.00046E+00 1.00046E+00 1.00046E+00 1.00000E+00 1.00000E+00 +9.63609E-01 9.63609E-01 9.63609E-01 9.63609E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 32.50 +1.00191E+00 1.00191E+00 1.00191E+00 1.00191E+00 1.00000E+00 1.00000E+00 +9.50400E-01 9.50400E-01 9.50400E-01 9.50400E-01 1.00000E+00 1.00000E+00 + !u45 UNRODDED. BURN-UP: 37.50 +1.00248E+00 1.00248E+00 1.00248E+00 1.00248E+00 1.00000E+00 1.00000E+00 +9.46750E-01 9.46750E-01 9.46750E-01 9.46750E-01 1.00000E+00 1.00000E+00 + !m40 UNRODDED. BURN-UP: 0.15 +1.00099E+00 1.00099E+00 1.00099E+00 1.00099E+00 1.00000E+00 1.00000E+00 +1.33012E+00 1.33012E+00 1.33012E+00 1.33012E+00 1.00000E+00 1.00000E+00 + !m40 UNRODDED. BURN-UP: 22.50 +9.87912E-01 9.87912E-01 9.87912E-01 9.87912E-01 1.00000E+00 1.00000E+00 +1.18136E+00 1.18136E+00 1.18136E+00 1.18136E+00 1.00000E+00 1.00000E+00 + !m40 UNRODDED. BURN-UP: 37.50 +9.88934E-01 9.88934E-01 9.88934E-01 9.88934E-01 1.00000E+00 1.00000E+00 +1.12555E+00 1.12555E+00 1.12555E+00 1.12555E+00 1.00000E+00 1.00000E+00 + !m43 UNRODDED. BURN-UP: 0.15 +9.98132E-01 9.98132E-01 9.98132E-01 9.98132E-01 1.00000E+00 1.00000E+00 +1.37061E+00 1.37061E+00 1.37061E+00 1.37061E+00 1.00000E+00 1.00000E+00 + !m43 UNRODDED. BURN-UP: 17.50 +9.90490E-01 9.90490E-01 9.90490E-01 9.90490E-01 1.00000E+00 1.00000E+00 +1.26002E+00 1.26002E+00 1.26002E+00 1.26002E+00 1.00000E+00 1.00000E+00 + !m43 UNRODDED. BURN-UP: 35.00 +9.86466E-01 9.86466E-01 9.86466E-01 9.86466E-01 1.00000E+00 1.00000E+00 +1.17609E+00 1.17609E+00 1.17609E+00 1.17609E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 17.50 +1.06443E+00 1.06443E+00 1.06443E+00 1.06443E+00 1.00000E+00 1.00000E+00 +1.37474E+00 1.37474E+00 1.37474E+00 1.37474E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 22.50 +1.06421E+00 1.06421E+00 1.06421E+00 1.06421E+00 1.00000E+00 1.00000E+00 +1.37383E+00 1.37383E+00 1.37383E+00 1.37383E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 32.50 +1.06747E+00 1.06747E+00 1.06747E+00 1.06747E+00 1.00000E+00 1.00000E+00 +1.36334E+00 1.36334E+00 1.36334E+00 1.36334E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 35.00 +1.06752E+00 1.06752E+00 1.06752E+00 1.06752E+00 1.00000E+00 1.00000E+00 +1.36214E+00 1.36214E+00 1.36214E+00 1.36214E+00 1.00000E+00 1.00000E+00 + !u42 RODDED. BURN-UP: 37.50 +1.06786E+00 1.06786E+00 1.06786E+00 1.06786E+00 1.00000E+00 1.00000E+00 +1.35987E+00 1.35987E+00 1.35987E+00 1.35987E+00 1.00000E+00 1.00000E+00 + !u45 RODDED. BURN-UP: 0.15 +1.06915E+00 1.06915E+00 1.06915E+00 1.06915E+00 1.00000E+00 1.00000E+00 +1.42485E+00 1.42485E+00 1.42485E+00 1.42485E+00 1.00000E+00 1.00000E+00 + !u45 RODDED. BURN-UP: 20.00 +1.06390E+00 1.06390E+00 1.06390E+00 1.06390E+00 1.00000E+00 1.00000E+00 +1.37502E+00 1.37502E+00 1.37502E+00 1.37502E+00 1.00000E+00 1.00000E+00 + !u45 RODDED. BURN-UP: 37.50 +1.06716E+00 1.06716E+00 1.06716E+00 1.06716E+00 1.00000E+00 1.00000E+00 +1.36005E+00 1.36005E+00 1.36005E+00 1.36005E+00 1.00000E+00 1.00000E+00 +! reflector +1.22730E+00 1.22730E+00 1.22730E+00 1.22730E+00 1.00000E+00 1.00000E+00 +2.40027E-01 2.40027E-01 2.40027E-01 2.40027E-01 1.00000E+00 1.00000E+00 +! reflector (axial) +1.01082E+00 1.01082E+00 1.01082E+00 1.01082E+00 1.00000E+00 1.00000E+00 +1.03533E+00 1.03533E+00 1.03533E+00 1.03533E+00 1.00000E+00 1.00000E+00 + 0 ! ADF INPUTS END + 1 diff --git a/smpl/static/MOX/part2_helios b/smpl/static/MOX/part2_helios new file mode 100644 index 0000000..ed3a6b7 --- /dev/null +++ b/smpl/static/MOX/part2_helios @@ -0,0 +1,78 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION + +%MODE +BCSEARCH + +! CASE CARD +%CASE +MOX_HEL_P2 +PWR Transient UO2/MOX Benchmark (with XS benchmark) - Part2 + + +! XSEC CARD +%XTAB +2 18 ! Number of groups and number of materials +! XTAB files for each material +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 1 !MAT 1 : u42u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 2 !MAT 2 : u42u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 4 !MAT 3 : u42u 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 5 !MAT 4 : u42u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 6 !MAT 5 : u42u 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 7 !MAT 6 : u42u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 1 !MAT 7 : u45u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 2 !MAT 8 : u45u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 3 !MAT 9 : u45u 20.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 5 !MAT 10: u45u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 7 !MAT 11: u45u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 1 !MAT 12: m40m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 4 !MAT 13: m40m 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 7 !MAT 14: m40m 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 1 !MAT 15: m43m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 2 !MAT 16: m43m 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 6 !MAT 17: m43m 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_refl 1 !MAT 18: REFLECTOR +1 + +%GEOM +9 9 22 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +21.42 20*18.288 21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +2 !np number of planar type +2 20*1 2 + +! Planar_type_1 +18 18 18 18 18 0 0 0 0 + 4 8 17 9 18 18 18 0 0 + 7 12 7 15 2 10 18 18 0 +16 4 16 9 7 15 10 18 0 +11 1 3 1 6 7 2 18 18 + 7 13 1 14 1 9 15 9 18 + 3 10 3 1 3 16 7 17 18 + 1 2 10 13 1 4 12 8 18 + 5 1 3 7 11 16 7 4 18 +! Planar_type_2 +18 18 18 18 18 0 0 0 0 +18 18 18 18 18 18 18 0 0 +18 18 18 18 18 18 18 18 0 +18 18 18 18 18 18 18 18 0 +18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 0 0 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +891.25e6 ! Reactor thermal power for quarter geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/MOX/part2_serpent b/smpl/static/MOX/part2_serpent new file mode 100644 index 0000000..76544c3 --- /dev/null +++ b/smpl/static/MOX/part2_serpent @@ -0,0 +1,79 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION + +%MODE +BCSEARCH + +! CASE CARD +%CASE +MOX_SER_P2 +PWR Transient UO2/MOX Benchmark (with XS benchmark) - Part2 + +! XSEC CARD +%XTAB +2 19 ! Number of groups and number of materials +! XTAB files for each material +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 1 !MAT 1 : u42u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 2 !MAT 2 : u42u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 4 !MAT 3 : u42u 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 5 !MAT 4 : u42u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 6 !MAT 5 : u42u 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 7 !MAT 6 : u42u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 1 !MAT 7 : u45u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 2 !MAT 8 : u45u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 3 !MAT 9 : u45u 20.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 5 !MAT 10: u45u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 7 !MAT 11: u45u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 1 !MAT 12: m40m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 4 !MAT 13: m40m 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 7 !MAT 14: m40m 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 1 !MAT 15: m43m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 2 !MAT 16: m43m 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 6 !MAT 17: m43m 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refr.tab 1 !MAT 18: RADIAL REFLECTOR +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refa.tab 1 !MAT 19: AXIAL REFLECTOR +1 + +%GEOM +9 9 22 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +21.42 20*18.288 21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +2 !np number of planar type +2 20*1 2 + +! Planar_type_1 +18 18 18 18 18 0 0 0 0 + 4 8 17 9 18 18 18 0 0 + 7 12 7 15 2 10 18 18 0 +16 4 16 9 7 15 10 18 0 +11 1 3 1 6 7 2 18 18 + 7 13 1 14 1 9 15 9 18 + 3 10 3 1 3 16 7 17 18 + 1 2 10 13 1 4 12 8 18 + 5 1 3 7 11 16 7 4 18 + + ! Planar_type_2 + 19 19 19 19 19 0 0 0 0 + 19 19 19 19 19 19 19 0 0 + 19 19 19 19 19 19 19 19 0 + 19 19 19 19 19 19 19 19 0 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 0 0 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +891.25e6 ! Reactor thermal power for quarter geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/MOX/part3_helios b/smpl/static/MOX/part3_helios new file mode 100644 index 0000000..48231c1 --- /dev/null +++ b/smpl/static/MOX/part3_helios @@ -0,0 +1,94 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION + +%MODE +BCSEARCH + +! CASE CARD +%CASE +MOX_HEL_P3 +PWR Transient UO2/MOX Benchmark (with XS benchmark) - Part3 + +! XSEC CARD +%XTAB +2 18 ! Number of groups and number of materials +! XTAB files for each material +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 1 !MAT 1 : u42u 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 2 !MAT 2 : u42u 17.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 4 !MAT 3 : u42u 22.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 5 !MAT 4 : u42u 32.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 6 !MAT 5 : u42u 35.0 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 7 !MAT 6 : u42u 37.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 1 !MAT 7 : u45u 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 2 !MAT 8 : u45u 17.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 3 !MAT 9 : u45u 20.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 5 !MAT 10: u45u 32.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 7 !MAT 11: u45u 37.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 1 !MAT 12: m40m 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 4 !MAT 13: m40m 22.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 7 !MAT 14: m40m 37.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 1 !MAT 15: m43m 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 2 !MAT 16: m43m 17.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 6 !MAT 17: m43m 35.0 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_refl 1 !MAT 18: REFLECTOR + +%GEOM +9 9 22 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly ddivision +21.42 20*18.288 21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +2 !np number of planar type +2 20*1 2 + +! Planar_type_1 +18 18 18 18 18 0 0 0 0 + 4 8 17 9 18 18 18 0 0 + 7 12 7 15 2 10 18 18 0 +16 4 16 9 7 15 10 18 0 +11 1 3 1 6 7 2 18 18 + 7 13 1 14 1 9 15 9 18 + 3 10 3 1 3 16 7 17 18 + 1 2 10 13 1 4 12 8 18 + 5 1 3 7 11 16 7 4 18 + + ! Planar_type_2 + 18 18 18 18 18 0 0 0 0 + 18 18 18 18 18 18 18 0 0 + 18 18 18 18 18 18 18 18 0 + 18 18 18 18 18 18 18 18 0 + 18 18 18 18 18 18 18 18 18 + 18 18 18 18 18 18 18 18 18 + 18 18 18 18 18 18 18 18 18 + 18 18 18 18 18 18 18 18 18 + 18 18 18 18 18 18 18 18 18 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 0 0 + +! CONTROL CARD +%CROD +8 200. ! Number of CR banks and max number of banks +21.42 1.8288 ! Zero step pos. (cm) and cm/step (total 200 steps) +0. 0. 0. 0. 200. 200. 200. 200. ! CR Bank pos. +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +3 0 2 0 5 0 0 0 0 +0 6 0 7 0 0 0 0 0 +8 0 0 0 4 0 5 0 0 +0 0 0 0 0 7 0 0 0 +1 0 3 0 0 0 2 0 0 +0 0 0 0 0 6 0 0 0 +4 0 1 0 8 0 3 0 0 +1 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +891.25e6 ! Reactor thermal power for full geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/MOX/part3_serpent b/smpl/static/MOX/part3_serpent new file mode 100644 index 0000000..4ca1f68 --- /dev/null +++ b/smpl/static/MOX/part3_serpent @@ -0,0 +1,99 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION + +%MODE +BCSEARCH + +! CASE CARD +%CASE +MOX_SER_P3 +PWR Transient UO2/MOX Benchmark (with XS benchmark) - Part3 + +%GEOM +9 9 22 !nx, ny, nz +10.71 8*21.42 !x-direction assembly size in cm +1 8*2 !x-direction assembly division +10.71 8*21.42 !y-direction assembly size in cm +1 8*2 !y-direction assembly division +21.42 20*18.288 21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +2 !np number of planar type +2 20*1 2 + +! Planar_type_1 +18 18 18 18 18 0 0 0 0 + 4 8 17 9 18 18 18 0 0 + 7 12 7 15 2 10 18 18 0 +16 4 16 9 7 15 10 18 0 +11 1 3 1 6 7 2 18 18 + 7 13 1 14 1 9 15 9 18 + 3 10 3 1 3 16 7 17 18 + 1 2 10 13 1 4 12 8 18 + 5 1 3 7 11 16 7 4 18 + + ! Planar_type_2 + 19 19 19 19 19 0 0 0 0 + 19 19 19 19 19 19 19 0 0 + 19 19 19 19 19 19 19 19 0 + 19 19 19 19 19 19 19 19 0 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + 19 19 19 19 19 19 19 19 19 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 0 2 0 0 + +! CONTROL CARD +%CROD +8 200. ! Number of CR banks and max number of banks +21.42 1.8288 ! Zero step pos. (cm) and cm/step (total 200 steps) +0. 0. 0. 0. 200. 200. 200. 200. ! CR Bank pos. +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +3 0 2 0 5 0 0 0 0 +0 6 0 7 0 0 0 0 0 +8 0 0 0 4 0 5 0 0 +0 0 0 0 0 7 0 0 0 +1 0 3 0 0 0 2 0 0 +0 0 0 0 0 6 0 0 0 +4 0 1 0 8 0 3 0 0 +1 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +891.25e6 ! Reactor thermal power for full geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + + +! XSEC CARD +%XTAB +2 19 ! Number of groups and number of materials +! XTAB files for each material +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 1 !MAT 1 : u42u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 2 !MAT 2 : u42u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 4 !MAT 3 : u42u 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 5 !MAT 4 : u42u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 6 !MAT 5 : u42u 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 7 !MAT 6 : u42u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 1 !MAT 7 : u45u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 2 !MAT 8 : u45u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 3 !MAT 9 : u45u 20.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 5 !MAT 10: u45u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 7 !MAT 11: u45u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 1 !MAT 12: m40m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 4 !MAT 13: m40m 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 7 !MAT 14: m40m 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 1 !MAT 15: m43m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 2 !MAT 16: m43m 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 6 !MAT 17: m43m 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refr.tab 1 !MAT 18: RADIAL REFLECTOR +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refa.tab 1 !MAT 19: AXIAL REFLECTOR + +%ITER +800 2 1.e-5 1.e-5 5 20 20 40 diff --git a/smpl/static/NEACRP/A1 b/smpl/static/NEACRP/A1 new file mode 100644 index 0000000..e63b3d4 --- /dev/null +++ b/smpl/static/NEACRP/A1 @@ -0,0 +1,83 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case A1 +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_xsec + +! GEOMETRY CARD +%GEOM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_geom + +! CRITICAL BORON SEARCH CARD +%CBCS +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cbcs + +! FUEL TEMPERATURE CARD +%FTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_ftem + +! MODERATOR TEMPERATURE CARD +%MTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_mtem + +! COOLANT DENSITY CARD +%CDEN +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cden + +! CONTROL ROD CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 0. 0. 228. 0. 0. 0. ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/NEACRP/A2 b/smpl/static/NEACRP/A2 new file mode 100644 index 0000000..218a63b --- /dev/null +++ b/smpl/static/NEACRP/A2 @@ -0,0 +1,82 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case A2 +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_xsec + +! GEOMETRY CARD +%GEOM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_geom + +! CRITICAL BORON SEARCH CARD +%CBCS +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cbcs + +! FUEL TEMPERATURE CARD +%FTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_ftem + +! MODERATOR TEMPERATURE CARD +%MTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_mtem + +! COOLANT DENSITY CARD +%CDEN +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cden + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +100.00 200.00 100.00 200.00 200.00 200.00 200.00 ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT diff --git a/smpl/static/NEACRP/B1 b/smpl/static/NEACRP/B1 new file mode 100644 index 0000000..d71d39b --- /dev/null +++ b/smpl/static/NEACRP/B1 @@ -0,0 +1,86 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case B1 +10.803 CM NODE SIZE + +%ITER +500 2 1.e-5 1.e-5 5 20 20 40 + +! XSEC CARD +%XSEC +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_xsec + +! GEOMETRY CARD +%GEOM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_geom + +! CRITICAL BORON SEARCH CARD +%CBCS +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cbcs + +! FUEL TEMPERATURE CARD +%FTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_ftem + +! MODERATOR TEMPERATURE CARD +%MTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_mtem + +! COOLANT DENSITY CARD +%CDEN +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cden + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 228. 0. 228. 0. 228. 228. ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/NEACRP/B2 b/smpl/static/NEACRP/B2 new file mode 100644 index 0000000..748d671 --- /dev/null +++ b/smpl/static/NEACRP/B2 @@ -0,0 +1,86 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case B2 +10.803 CM NODE SIZE + +%ITER +500 2 1.e-5 1.e-5 5 30 20 60 + +! XSEC CARD +%XSEC +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_xsec + +! GEOMETRY CARD +%GEOM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_geom + +! CRITICAL BORON SEARCH CARD +%CBCS +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cbcs + +! FUEL TEMPERATURE CARD +%FTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_ftem + +! MODERATOR TEMPERATURE CARD +%MTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_mtem + +! COOLANT DENSITY CARD +%CDEN +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cden + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +150.00 200.00 150.00 200.00 200.00 200.00 200.00 ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/NEACRP/C1 b/smpl/static/NEACRP/C1 new file mode 100644 index 0000000..77a95e8 --- /dev/null +++ b/smpl/static/NEACRP/C1 @@ -0,0 +1,126 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case C1 +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_xsec + +! CRITICAL BORON SEARCH CARD +%CBCS +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cbcs + +! FUEL TEMPERATURE CARD +%FTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_ftem + +! MODERATOR TEMPERATURE CARD +%MTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_mtem + +! COOLANT DENSITY CARD +%CDEN +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cden + +! GEOMETRY CARD +%GEOM +17 9 18 !nx, ny, nz +17*21.606 !x-direction assembly size in cm + 17*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 3 1 1 1 1 1 1 1 1 1 1 1 1 1 3 2 +0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 +0 2 3 1 1 1 1 1 1 1 1 1 1 1 3 2 0 +0 0 2 3 1 1 1 1 1 1 1 1 1 3 2 0 0 +0 0 0 2 3 1 1 1 1 1 1 1 3 2 0 0 0 +0 0 0 0 2 2 3 1 1 1 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 +2 6 4 5 4 5 4 5 4 5 4 5 4 5 4 6 2 +2 6 6 4 5 4 5 4 5 4 5 4 5 4 6 6 2 +2 3 6 5 4 5 4 5 4 5 4 5 4 5 6 3 2 +0 2 6 6 5 4 5 4 5 4 5 4 5 6 6 2 0 +0 2 3 6 4 5 4 5 4 5 4 5 4 6 3 2 0 +0 0 2 3 6 6 5 4 5 4 5 6 6 3 2 0 0 +0 0 0 2 3 6 6 6 4 6 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 +2 6 4 7 4 9 4 9 4 9 4 9 4 7 4 6 2 +2 6 11 4 8 4 8 4 9 4 8 4 8 4 11 6 2 +2 3 6 8 4 8 4 8 4 8 4 8 4 8 6 3 2 +0 2 6 10 8 4 8 4 9 4 8 4 8 10 6 2 0 +0 2 3 6 4 8 4 8 4 8 4 8 4 6 3 2 0 +0 0 2 3 6 10 8 4 7 4 8 10 6 3 2 0 0 +0 0 0 2 3 6 6 11 4 11 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 2 0 0 0 + +! CONTROL CARD +%CROD +8 228. ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 0. 0. 228. 0. 228. 0. 0. ! CR Bank pos. +0 0 3 0 0 0 2 0 1 0 2 0 0 0 8 0 0 +0 0 0 6 0 0 0 4 0 4 0 0 0 6 0 0 0 +0 0 6 0 6 0 5 0 2 0 5 0 6 0 6 0 0 +0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 +0 0 0 0 7 0 6 0 0 0 6 0 7 0 0 0 0 +0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 0 0 +0 0 0 0 0 0 6 0 3 0 6 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +1387.5e6 ! Reactor thermal power for half geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%ITER +800 2 1.e-5 1.e-5 5 20 20 40 diff --git a/smpl/static/NEACRP/C2 b/smpl/static/NEACRP/C2 new file mode 100644 index 0000000..7af2c6e --- /dev/null +++ b/smpl/static/NEACRP/C2 @@ -0,0 +1,126 @@ +! CRITICAL BORON CONCENTRATION SEARCH CALCULATION +! FOR PWR NEACRP BENCHMARK +%MODE +BCSEARCH + +! CASE CARD +%CASE +NEACRP Critical Boron Concentration Search - Case C2 +10.803 CM NODE SIZE + +%ITER +800 2 1.e-5 1.e-5 5 40 60 80 + +! XSEC CARD +%XSEC +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_xsec + +! CRITICAL BORON SEARCH CARD +%CBCS +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cbcs + +! FUEL TEMPERATURE CARD +%FTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_ftem + +! MODERATOR TEMPERATURE CARD +%MTEM +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_mtem + +! COOLANT DENSITY CARD +%CDEN +FILE /home/imronuke/ADPRES/smpl/static/NEACRP/neacrp_cden + +! GEOMETRY CARD +%GEOM +17 9 18 !nx, ny, nz +17*21.606 !x-direction assembly size in cm + 17*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 3 1 1 1 1 1 1 1 1 1 1 1 1 1 3 2 +0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 +0 2 3 1 1 1 1 1 1 1 1 1 1 1 3 2 0 +0 0 2 3 1 1 1 1 1 1 1 1 1 3 2 0 0 +0 0 0 2 3 1 1 1 1 1 1 1 3 2 0 0 0 +0 0 0 0 2 2 3 1 1 1 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 +2 6 4 5 4 5 4 5 4 5 4 5 4 5 4 6 2 +2 6 6 4 5 4 5 4 5 4 5 4 5 4 6 6 2 +2 3 6 5 4 5 4 5 4 5 4 5 4 5 6 3 2 +0 2 6 6 5 4 5 4 5 4 5 4 5 6 6 2 0 +0 2 3 6 4 5 4 5 4 5 4 5 4 6 3 2 0 +0 0 2 3 6 6 5 4 5 4 5 6 6 3 2 0 0 +0 0 0 2 3 6 6 6 4 6 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 +2 6 4 7 4 9 4 9 4 9 4 9 4 7 4 6 2 +2 6 11 4 8 4 8 4 9 4 8 4 8 4 11 6 2 +2 3 6 8 4 8 4 8 4 8 4 8 4 8 6 3 2 +0 2 6 10 8 4 8 4 9 4 8 4 8 10 6 2 0 +0 2 3 6 4 8 4 8 4 8 4 8 4 6 3 2 0 +0 0 2 3 6 10 8 4 7 4 8 10 6 3 2 0 0 +0 0 0 2 3 6 6 11 4 11 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 2 0 0 0 + +! CONTROL CARD +%CROD +8 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +100. 200. 100. 200. 200. 200. 200. 100. ! CR Bank pos. +0 0 3 0 0 0 2 0 1 0 2 0 0 0 8 0 0 +0 0 0 6 0 0 0 4 0 4 0 0 0 6 0 0 0 +0 0 6 0 6 0 5 0 2 0 5 0 6 0 6 0 0 +0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 +0 0 0 0 7 0 6 0 0 0 6 0 7 0 0 0 0 +0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 0 0 +0 0 0 0 0 0 6 0 3 0 6 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +1387.5e6 ! Reactor thermal power for half geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 diff --git a/smpl/static/NEACRP/neacrp_cbcs b/smpl/static/NEACRP/neacrp_cbcs new file mode 100644 index 0000000..30113a4 --- /dev/null +++ b/smpl/static/NEACRP/neacrp_cbcs @@ -0,0 +1,25 @@ +1200.2 ! Boron concentration ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 diff --git a/smpl/static/NEACRP/neacrp_cden b/smpl/static/NEACRP/neacrp_cden new file mode 100644 index 0000000..4892577 --- /dev/null +++ b/smpl/static/NEACRP/neacrp_cden @@ -0,0 +1,26 @@ +! CDEN CARD FILE +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 diff --git a/smpl/static/NEACRP/neacrp_ftem b/smpl/static/NEACRP/neacrp_ftem new file mode 100644 index 0000000..0a4e85a --- /dev/null +++ b/smpl/static/NEACRP/neacrp_ftem @@ -0,0 +1,26 @@ +! FTEM CARD FILE +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 diff --git a/smpl/static/NEACRP/neacrp_geom b/smpl/static/NEACRP/neacrp_geom new file mode 100644 index 0000000..b86a0ec --- /dev/null +++ b/smpl/static/NEACRP/neacrp_geom @@ -0,0 +1,42 @@ +! GEOM CARD FILE +9 9 18 !nx, ny, nz +10.803 8*21.606 !x-direction assembly size in cm + 1 8*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 3 2 + 1 1 1 1 1 1 1 2 0 + 1 1 1 1 1 1 3 2 0 + 1 1 1 1 1 3 2 0 0 + 1 1 1 1 3 2 0 0 0 + 1 1 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 + 4 5 4 5 4 5 4 6 2 + 5 4 5 4 5 4 6 6 2 + 4 5 4 5 4 5 6 3 2 + 5 4 5 4 5 6 6 2 0 + 4 5 4 5 4 6 3 2 0 + 5 4 5 6 6 3 2 0 0 + 4 6 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 + 4 9 4 9 4 7 4 6 2 + 9 4 8 4 8 4 11 6 2 + 4 8 4 8 4 8 6 3 2 + 9 4 8 4 8 10 6 2 0 + 4 8 4 8 4 6 3 2 0 + 7 4 8 10 6 3 2 0 0 + 4 11 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 2 0 0 0 diff --git a/smpl/static/NEACRP/neacrp_mtem b/smpl/static/NEACRP/neacrp_mtem new file mode 100644 index 0000000..7ae756b --- /dev/null +++ b/smpl/static/NEACRP/neacrp_mtem @@ -0,0 +1,26 @@ +! MTEM CARD FILE +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 diff --git a/smpl/static/NEACRP/neacrp_xsec b/smpl/static/NEACRP/neacrp_xsec new file mode 100644 index 0000000..1e8817e --- /dev/null +++ b/smpl/static/NEACRP/neacrp_xsec @@ -0,0 +1,25 @@ +! XSEC CARD FILE +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 diff --git a/smpl/static/PNM b/smpl/static/PNM new file mode 100644 index 0000000..a879935 --- /dev/null +++ b/smpl/static/PNM @@ -0,0 +1,50 @@ +! IAEA2D input data with PNM kernel + +! Mode card +%MODE +FORWARD + +! Case card +%CASE +IAEA2D +IAEA2D Benchmark With 2x2 nodes/FA with Polynomial Nodal Method + +! Kernel Card +%KERN +PNM + +! Cross-sections card +%XSEC +2 4 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.080032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 1 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.085032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 2 +0.222222 0.010120 0.000000 0.000000 1.000000 0.000000 0.020000 +0.833333 0.130032 0.135000 0.135000 0.000000 0.000000 0.000000 ! COMPOSITION 3 +0.166667 0.000160 0.000000 0.000000 1.000000 0.000000 0.040000 +1.111111 0.010024 0.000000 0.000000 0.000000 0.000000 0.000000 ! COMPOSITION 4 +! Geometry card +%GEOM +9 9 2 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*20.0 10.0 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +2*10.0 !z-direction assembly in cm +2*1 !z-direction nodal is not divided +1 !np number of planar type +2*1 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 2 2 diff --git a/smpl/static/adjoint b/smpl/static/adjoint new file mode 100644 index 0000000..c1e54a9 --- /dev/null +++ b/smpl/static/adjoint @@ -0,0 +1,74 @@ +! IAEA3D Adjoint input data + +%MODE +ADJOINT + +%CASE +IAEA3D +ADJOINT PROBLEM WITH 10 CM NODE SIZE + +%XSEC +2 5 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.080 0.135 0.135 0.0 0.000 0.7533 ! MAT1 : Outer Fuel +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.085 0.135 0.135 0.0 0.000 0.7483 ! MAT2 : Inner Fuel +0.222222 0.0100 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.1300 0.135 0.135 0.0 0.000 0.7033 ! MAT3 : Inner Fuel + Control Rod +0.166667 0.000 0.000 0.000 0.0 0.1267 0.040 +1.111111 0.010 0.000 0.000 0.0 0.000 1.1011 ! MAT4 : Reflector +0.166667 0.000 0.000 0.000 0.0 0.000 0.040 +1.111111 0.055 0.000 0.000 0.0 0.000 0.000 ! MAT5 : Reflector + Control Rod +%GEOM +9 9 19 !nx, ny, nz +10.0 8*20.0 !x-direction assembly size in cm +1 8*2 !x-direction assembly divided into 2 (10 cm each) +8*20.0 10.0 !y-direction assembly size in cm +8*2 1 !y-direction assembly divided into 2 (10 cm each) +19*20.0 !z-direction assembly in cm +19*1 !z-direction nodal is not divided +4 !np number of planar type +1 13*2 4*3 4 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_2 (Fuel) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_3 (Fuel+Partial Control Rods) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 3 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_4 (Top reflectors) + 5 4 4 4 5 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 5 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 5 4 4 4 5 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 1 1 diff --git a/smpl/static/fixed_source b/smpl/static/fixed_source new file mode 100644 index 0000000..c4e68b3 --- /dev/null +++ b/smpl/static/fixed_source @@ -0,0 +1,90 @@ +! IAEA3D Fixed Source input data +! NODE SIZE = 20 cm + +%MODE +FIXEDSRC +%CASE +IAEA3D +20 CM NODE SIZE +% XSEC +2 5 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.080 0.0675 0.0675 0.0 0.000 0.7533 ! MAT1 : Outer Fuel +0.222222 0.010 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.085 0.0675 0.0675 0.0 0.000 0.7483 ! MAT2 : Inner Fuel +0.222222 0.0100 0.000 0.000 1.0 0.1922 0.020 +0.833333 0.1300 0.0675 0.0675 0.0 0.000 0.7033 ! MAT3 : Inner Fuel + Control Rod +0.166667 0.000 0.000 0.000 0.0 0.1267 0.040 +1.111111 0.010 0.000 0.000 0.0 0.000 1.1011 ! MAT4 : Reflector +0.166667 0.000 0.000 0.000 0.0 0.000 0.040 +1.111111 0.055 0.000 0.000 0.0 0.000 0.000 ! MAT5 : Reflector + Control Rod +%GEOM +9 9 19 !nx, ny, nz +10. 8*20. !x-direction assembly size in cm +1 8*1 !x-direction assembly divided into 20 cm each +8*20. 10. !y-direction assembly size in cm +8*1 1 !y-direction assembly divided into 20 cm each +19*20. !z-direction nodal in cm +19*1 !z-direction assembly divided into 20 cm each +4 !np number of planar type +1 13*2 4*3 4 !planar assignment (from bottom to top) +! Planar_type_1 (Bottom Reflector) + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_2 (Fuel) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 2 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_3 (Fuel+Partial Control Rods) + 3 2 2 2 3 2 2 1 4 + 2 2 2 2 2 2 2 1 4 + 2 2 3 2 2 2 1 1 4 + 2 2 2 2 2 2 1 4 4 + 3 2 2 2 3 1 1 4 0 + 2 2 2 2 1 1 4 4 0 + 2 2 1 1 1 4 4 0 0 + 1 1 1 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Planar_type_4 (Top reflectors) + 5 4 4 4 5 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 4 4 5 4 4 4 4 4 4 + 4 4 4 4 4 4 4 4 4 + 5 4 4 4 5 4 4 4 0 + 4 4 4 4 4 4 4 4 0 + 4 4 4 4 4 4 4 0 0 + 4 4 4 4 4 4 0 0 0 + 4 4 4 4 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 2 1 1 1 +%ESRC +2 ! Number of source +! Repeat this input segment according to the number of sources +100000. ! Source Density (n/cm3.s) +1.0 0.0 ! Source energy spectrum +10 ! z-position of the source +2 9 ! x-y position of the source +2 8 +1 8 +0 0 ! x-y position ends +0 ! z-position ends +200000. ! Source Density (n/cm3.s) +1.0 0.0 ! Source energy spectrum +10 ! z-position of the source +1 9 ! x-y position of the source +0 0 ! x-y position ends +0 ! z-position ends diff --git a/smpl/transient/LMW b/smpl/transient/LMW new file mode 100644 index 0000000..e827364 --- /dev/null +++ b/smpl/transient/LMW @@ -0,0 +1,84 @@ +! TRANSIENT LMW BENCHMARK INPUT DATA +%MODE +RODEJECT +%CASE +LMW TRANSIENT +20 CM NODE SIZE + +% XSEC +2 3 ! Number of groups and number of materials +! sigtr siga nu*sigf sigf chi sigs_g1 sigs_g2 +0.2340967 0.01040206 0.006478 0.006478 1.0 0.0 0.017556 +0.9355255 0.08766217 0.112733 0.112733 0.0 0.0 0.000000 ! MAT 1 (INNER CORE) +0.2338179 0.01099263 0.007503 0.007503 1.0 0.0 0.017178 +0.9508216 0.09925634 0.137800 0.137800 0.0 0.0 0.000000 ! MAT 2 (OUTER CORE) +0.2039700 0.00266057 0.000000 0.000000 1.0 0.0 0.027597 +1.2626167 0.04936351 0.000000 0.000000 0.0 0.0 0.000000 ! MAT 3 (REFLECTOR) + +! GEOMETRY CARD +%GEOM +6 6 10 !nx, ny, nz +10.0 5*20.0 !x-direction assembly size in cm +1 5*2 !x-direction assembly division +10.0 5*20.0 !y-direction assembly size in cm +1 5*2 !y-direction assembly division +10*20.0 !z-direction size in cm (from bottom to top) +10*4 !z-direction assembly division +2 !np number of planar type +1 8*2 1 !planar assignment (from bottom to top) +! Planar_Reg 1 +3 3 3 3 3 0 +3 3 3 3 3 3 +3 3 3 3 3 3 +3 3 3 3 3 3 +3 3 3 3 3 3 +3 3 3 3 3 3 +! Planar_Reg 2 +3 3 3 3 3 0 +2 2 2 2 3 3 +1 1 1 2 2 3 +1 1 1 1 2 3 +1 1 1 1 2 3 +1 1 1 1 2 3 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +1 2 1 2 1 1 + +! CONTROL CARD +%CROD +2 180 ! Number of CR banks and Max number of steps +0. 1.0 ! Zero step pos. (cm from bottom) and step size (cm/step) +180. 100. ! CR Bank pos. +0 0 0 0 0 0 +0 0 0 0 0 0 +2 0 0 0 0 0 +0 0 1 0 0 0 +0 0 0 0 0 0 +1 0 0 2 0 0 +! CX changes +! sigtr siga nu*sigf sigf sigs_g1 sigs_g2 + 0.00000 0.00055 0.00000 0.00000 0.00000 0.00000 + 0.00000 0.00380 0.00000 0.00000 0.00000 0.00000 + 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 +1 + +! ROD EJECTION CARD +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 60. 7.5 3.0 ! Bank 1 + 180. 0.0 3.0 ! Bank 2 +60. 0.25 60.0 1.0 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.00025 0.00138 0.00122 0.00265 0.00083 0.00017 !beta +0.01270 0.03170 0.11500 0.31100 1.40000 3.87000 !decay constants +1.25E7 2.5E5 ! Neutron velocity +1 + +! Iteration control card +%ITER +1200 2 1.e-5 1.e-5 13 60 20 60 + +! Theta card. Theta value is set to 0.5 (Crank-Nicholson) +%THET +0.5 diff --git a/smpl/transient/MOX/part4_helios b/smpl/transient/MOX/part4_helios new file mode 100644 index 0000000..f8e18e6 --- /dev/null +++ b/smpl/transient/MOX/part4_helios @@ -0,0 +1,140 @@ +%MODE +RODEJECT + +! CASE CARD +%CASE +MOX_HEL +MOX TRANSIENT PROBLEM WITH XSEC FROM HELIOS + +! XTAB CARD +%XTAB +2 18 ! Number of groups and number of materials +! XTAB files for each material +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 1 !MAT 1 : u42u 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 2 !MAT 2 : u42u 17.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 4 !MAT 3 : u42u 22.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 5 !MAT 4 : u42u 32.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 6 !MAT 5 : u42u 35.0 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u42 7 !MAT 6 : u42u 37.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 1 !MAT 7 : u45u 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 2 !MAT 8 : u45u 17.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 3 !MAT 9 : u45u 20.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 5 !MAT 10: u45u 32.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_u45 7 !MAT 11: u45u 37.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 1 !MAT 12: m40m 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 4 !MAT 13: m40m 22.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m40 7 !MAT 14: m40m 37.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 1 !MAT 15: m43m 0.15 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 2 !MAT 16: m43m 17.5 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_m43 6 !MAT 17: m43m 35.0 GWD/TON +/home/travis/build/imronuke/ADPRES/smpl/xsec/HELIOS/2G_XSEC_refl 1 !MAT 18: REFLECTOR +1 + +%GEOM +17 17 22 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +21.42 20*18.288 21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +2 !np number of planar type +2 20*1 2 +! Planar_type_1 + 0 0 0 0 18 18 18 18 18 18 18 18 18 0 0 0 0 + 0 0 18 18 18 9 17 8 4 8 17 9 18 18 18 0 0 + 0 18 18 10 2 15 7 12 7 12 7 15 2 10 18 18 0 + 0 18 10 15 7 9 16 4 16 4 16 9 7 15 10 18 0 +18 18 2 7 6 1 3 1 11 1 3 1 6 7 2 18 18 +18 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 18 +18 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 18 +18 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 18 +18 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 18 +18 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 18 +18 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 18 +18 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 18 +18 18 2 7 6 1 3 1 11 1 3 1 6 7 2 18 18 + 0 18 10 15 7 9 16 4 16 4 16 9 7 15 10 18 0 + 0 18 18 10 2 15 7 12 7 12 7 15 2 10 18 18 0 + 0 0 18 18 18 9 17 8 4 8 17 9 18 18 18 0 0 + 0 0 0 0 18 18 18 18 18 18 18 18 18 0 0 0 0 +! Planar_type_2 + 0 0 0 0 18 18 18 18 18 18 18 18 18 0 0 0 0 + 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 + 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 + 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 +18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 + 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 + 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 + 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 + 0 0 0 0 18 18 18 18 18 18 18 18 18 0 0 0 0 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 0 0 + +! CONTROL CARD +%CROD +9 200. ! Number of CR banks and max number of banks +21.42 1.8288 ! Zero step pos. (cm) and cm/step (total 200 steps) +0. 0. 0. 0. 200. 200. 200. 200. 0. ! CR Bank pos. +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 5 0 2 0 3 0 2 0 5 0 0 0 0 +0 0 0 0 0 7 0 6 0 6 0 7 0 0 0 0 0 +0 0 5 0 4 0 0 0 8 0 0 0 9 0 5 0 0 +0 0 0 7 0 0 0 0 0 0 0 0 0 7 0 0 0 +0 0 2 0 0 0 3 0 1 0 3 0 0 0 2 0 0 +0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 0 +0 0 3 0 8 0 1 0 4 0 1 0 8 0 3 0 0 +0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 0 +0 0 2 0 0 0 3 0 1 0 3 0 0 0 2 0 0 +0 0 0 7 0 0 0 0 0 0 0 0 0 7 0 0 0 +0 0 5 0 4 0 0 0 8 0 0 0 4 0 5 0 0 +0 0 0 0 0 7 0 6 0 6 0 7 0 0 0 0 0 +0 0 0 0 5 0 2 0 3 0 2 0 5 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 + +! BORON CONCENTRATION +%BCON +1341.99 1341.0 ! Since %xtab exist, second number is dummy + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +3565.0e6 ! Reactor thermal power for full geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 0. 0.0 0.0 ! Bank 1 + 0. 0.0 0.0 ! Bank 2 + 0. 0.0 0.0 ! Bank 3 + 0. 0.0 0.0 ! Bank 4 + 200. 0.0 0.0 ! Bank 5 + 200. 0.0 0.0 ! Bank 6 + 200. 0.0 0.0 ! Bank 7 + 200. 0.0 0.0 ! Bank 8 + 200. 0.0 2000.0 ! Bank 9 +1.0 0.002 1.0 0.002 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +1 + +! Iteration control card (see manual or output file for description) +%ITER +1200 3 1.e-5 1.e-5 20 40 20 80 + +! Flux extrapolation card +%EXTR diff --git a/smpl/transient/MOX/part4_serpent b/smpl/transient/MOX/part4_serpent new file mode 100644 index 0000000..1a3f05c --- /dev/null +++ b/smpl/transient/MOX/part4_serpent @@ -0,0 +1,141 @@ +%MODE +RODEJECT + +! CASE CARD +%CASE +MOX_SER +MOX TRANSIENT PROBLEM WITH XSEC FROM SERPENT + +! XTAB CARD +%XTAB +2 19 ! Number of groups and number of materials +! XTAB files for each material +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 1 !MAT 1 : u42u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 2 !MAT 2 : u42u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 4 !MAT 3 : u42u 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 5 !MAT 4 : u42u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 6 !MAT 5 : u42u 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u42.tab 7 !MAT 6 : u42u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 1 !MAT 7 : u45u 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 2 !MAT 8 : u45u 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 3 !MAT 9 : u45u 20.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 5 !MAT 10: u45u 32.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/u45.tab 7 !MAT 11: u45u 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 1 !MAT 12: m40m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 4 !MAT 13: m40m 22.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m40.tab 7 !MAT 14: m40m 37.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 1 !MAT 15: m43m 0.15 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 2 !MAT 16: m43m 17.5 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/m43.tab 6 !MAT 17: m43m 35.0 GWD/TON +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refr.tab 1 !MAT 18: RADIAL REFLECTOR +/home/imronuke/ADPRES/smpl/xsec/SERPENT_CMM/refa.tab 1 !MAT 19: AXIAL REFLECTOR +1 + +%GEOM +17 17 22 !nx, ny, nz +17*21.42 !x-direction assembly size in cm +17*2 !x-direction assembly division +17*21.42 !y-direction assembly size in cm +17*2 !y-direction assembly ddivision +21.42 20*18.288 21.42 !z-direction assembly size in cm +22*1 !z-direction assembly division +2 !np number of planar type +2 20*1 2 +! Planar_type_1 + 0 0 0 0 18 18 18 18 18 18 18 18 18 0 0 0 0 + 0 0 18 18 18 9 17 8 4 8 17 9 18 18 18 0 0 + 0 18 18 10 2 15 7 12 7 12 7 15 2 10 18 18 0 + 0 18 10 15 7 9 16 4 16 4 16 9 7 15 10 18 0 +18 18 2 7 6 1 3 1 11 1 3 1 6 7 2 18 18 +18 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 18 +18 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 18 +18 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 18 +18 4 7 16 11 7 3 1 5 1 3 7 11 16 7 4 18 +18 8 12 4 1 13 10 2 1 2 10 13 1 4 12 8 18 +18 17 7 16 3 1 3 10 3 10 3 1 3 16 7 17 18 +18 9 15 9 1 14 1 13 7 13 1 14 1 9 15 9 18 +18 18 2 7 6 1 3 1 11 1 3 1 6 7 2 18 18 + 0 18 10 15 7 9 16 4 16 4 16 9 7 15 10 18 0 + 0 18 18 10 2 15 7 12 7 12 7 15 2 10 18 18 0 + 0 0 18 18 18 9 17 8 4 8 17 9 18 18 18 0 0 + 0 0 0 0 18 18 18 18 18 18 18 18 18 0 0 0 0 +! Planar_type_2 +0 0 0 0 19 19 19 19 19 19 19 19 19 0 0 0 0 +0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 +0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 +0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 +0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 +0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 +0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 +0 0 0 0 19 19 19 19 19 19 19 19 19 0 0 0 0 + +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 0 0 0 0 + +! CONTROL CARD +%CROD +9 200. ! Number of CR banks and max number of banks +21.42 1.8288 ! Zero step pos. (cm) and cm/step (total 200 steps) +0. 0. 0. 0. 200. 200. 200. 200. 0. ! CR Bank pos. +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 5 0 2 0 3 0 2 0 5 0 0 0 0 +0 0 0 0 0 7 0 6 0 6 0 7 0 0 0 0 0 +0 0 5 0 4 0 0 0 8 0 0 0 9 0 5 0 0 +0 0 0 7 0 0 0 0 0 0 0 0 0 7 0 0 0 +0 0 2 0 0 0 3 0 1 0 3 0 0 0 2 0 0 +0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 0 +0 0 3 0 8 0 1 0 4 0 1 0 8 0 3 0 0 +0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 0 +0 0 2 0 0 0 3 0 1 0 3 0 0 0 2 0 0 +0 0 0 7 0 0 0 0 0 0 0 0 0 7 0 0 0 +0 0 5 0 4 0 0 0 8 0 0 0 4 0 5 0 0 +0 0 0 0 0 7 0 6 0 6 0 7 0 0 0 0 0 +0 0 0 0 5 0 2 0 3 0 2 0 5 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 + +! BORON CONCENTRATION +%BCON +1207.06 1208.2 ! Since %xtab exist, second number is dummy + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +3565.0e6 ! Reactor thermal power for full geometry in Watt +560. 82.121243523 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +3.951E-03 5.9E-05 5.73E-04 1.26E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.0 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 0. 0.0 0.0 ! Bank 1 + 0. 0.0 0.0 ! Bank 2 + 0. 0.0 0.0 ! Bank 3 + 0. 0.0 0.0 ! Bank 4 + 200. 0.0 0.0 ! Bank 5 + 200. 0.0 0.0 ! Bank 6 + 200. 0.0 0.0 ! Bank 7 + 200. 0.0 0.0 ! Bank 8 + 200. 0.0 2000.0 ! Bank 9 +1.0 0.002 1.0 0.002 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +1 + +! Iteration control card (see manual or output file for description) +%ITER +1200 3 1.e-5 1.e-5 20 40 20 80 + +! Flux extrapolation card +%EXTR diff --git a/smpl/transient/NEACRP/A1t b/smpl/transient/NEACRP/A1t new file mode 100644 index 0000000..094b691 --- /dev/null +++ b/smpl/transient/NEACRP/A1t @@ -0,0 +1,265 @@ +! CALCULATION MODE CARD +%MODE +RODEJECT + +! CASE CARD +%CASE +NEACRP Problem +10.803 CM NODE SIZE + + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +9 9 18 !nx, ny, nz +10.803 8*21.606 !x-direction assembly size in cm + 1 8*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 3 2 + 1 1 1 1 1 1 1 2 0 + 1 1 1 1 1 1 3 2 0 + 1 1 1 1 1 3 2 0 0 + 1 1 1 1 3 2 0 0 0 + 1 1 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 + 4 5 4 5 4 5 4 6 2 + 5 4 5 4 5 4 6 6 2 + 4 5 4 5 4 5 6 3 2 + 5 4 5 4 5 6 6 2 0 + 4 5 4 5 4 6 3 2 0 + 5 4 5 6 6 3 2 0 0 + 4 6 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 + 4 9 4 9 4 7 4 6 2 + 9 4 8 4 8 4 11 6 2 + 4 8 4 8 4 8 6 3 2 + 9 4 8 4 8 10 6 2 0 + 4 8 4 8 4 6 3 2 0 + 7 4 8 10 6 3 2 0 0 + 4 11 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 2 0 0 0 + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 0. 0. 228. 0. 0. 0. ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! BORON CONCENTRATION +%BCON +560.53 1200.2 ! Boron concentration ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 228. 0.0 2280.0 ! Bank 1 + 0. 0.0 0.0 ! Bank 2 + 0. 0.0 0.0 ! Bank 3 + 228. 0.0 0.0 ! Bank 4 + 0. 0.0 0.0 ! Bank 5 + 0. 0.0 0.0 ! Bank 6 + 0. 0.0 0.0 ! Bank 7 +5.0 0.005 1.0 0.05 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +1 + +! Iteration control card (see manual or output file for description) +%ITER +1200 3 1.e-5 1.e-5 15 20 20 80 + +! Flux Exponential extrapolation card +%EXTR diff --git a/smpl/transient/NEACRP/A2t b/smpl/transient/NEACRP/A2t new file mode 100644 index 0000000..dcd8bf1 --- /dev/null +++ b/smpl/transient/NEACRP/A2t @@ -0,0 +1,256 @@ +! CALCULATION MODE CARD +%MODE +RODEJECT + +! CASE CARD +%CASE +NEACRP Problem +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +9 9 18 !nx, ny, nz +10.803 8*21.606 !x-direction assembly size in cm + 1 8*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 3 2 + 1 1 1 1 1 1 1 2 0 + 1 1 1 1 1 1 3 2 0 + 1 1 1 1 1 3 2 0 0 + 1 1 1 1 3 2 0 0 0 + 1 1 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 + 4 5 4 5 4 5 4 6 2 + 5 4 5 4 5 4 6 6 2 + 4 5 4 5 4 5 6 3 2 + 5 4 5 4 5 6 6 2 0 + 4 5 4 5 4 6 3 2 0 + 5 4 5 6 6 3 2 0 0 + 4 6 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 + 4 9 4 9 4 7 4 6 2 + 9 4 8 4 8 4 11 6 2 + 4 8 4 8 4 8 6 3 2 + 9 4 8 4 8 10 6 2 0 + 4 8 4 8 4 6 3 2 0 + 7 4 8 10 6 3 2 0 0 + 4 11 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 2 0 0 0 + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +100.00 200.00 100.00 200.00 200.00 200.00 200.00 ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! CRITICAL BORON SEARCH CARD +%BCON +1156.08 1200.2 !Boron concentration ref. in ppm +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 228. 0.0 1280.0 ! Bank 1 + 200. 0.0 0.0 ! Bank 2 + 100. 0.0 0.0 ! Bank 3 + 200. 0.0 0.0 ! Bank 4 + 200. 0.0 0.0 ! Bank 5 + 200. 0.0 0.0 ! Bank 6 + 200. 0.0 0.0 ! Bank 7 +5.0 0.01 1.0 0.1 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +1 diff --git a/smpl/transient/NEACRP/B1t b/smpl/transient/NEACRP/B1t new file mode 100644 index 0000000..cd0b5f4 --- /dev/null +++ b/smpl/transient/NEACRP/B1t @@ -0,0 +1,264 @@ +! CALCULATION MODE CARD +%MODE +RODEJECT + +! CASE CARD +%CASE +NEACRP Problem +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +9 9 18 !nx, ny, nz +10.803 8*21.606 !x-direction assembly size in cm + 1 8*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 3 2 + 1 1 1 1 1 1 1 2 0 + 1 1 1 1 1 1 3 2 0 + 1 1 1 1 1 3 2 0 0 + 1 1 1 1 3 2 0 0 0 + 1 1 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 + 4 5 4 5 4 5 4 6 2 + 5 4 5 4 5 4 6 6 2 + 4 5 4 5 4 5 6 3 2 + 5 4 5 4 5 6 6 2 0 + 4 5 4 5 4 6 3 2 0 + 5 4 5 6 6 3 2 0 0 + 4 6 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 + 4 9 4 9 4 7 4 6 2 + 9 4 8 4 8 4 11 6 2 + 4 8 4 8 4 8 6 3 2 + 9 4 8 4 8 10 6 2 0 + 4 8 4 8 4 6 3 2 0 + 7 4 8 10 6 3 2 0 0 + 4 11 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 2 0 0 0 + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 228. 0. 228. 0. 228. 228. ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! BORON CONCENTRATION +%BCON +1247.38 1200.2 ! BC and BC ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 0. 0.0 0.0 ! Bank 1 + 228. 0.0 0.0 ! Bank 2 + 228. 0.0 2280.0 ! Bank 3 + 228. 0.0 0.0 ! Bank 4 + 0. 0.0 0.0 ! Bank 5 + 228. 0.0 0.0 ! Bank 6 + 228. 0.0 0.0 ! Bank 7 +5. 0.005 1.0 0.05 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +1 + +! Iteration control card (see manual or output file for description) +%ITER +1200 3 1.e-5 1.e-5 15 20 20 80 + +! Flux Exponential transformation card +%EXTR diff --git a/smpl/transient/NEACRP/B2t b/smpl/transient/NEACRP/B2t new file mode 100644 index 0000000..446750a --- /dev/null +++ b/smpl/transient/NEACRP/B2t @@ -0,0 +1,259 @@ +! CALCULATION MODE CARD +%MODE +RODEJECT + +! CASE CARD +%CASE +NEACRP Problem +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +9 9 18 !nx, ny, nz +10.803 8*21.606 !x-direction assembly size in cm + 1 8*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 1 2 + 1 1 1 1 1 1 1 3 2 + 1 1 1 1 1 1 1 2 0 + 1 1 1 1 1 1 3 2 0 + 1 1 1 1 1 3 2 0 0 + 1 1 1 1 3 2 0 0 0 + 1 1 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 + 4 5 4 5 4 5 4 6 2 + 5 4 5 4 5 4 6 6 2 + 4 5 4 5 4 5 6 3 2 + 5 4 5 4 5 6 6 2 0 + 4 5 4 5 4 6 3 2 0 + 5 4 5 6 6 3 2 0 0 + 4 6 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 + 4 9 4 9 4 7 4 6 2 + 9 4 8 4 8 4 11 6 2 + 4 8 4 8 4 8 6 3 2 + 9 4 8 4 8 10 6 2 0 + 4 8 4 8 4 6 3 2 0 + 7 4 8 10 6 3 2 0 0 + 4 11 6 6 3 2 0 0 0 + 6 6 3 2 2 0 0 0 0 + 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 2 2 0 0 0 + +! CONTROL CARD +%CROD +7 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +150.00 200.00 150.00 200.00 200.00 200.00 200.00 ! CR Bank pos. + 1 0 2 0 0 0 3 0 0 + 0 4 0 0 0 6 0 0 0 + 2 0 5 0 6 0 6 0 0 + 0 0 0 4 0 0 0 0 0 + 0 0 6 0 7 0 0 0 0 + 0 6 0 0 0 0 0 0 0 + 3 0 6 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! CRITICAL BORON SEARCH CARD +%BCON +1184.55 1200.2 ! Boron concentration ref. in ppm +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +693.75e6 ! Reactor thermal power for quarter geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 150. 0.0 0.0 ! Bank 1 + 200. 0.0 0.0 ! Bank 2 + 228. 0.0 780.0 ! Bank 3 + 200. 0.0 0.0 ! Bank 4 + 200. 0.0 0.0 ! Bank 5 + 200. 0.0 0.0 ! Bank 6 + 200. 0.0 0.0 ! Bank 7 +5. 0.01 1.0 0.1 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +1 + +%ITER +800 2 1.e-5 1.e-5 7 40 20 60 diff --git a/smpl/transient/NEACRP/C1t b/smpl/transient/NEACRP/C1t new file mode 100644 index 0000000..043bf72 --- /dev/null +++ b/smpl/transient/NEACRP/C1t @@ -0,0 +1,265 @@ +! CALCULATION MODE CARD +%MODE +RODEJECT + +! CASE CARD +%CASE +NEACRP Problem +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +17 9 18 !nx, ny, nz +17*21.606 !x-direction assembly size in cm + 17*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 3 1 1 1 1 1 1 1 1 1 1 1 1 1 3 2 +0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 +0 2 3 1 1 1 1 1 1 1 1 1 1 1 3 2 0 +0 0 2 3 1 1 1 1 1 1 1 1 1 3 2 0 0 +0 0 0 2 3 1 1 1 1 1 1 1 3 2 0 0 0 +0 0 0 0 2 2 3 1 1 1 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 +2 6 4 5 4 5 4 5 4 5 4 5 4 5 4 6 2 +2 6 6 4 5 4 5 4 5 4 5 4 5 4 6 6 2 +2 3 6 5 4 5 4 5 4 5 4 5 4 5 6 3 2 +0 2 6 6 5 4 5 4 5 4 5 4 5 6 6 2 0 +0 2 3 6 4 5 4 5 4 5 4 5 4 6 3 2 0 +0 0 2 3 6 6 5 4 5 4 5 6 6 3 2 0 0 +0 0 0 2 3 6 6 6 4 6 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 +2 6 4 7 4 9 4 9 4 9 4 9 4 7 4 6 2 +2 6 11 4 8 4 8 4 9 4 8 4 8 4 11 6 2 +2 3 6 8 4 8 4 8 4 8 4 8 4 8 6 3 2 +0 2 6 10 8 4 8 4 9 4 8 4 8 10 6 2 0 +0 2 3 6 4 8 4 8 4 8 4 8 4 6 3 2 0 +0 0 2 3 6 10 8 4 7 4 8 10 6 3 2 0 0 +0 0 0 2 3 6 6 11 4 11 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 2 0 0 0 + +! CONTROL CARD +%CROD +8 228. ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +0. 0. 0. 228. 0. 228. 0. 0. ! CR Bank pos. +0 0 3 0 0 0 2 0 1 0 2 0 0 0 8 0 0 +0 0 0 6 0 0 0 4 0 4 0 0 0 6 0 0 0 +0 0 6 0 6 0 5 0 2 0 5 0 6 0 6 0 0 +0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 +0 0 0 0 7 0 6 0 0 0 6 0 7 0 0 0 0 +0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 0 0 +0 0 0 0 0 0 6 0 3 0 6 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! CRITICAL BORON SEARCH CARD +%BCON +1127.69 1200.2 ! BC and BC ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 + +! THERMAL-HYDRAULIC CARD +%THER +0.0001 ! Percent power in % +1387.5e6 ! Reactor thermal power for half geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 0. 0.0 0.0 ! Bank 1 + 0. 0.0 0.0 ! Bank 2 + 0. 0.0 0.0 ! Bank 3 + 228. 0.0 0.0 ! Bank 4 + 0. 0.0 0.0 ! Bank 5 + 228. 0.0 0.0 ! Bank 6 + 0. 0.0 0.0 ! Bank 7 + 228. 0.0 2280.0 ! Bank 8 +5. 0.005 1.0 0.05 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +1 + +! Iteration control card (see manual or output file for description) +%ITER +1200 3 1.e-5 1.e-5 20 40 20 80 + +! Flux Exponential transformation card +%EXTR diff --git a/smpl/transient/NEACRP/C2t b/smpl/transient/NEACRP/C2t new file mode 100644 index 0000000..a19c270 --- /dev/null +++ b/smpl/transient/NEACRP/C2t @@ -0,0 +1,258 @@ +! CALCULATION MODE CARD +%MODE +RODEJECT + +! CASE CARD +%CASE +NEACRP Problem +10.803 CM NODE SIZE + +! XSEC CARD +%XSEC +2 11 ! Number of groups and number of materials +! sigtr siga nu*sigf kappa*sigf chi sigs_g1 sigs_g2 +5.32058E-02 3.73279E-04 0.00000E+00 0.00000E+00 1.0 0.0 2.64554E-02 +3.86406E-01 1.77215E-02 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 1 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.31613E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 2 +2.95609E-01 1.18782E-03 0.00000E+00 0.00000E+00 1.0 0.0 2.00808E-02 +2.45931E+00 2.52618E-01 0.00000E+00 0.00000E+00 0.0 0.0 0.00000E+00 !COMP 3 +2.22117E-01 8.71774E-03 4.98277E-03 6.11190E-14 1.0 0.0 1.82498E-02 +8.03140E-01 6.52550E-02 8.39026E-02 1.10152E-12 0.0 0.0 0.00000E+00 !COMP 4 +2.21914E-01 9.06133E-03 5.57659E-03 6.89181E-14 1.0 0.0 1.80040E-02 +7.95538E-01 7.23354E-02 9.98629E-02 1.31106E-12 0.0 0.0 0.00000E+00 !COMP 5 +2.21715E-01 9.38496E-03 6.15047E-03 7.64603E-14 1.0 0.0 1.77670E-02 +7.89253E-01 7.89203E-02 1.14667E-01 1.50541E-12 0.0 0.0 0.00000E+00 !COMP 6 +2.22039E-01 9.31692E-03 5.55010E-03 6.86391E-14 1.0 0.0 1.71381E-02 +7.76230E-01 7.96328E-02 9.85576E-02 1.29393E-12 0.0 0.0 0.00000E+00 !COMP 7 +2.22083E-01 9.40032E-03 5.54083E-03 6.85391E-14 1.0 0.0 1.68501E-02 +7.69969E-01 8.21087E-02 9.80059E-02 1.28669E-12 0.0 0.0 0.00000E+00 !COMP 8 +2.22127E-01 9.48286E-03 5.53137E-03 6.84379E-14 1.0 0.0 1.65626E-02 +7.63813E-01 8.45912E-02 9.74109E-02 1.27888E-12 0.0 0.0 0.00000E+00 !COMP 9 +2.21836E-01 9.63720E-03 6.12382E-03 7.61794E-14 1.0 0.0 1.69043E-02 +7.70705E-01 8.61187E-02 1.13241E-01 1.48670E-12 0.0 0.0 0.00000E+00 !COMP 10 +2.21878E-01 9.71937E-03 6.11444E-03 7.60778E-14 1.0 0.0 1.66175E-02 +7.64704E-01 8.85488E-02 1.12635E-01 1.47876E-12 0.0 0.0 0.00000E+00 !COMP 11 + +! GEOMETRY CARD +%GEOM +17 9 18 !nx, ny, nz +17*21.606 !x-direction assembly size in cm + 17*2 !x-direction assembly divided 2x2 +8*21.606 10.803 !y-direction assembly size in cm + 8*2 1 !y-direction assembly divided 2x2 +30. 7.7 11.0 15.0 10*30.0 2*12.8 8.0 30. !z-direction size in cm (from bottom to top) +18*1 !z-direction assembly divided into 20 cm each +3 !np number of planar type +1 2 15*3 1 !planar assignment (from bottom to top) +! Planar_Reg 1 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 +2 3 1 1 1 1 1 1 1 1 1 1 1 1 1 3 2 +0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 +0 2 3 1 1 1 1 1 1 1 1 1 1 1 3 2 0 +0 0 2 3 1 1 1 1 1 1 1 1 1 3 2 0 0 +0 0 0 2 3 1 1 1 1 1 1 1 3 2 0 0 0 +0 0 0 0 2 2 3 1 1 1 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 2 +2 6 4 5 4 5 4 5 4 5 4 5 4 5 4 6 2 +2 6 6 4 5 4 5 4 5 4 5 4 5 4 6 6 2 +2 3 6 5 4 5 4 5 4 5 4 5 4 5 6 3 2 +0 2 6 6 5 4 5 4 5 4 5 4 5 6 6 2 0 +0 2 3 6 4 5 4 5 4 5 4 5 4 6 3 2 0 +0 0 2 3 6 6 5 4 5 4 5 6 6 3 2 0 0 +0 0 0 2 3 6 6 6 4 6 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Planar_Reg 3 +2 6 4 7 4 9 4 9 4 9 4 9 4 7 4 6 2 +2 6 11 4 8 4 8 4 9 4 8 4 8 4 11 6 2 +2 3 6 8 4 8 4 8 4 8 4 8 4 8 6 3 2 +0 2 6 10 8 4 8 4 9 4 8 4 8 10 6 2 0 +0 2 3 6 4 8 4 8 4 8 4 8 4 6 3 2 0 +0 0 2 3 6 10 8 4 7 4 8 10 6 3 2 0 0 +0 0 0 2 3 6 6 11 4 11 6 6 3 2 0 0 0 +0 0 0 0 2 2 3 6 6 6 3 2 2 0 0 0 0 +0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 +! Boundary conditions (east), (west), (north), (south), (bottom), (top) +0 0 2 0 0 0 + +! CONTROL CARD +%CROD +8 228 ! Number of CR banks and max number of banks +37.7 1.5942237 ! Zero step pos. (cm) and cm/step (total 228 steps) +100. 200. 100. 200. 200. 200. 200. 100. ! CR Bank pos. +0 0 3 0 0 0 2 0 1 0 2 0 0 0 8 0 0 +0 0 0 6 0 0 0 4 0 4 0 0 0 6 0 0 0 +0 0 6 0 6 0 5 0 2 0 5 0 6 0 6 0 0 +0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 +0 0 0 0 7 0 6 0 0 0 6 0 7 0 0 0 0 +0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 0 0 +0 0 0 0 0 0 6 0 3 0 6 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +! CX changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 1 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 2 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 3 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 4 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 5 + 3.74092E-03 2.42926E-03 -1.22634E-04 -1.47557E-15 0.0 -3.14239E-03 +-1.67503E-02 2.56478E-02 -3.28086E-03 -4.30444E-14 0.0 0.00000E+00 !COMP 6 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 7 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 8 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 9 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 10 + 3.73220E-03 2.47770E-03 -1.02786E-04 -1.21448E-15 0.0 -3.19253E-03 +-2.19926E-02 2.55875E-02 -2.82319E-03 -3.70238E-14 0.0 0.00000E+00 !COMP 11 +1 + +! CRITICAL BORON SEARCH CARD +%BCON +1156.06 1200.2 ! BC and BC ref. in ppm +! CX change per unit ppm change of Boron concentration +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 6.11833E-08 1.87731E-07 0.00000E+00 0.00000E+00 0.0 7.91457E-10 + 5.17535E-06 1.02635E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 7.76184E-04 8.44695E-05 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 + 3.47809E-08 1.28505E-07 -1.12099E-09 -1.76188E-20 0.0 -1.08590E-07 +-9.76510E-06 7.08807E-06 -2.43045E-06 -3.19085E-17 0.0 0.00000E+00 !COMP 4 + 3.53826E-08 1.26709E-07 -1.67880E-09 -2.49965E-20 0.0 -1.06951E-07 +-8.50169E-06 6.82311E-06 -2.72445E-06 -3.57680E-17 0.0 0.00000E+00 !COMP 5 + 3.59838E-08 1.24986E-07 -2.21038E-09 -3.20225E-20 0.0 -1.05374E-07 +-7.46251E-06 6.59798E-06 -2.95883E-06 -3.88451E-17 0.0 0.00000E+00 !COMP 6 + 3.37806E-08 1.19869E-07 -1.71323E-09 -2.49965E-20 0.0 -1.00873E-07 +-6.73744E-06 6.29310E-06 -2.55359E-06 -3.35223E-17 0.0 0.00000E+00 !COMP 7 + 3.32495E-08 1.17585E-07 -1.72421E-09 -2.54896E-20 0.0 -9.88578E-08 +-6.19725E-06 6.11904E-06 -2.48880E-06 -3.26704E-17 0.0 0.00000E+00 !COMP 8 + 3.27201E-08 1.15319E-07 -1.73502E-09 -2.56049E-20 0.0 -9.68489E-08 +-5.68220E-06 5.94711E-06 -2.42240E-06 -3.17976E-17 0.0 0.00000E+00 !COMP 9 + 3.43859E-08 1.18186E-07 -2.24335E-09 -3.20225E-20 0.0 -9.93312E-08 +-5.86898E-06 6.08443E-06 -2.77657E-06 -3.64509E-17 0.0 0.00000E+00 !COMP 10 + 3.38559E-08 1.15917E-07 -2.25369E-09 -3.24873E-20 0.0 -9.73291E-08 +-5.38345E-06 5.91697E-06 -2.70780E-06 -3.55476E-17 0.0 0.00000E+00 !COMP 11 +1 + +! FUEL TEMPERATURE CARD +%FTEM +891.19 891.45 ! Average Fuel Temperature and fuel temperature Ref. in Kelvin +! CX change per Fuel Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-3.09197E-05 3.49709E-05 6.40134E-07 7.15412E-18 0.0 -2.75536E-05 +-0.000137292 -3.71806E-05 -5.63037E-05 -7.39188E-16 0.0 0.00000E+00 !COMP 4 +-3.08607E-05 3.51798E-05 9.97431E-07 1.18685E-17 0.0 -2.76766E-05 +-0.000117481 -3.77039E-05 -6.04155E-05 -7.93170E-16 0.0 0.00000E+00 !COMP 5 +-3.09165E-05 3.53841E-05 1.41847E-06 1.74269E-17 0.0 -2.78390E-05 +-0.000101337 -3.77558E-05 -0.000063096 -8.28363E-16 0.0 0.00000E+00 !COMP 6 +-3.13746E-05 3.48699E-05 9.45431E-07 1.18685E-17 0.0 -2.73550E-05 +-0.000108271 -3.72748E-05 -5.79662E-05 -7.60849E-16 0.0 0.00000E+00 !COMP 7 +-3.15503E-05 3.47274E-05 9.26078E-07 1.08935E-17 0.0 -2.72381E-05 +-0.000105521 -3.71808E-05 -5.71108E-05 -7.49575E-16 0.0 0.00000E+00 !COMP 8 +-3.17281E-05 3.46026E-05 9.05802E-07 1.06166E-17 0.0 -2.71169E-05 +-0.000102525 -3.70201E-05 -5.61543E-05 -7.36969E-16 0.0 0.00000E+00 !COMP 9 +-3.14192E-05 3.50637E-05 1.35642E-06 1.74269E-17 0.0 -2.75049E-05 +-9.38886E-05 -3.71403E-05 -6.05052E-05 -7.94252E-16 0.0 0.00000E+00 !COMP 10 +-3.15908E-05 3.49119E-05 1.33336E-06 1.62769E-17 0.0 -2.73835E-05 +-9.17126E-05 -3.69909E-05 -5.96284E-05 -7.82716E-16 0.0 0.00000E+00 !COMP 11 + +! MODERATOR TEMPERATURE CARD +%MTEM +559.19 579.75 ! Average Moderator Temperature and Moderator temperature Ref. Kelvin +! CX change per Moderator Temperature Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +-2.03310E-06 2.12191E-07 1.24709E-07 1.43035E-18 0.0 8.09676E-07 +-1.08674E-04 -3.15597E-05 -4.16439E-05 -5.46722E-16 0.0 0.00000E+00 !COMP 4 +-1.98080E-06 2.26000E-07 1.35145E-07 1.56896E-18 0.0 8.58474E-07 +-9.06150E-05 -3.21435E-05 -4.53102E-05 -5.94857E-16 0.0 0.00000E+00 !COMP 5 +-1.92434E-06 2.39939E-07 1.49084E-07 1.75422E-18 0.0 9.03494E-07 +-7.62786E-05 -3.23776E-05 -4.78475E-05 -6.28174E-16 0.0 0.00000E+00 !COMP 6 +-2.69634E-06 2.48530E-07 1.40773E-07 1.56896E-18 0.0 7.01311E-07 +-7.62435E-05 -3.00119E-05 -4.20202E-05 -5.51669E-16 0.0 0.00000E+00 !COMP 7 +-3.07905E-06 2.61854E-07 1.43235E-07 1.67897E-18 0.0 6.17380E-07 +-7.33397E-05 -2.91929E-05 -4.07701E-05 -5.35261E-16 0.0 0.00000E+00 !COMP 8 +-3.53877E-06 2.74313E-07 1.46019E-07 1.71665E-18 0.0 5.16547E-07 +-7.13711E-05 -2.83041E-05 -3.94319E-05 -5.17689E-16 0.0 0.00000E+00 !COMP 9 +-2.63907E-06 2.64289E-07 1.55858E-07 1.75422E-18 0.0 7.44320E-07 +-6.39554E-05 -3.03509E-05 -4.44431E-05 -5.83483E-16 0.0 0.00000E+00 !COMP 10 +-3.02147E-06 2.79060E-07 1.58814E-07 1.88528E-18 0.0 6.59521E-07 +-6.16984E-05 -2.95626E-05 -4.31588E-05 -5.66622E-16 0.0 0.00000E+00 !COMP 11 + +! COOLANT DENSITY CARD +%CDEN +0.7464 0.7125 ! Average Coolant Density and Coolant Density Ref. in g/cm3 +! CX change per Coolant Density Changes +! sigtr siga nu*sigf kappa*sigf sigs_g1 sigs_g2 +7.45756E-02 2.07688E-04 0.00000E+00 0.00000E+00 0.0 3.71310E-02 +5.33634E-01 7.58421E-03 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 1 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 2 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 +0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.0 0.00000E+00 !COMP 3 +1.35665E-01 1.55185E-03 9.20694E-04 1.02392E-14 0.0 2.93195E-02 +9.92628E-01 2.52662E-02 2.47746E-02 3.25255E-13 0.0 0.00000E+00 !COMP 4 +1.35748E-01 1.61491E-03 9.64160E-04 1.08141E-14 0.0 2.92696E-02 +9.81985E-01 2.86667E-02 3.14993E-02 4.13542E-13 0.0 0.00000E+00 !COMP 5 +1.35827E-01 1.68015E-03 1.01410E-03 1.14771E-14 0.0 2.92154E-02 +9.72267E-01 3.19571E-02 3.81097E-02 5.00328E-13 0.0 0.00000E+00 !COMP 6 +1.31033E-01 1.68397E-03 9.81951E-04 1.08141E-14 0.0 2.82489E-02 +9.34697E-01 3.14240E-02 3.51588E-02 4.61715E-13 0.0 0.00000E+00 !COMP 7 +1.29379E-01 1.71972E-03 9.88437E-04 1.11322E-14 0.0 2.78895E-02 +9.18171E-01 3.24715E-02 3.63251E-02 4.77078E-13 0.0 0.00000E+00 !COMP 8 +1.27682E-01 1.74989E-03 9.95175E-04 1.12209E-14 0.0 2.75202E-02 +9.01293E-01 3.35945E-02 3.74499E-02 4.91900E-13 0.0 0.00000E+00 !COMP 9 +1.31116E-01 1.75528E-03 1.03522E-03 1.14771E-14 0.0 2.81877E-02 +9.24925E-01 3.49853E-02 4.20693E-02 5.52387E-13 0.0 0.00000E+00 !COMP 10 +1.29463E-01 1.79499E-03 1.04291E-03 1.18534E-14 0.0 2.78259E-02 +9.08456E-01 3.61032E-02 4.33215E-02 5.68857E-13 0.0 0.00000E+00 !COMP 11 + +! THERMAL-HYDRAULIC CARD +%THER +100. ! Percent power in % +1387.5e6 ! Reactor thermal power for half geometry in Watt +559.15 82.12102 ! Inlet coolant temp. (Kelvin) and Fuel Assembly Mass flow rate (kg/s) +4.11950E-03 6.8E-05 5.71E-04 1.2655E-2 ! Fuel meat rad., gap thickness, cladding thickness and pin pitch (m) +264 25 ! Number of fuel pin and guide tubes +0.019 ! FRACTION OF HEAT DEPOSITED IN COOLANT +1 + +%EJCT +! Final Bank Pos (steps) Starts Move (seconds) Speed (steps/seconds) + 100. 0.0 0.0 ! Bank 1 + 200. 0.0 0.0 ! Bank 2 + 100. 0.0 0.0 ! Bank 3 + 200. 0.0 0.0 ! Bank 4 + 200. 0.0 0.0 ! Bank 5 + 200. 0.0 0.0 ! Bank 6 + 200. 0.0 0.0 ! Bank 7 + 228. 0.0 1280.0 ! Bank 8 +5. 0.01 1.0 0.1 ! (seconds) total time, 1st time step, when to start 2nd time step, 2nd time step +0.0002584 0.00152 0.0013908 0.0030704 0.001102 0.0002584 !beta +0.0128 0.0318 0.119 0.3181 1.4027 3.9286 !decay constants +2.8E7 4.4E5 ! Neutron velocity +1 diff --git a/smpl/xsec/HELIOS/2G_XSEC_m40 b/smpl/xsec/HELIOS/2G_XSEC_m40 new file mode 100644 index 0000000..a0f830b --- /dev/null +++ b/smpl/xsec/HELIOS/2G_XSEC_m40 @@ -0,0 +1,1283 @@ +* Input Control +1 0 * ADF, CROD +* Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 +* +* ---------------------------------------------------------- +* BURNUP 0.15 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.28636E-01 2.36580E-01 2.42881E-01 + 2.28152E-01 2.35981E-01 2.42172E-01 + 2.27671E-01 2.35403E-01 2.41516E-01 + 2.28447E-01 2.36366E-01 2.42652E-01 + 2.27958E-01 2.35776E-01 2.41960E-01 + 2.27473E-01 2.35195E-01 2.41294E-01 + 2.28262E-01 2.36174E-01 2.42447E-01 + 2.27767E-01 2.35581E-01 2.41756E-01 + 2.27283E-01 2.34998E-01 2.41086E-01 +* GROUP 2 + 8.15569E-01 8.67546E-01 9.09756E-01 + 8.13673E-01 8.64935E-01 9.06462E-01 + 8.12025E-01 8.62652E-01 9.03563E-01 + 8.16091E-01 8.68083E-01 9.10309E-01 + 8.14207E-01 8.65492E-01 9.07039E-01 + 8.12573E-01 8.63222E-01 9.04158E-01 + 8.16723E-01 8.68742E-01 9.10981E-01 + 8.14860E-01 8.66167E-01 9.07739E-01 + 8.13242E-01 8.63926E-01 9.04880E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.10927E-02 1.12425E-02 1.13507E-02 + 1.13027E-02 1.14740E-02 1.15996E-02 + 1.15092E-02 1.17017E-02 1.18441E-02 + 1.13355E-02 1.14925E-02 1.16054E-02 + 1.15443E-02 1.17228E-02 1.18531E-02 + 1.17495E-02 1.19489E-02 1.20962E-02 + 1.15787E-02 1.17431E-02 1.18608E-02 + 1.17860E-02 1.19719E-02 1.21074E-02 + 1.19899E-02 1.21964E-02 1.23490E-02 +* GROUP 2 + 2.39482E-01 2.40335E-01 2.40874E-01 + 2.48188E-01 2.49921E-01 2.51194E-01 + 2.56731E-01 2.59308E-01 2.61289E-01 + 2.40362E-01 2.41196E-01 2.41716E-01 + 2.49066E-01 2.50779E-01 2.52036E-01 + 2.57610E-01 2.60169E-01 2.62132E-01 + 2.41574E-01 2.42392E-01 2.42896E-01 + 2.50279E-01 2.51979E-01 2.53215E-01 + 2.58822E-01 2.61365E-01 2.63312E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 8.18827E-03 8.26922E-03 8.32725E-03 + 8.19721E-03 8.28004E-03 8.33977E-03 + 8.20480E-03 8.28937E-03 8.35059E-03 + 8.21266E-03 8.29449E-03 8.35311E-03 + 8.22141E-03 8.30529E-03 8.36543E-03 + 8.22884E-03 8.31447E-03 8.37613E-03 + 8.22950E-03 8.31227E-03 8.37127E-03 + 8.23802E-03 8.32281E-03 8.38355E-03 + 8.24534E-03 8.33186E-03 8.39394E-03 +* GROUP 2 + 3.66941E-01 3.67545E-01 3.67790E-01 + 3.66911E-01 3.67545E-01 3.67816E-01 + 3.66872E-01 3.67533E-01 3.67829E-01 + 3.68274E-01 3.68840E-01 3.69050E-01 + 3.68249E-01 3.68848E-01 3.69087E-01 + 3.68217E-01 3.68846E-01 3.69110E-01 + 3.70187E-01 3.70721E-01 3.70896E-01 + 3.70170E-01 3.70746E-01 3.70944E-01 + 3.70145E-01 3.70743E-01 3.70977E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 9.71310E-14 9.80879E-14 9.87738E-14 + 9.72347E-14 9.82139E-14 9.89194E-14 + 9.73225E-14 9.83216E-14 9.90449E-14 + 9.74163E-14 9.83838E-14 9.90768E-14 + 9.75179E-14 9.85093E-14 9.92200E-14 + 9.76039E-14 9.86155E-14 9.93439E-14 + 9.76133E-14 9.85918E-14 9.92892E-14 + 9.77118E-14 9.87142E-14 9.94320E-14 + 9.77964E-14 9.88187E-14 9.95520E-14 +* GROUP 2 + 4.33680E-12 4.34377E-12 4.34651E-12 + 4.33652E-12 4.34386E-12 4.34691E-12 + 4.33613E-12 4.34380E-12 4.34716E-12 + 4.35255E-12 4.35907E-12 4.36139E-12 + 4.35233E-12 4.35925E-12 4.36192E-12 + 4.35203E-12 4.35930E-12 4.36229E-12 + 4.37515E-12 4.38129E-12 4.38321E-12 + 4.37503E-12 4.38168E-12 4.38387E-12 + 4.37482E-12 4.38173E-12 4.38436E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77294E-01 5.01171E-01 5.20054E-01 + 4.78102E-01 5.02070E-01 5.21033E-01 + 4.78809E-01 5.02885E-01 5.21988E-01 + 4.77584E-01 5.01486E-01 5.20376E-01 + 4.78389E-01 5.02370E-01 5.21343E-01 + 4.79095E-01 5.03171E-01 5.22266E-01 + 4.77896E-01 5.01804E-01 5.20700E-01 + 4.78704E-01 5.02687E-01 5.21661E-01 + 4.79392E-01 5.03471E-01 5.22547E-01 +* GROUP 1 -> 2 + 1.27753E-02 1.40129E-02 1.50002E-02 + 1.27617E-02 1.40074E-02 1.50023E-02 + 1.27412E-02 1.39915E-02 1.49920E-02 + 1.26476E-02 1.38821E-02 1.48656E-02 + 1.26334E-02 1.38746E-02 1.48654E-02 + 1.26111E-02 1.38571E-02 1.48532E-02 + 1.25172E-02 1.37477E-02 1.47276E-02 + 1.25014E-02 1.37385E-02 1.47250E-02 + 1.24785E-02 1.37189E-02 1.47111E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16175E+00 1.25311E+00 1.32731E+00 + 1.15620E+00 1.24655E+00 1.31985E+00 + 1.15091E+00 1.24035E+00 1.31279E+00 + 1.16161E+00 1.25297E+00 1.32719E+00 + 1.15607E+00 1.24644E+00 1.31975E+00 + 1.15080E+00 1.24024E+00 1.31270E+00 + 1.16153E+00 1.25292E+00 1.32717E+00 + 1.15600E+00 1.24640E+00 1.31975E+00 + 1.15075E+00 1.24025E+00 1.31271E+00 +* +* ADF Table +* +* GROUP 1 + 1.00464 1.00501 1.00530 + 1.00413 1.00440 1.00462 + 1.00367 1.00384 1.00396 + 1.00456 1.00493 1.00522 + 1.00406 1.00434 1.00455 + 1.00361 1.00376 1.00389 + 1.00449 1.00488 1.00515 + 1.00399 1.00432 1.00449 + 1.00355 1.00371 1.00382 +* GROUP 2 + 1.25269 1.25899 1.26404 + 1.24730 1.25267 1.25708 + 1.24226 1.24713 1.25092 + 1.25267 1.25899 1.26403 + 1.24732 1.25280 1.25714 + 1.24233 1.24718 1.25101 + 1.25258 1.25891 1.26395 + 1.24729 1.25290 1.25716 + 1.24236 1.24724 1.25106 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.12697E-08 2.24072E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33339E-02 3.10291E-02 1.16272E-01 3.03992E-01 8.77543E-01 2.88755E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.68130E-05 6.52186E-04 5.49697E-04 1.18295E-03 6.71243E-04 2.35929E-04 +* +* ---------------------------------------------------------- +* BURNUP 17.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27636E-01 2.35491E-01 2.41707E-01 + 2.27020E-01 2.34741E-01 2.40844E-01 + 2.26417E-01 2.34021E-01 2.40015E-01 + 2.27436E-01 2.35279E-01 2.41488E-01 + 2.26811E-01 2.34524E-01 2.40621E-01 + 2.26209E-01 2.33800E-01 2.39783E-01 + 2.27233E-01 2.35063E-01 2.41263E-01 + 2.26607E-01 2.34308E-01 2.40393E-01 + 2.25999E-01 2.33580E-01 2.39552E-01 +* GROUP 2 + 8.12242E-01 8.65024E-01 9.08016E-01 + 8.09653E-01 8.61609E-01 9.03802E-01 + 8.07382E-01 8.58591E-01 9.00071E-01 + 8.12597E-01 8.65392E-01 9.08391E-01 + 8.10036E-01 8.62003E-01 9.04200E-01 + 8.07783E-01 8.59007E-01 9.00495E-01 + 8.13059E-01 8.65861E-01 9.08860E-01 + 8.10521E-01 8.62496E-01 9.04708E-01 + 8.08290E-01 8.59534E-01 9.01029E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.15887E-02 1.17582E-02 1.18795E-02 + 1.18067E-02 1.19980E-02 1.21383E-02 + 1.20189E-02 1.22323E-02 1.23902E-02 + 1.18227E-02 1.19986E-02 1.21257E-02 + 1.20393E-02 1.22373E-02 1.23831E-02 + 1.22504E-02 1.24702E-02 1.26335E-02 + 1.20644E-02 1.22477E-02 1.23801E-02 + 1.22796E-02 1.24851E-02 1.26362E-02 + 1.24888E-02 1.27164E-02 1.28851E-02 +* GROUP 2 + 1.93572E-01 1.94256E-01 1.94711E-01 + 2.02289E-01 2.03845E-01 2.05031E-01 + 2.10831E-01 2.13226E-01 2.15112E-01 + 1.94215E-01 1.94883E-01 1.95321E-01 + 2.02931E-01 2.04469E-01 2.05636E-01 + 2.11469E-01 2.13847E-01 2.15715E-01 + 1.95141E-01 1.95792E-01 1.96212E-01 + 2.03851E-01 2.05374E-01 2.06524E-01 + 2.12386E-01 2.14748E-01 2.16599E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.17379E-03 7.24317E-03 7.29287E-03 + 7.18440E-03 7.25554E-03 7.30697E-03 + 7.19344E-03 7.26633E-03 7.31915E-03 + 7.17938E-03 7.24904E-03 7.29934E-03 + 7.18968E-03 7.26124E-03 7.31318E-03 + 7.19864E-03 7.27192E-03 7.32518E-03 + 7.17947E-03 7.24970E-03 7.30027E-03 + 7.18969E-03 7.26170E-03 7.31381E-03 + 7.19834E-03 7.27214E-03 7.32560E-03 +* GROUP 2 + 2.92495E-01 2.92542E-01 2.92362E-01 + 2.92555E-01 2.92643E-01 2.92499E-01 + 2.92602E-01 2.92729E-01 2.92617E-01 + 2.93601E-01 2.93618E-01 2.93407E-01 + 2.93667E-01 2.93725E-01 2.93551E-01 + 2.93718E-01 2.93817E-01 2.93676E-01 + 2.95205E-01 2.95194E-01 2.94953E-01 + 2.95274E-01 2.95308E-01 2.95102E-01 + 2.95329E-01 2.95403E-01 2.95234E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.50476E-14 8.58673E-14 8.64548E-14 + 8.51690E-14 8.60093E-14 8.66163E-14 + 8.52720E-14 8.61323E-14 8.67559E-14 + 8.51123E-14 8.59355E-14 8.65298E-14 + 8.52302E-14 8.60755E-14 8.66888E-14 + 8.53323E-14 8.61973E-14 8.68257E-14 + 8.51131E-14 8.59428E-14 8.65405E-14 + 8.52299E-14 8.60803E-14 8.66956E-14 + 8.53282E-14 8.61991E-14 8.68301E-14 +* GROUP 2 + 3.45184E-12 3.45222E-12 3.44993E-12 + 3.45265E-12 3.45352E-12 3.45168E-12 + 3.45331E-12 3.45465E-12 3.45318E-12 + 3.46491E-12 3.46493E-12 3.46227E-12 + 3.46578E-12 3.46631E-12 3.46409E-12 + 3.46649E-12 3.46750E-12 3.46569E-12 + 3.48387E-12 3.48355E-12 3.48054E-12 + 3.48479E-12 3.48501E-12 3.48243E-12 + 3.48553E-12 3.48623E-12 3.48410E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.79827E-01 5.03827E-01 5.22786E-01 + 4.80718E-01 5.04883E-01 5.23943E-01 + 4.81540E-01 5.05756E-01 5.24953E-01 + 4.80141E-01 5.04132E-01 5.23092E-01 + 4.80999E-01 5.05164E-01 5.24242E-01 + 4.81813E-01 5.06046E-01 5.25212E-01 + 4.80478E-01 5.04470E-01 5.23425E-01 + 4.81323E-01 5.05465E-01 5.24560E-01 + 4.82115E-01 5.06340E-01 5.25504E-01 +* GROUP 1 -> 2 + 1.26014E-02 1.38386E-02 1.48271E-02 + 1.26044E-02 1.38522E-02 1.48498E-02 + 1.25985E-02 1.38514E-02 1.48543E-02 + 1.24799E-02 1.37115E-02 1.46971E-02 + 1.24801E-02 1.37221E-02 1.47171E-02 + 1.24726E-02 1.37200E-02 1.47190E-02 + 1.23486E-02 1.35746E-02 1.45562E-02 + 1.23474E-02 1.35835E-02 1.45737E-02 + 1.23377E-02 1.35797E-02 1.45737E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16344E+00 1.25454E+00 1.32861E+00 + 1.15717E+00 1.24714E+00 1.32022E+00 + 1.15123E+00 1.24017E+00 1.31232E+00 + 1.16316E+00 1.25426E+00 1.32834E+00 + 1.15692E+00 1.24690E+00 1.31999E+00 + 1.15100E+00 1.23995E+00 1.31211E+00 + 1.16290E+00 1.25401E+00 1.32810E+00 + 1.15667E+00 1.24667E+00 1.31977E+00 + 1.15079E+00 1.23976E+00 1.31192E+00 +* +* ADF Table +* +* GROUP 1 + 0.99801 0.99784 0.99763 + 0.99766 0.99740 0.99716 + 0.99734 0.99701 0.99671 + 0.99795 0.99774 0.99753 + 0.99759 0.99731 0.99711 + 0.99728 0.99694 0.99665 + 0.99788 0.99768 0.99753 + 0.99755 0.99730 0.99704 + 0.99723 0.99689 0.99658 +* GROUP 2 + 1.15488 1.15897 1.16223 + 1.15118 1.15483 1.15755 + 1.14798 1.15116 1.15362 + 1.15471 1.15878 1.16202 + 1.15106 1.15469 1.15749 + 1.14788 1.15106 1.15352 + 1.15450 1.15859 1.16188 + 1.15089 1.15465 1.15746 + 1.14775 1.15095 1.15342 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.10762E-08 2.30512E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33682E-02 3.08453E-02 1.16597E-01 3.05375E-01 8.77976E-01 2.91433E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.42929E-05 6.94328E-04 5.65625E-04 1.25773E-03 7.19053E-04 2.54362E-04 +* +* ---------------------------------------------------------- +* BURNUP 20.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27533E-01 2.35379E-01 2.41593E-01 + 2.26890E-01 2.34606E-01 2.40697E-01 + 2.26267E-01 2.33860E-01 2.39840E-01 + 2.27329E-01 2.35169E-01 2.41371E-01 + 2.26686E-01 2.34387E-01 2.40473E-01 + 2.26058E-01 2.33637E-01 2.39613E-01 + 2.27124E-01 2.34951E-01 2.41148E-01 + 2.26479E-01 2.34166E-01 2.40244E-01 + 2.25847E-01 2.33417E-01 2.39377E-01 +* GROUP 2 + 8.12072E-01 8.65002E-01 9.08138E-01 + 8.09361E-01 8.61445E-01 9.03755E-01 + 8.06982E-01 8.58299E-01 8.99877E-01 + 8.12407E-01 8.65346E-01 9.08482E-01 + 8.09720E-01 8.61812E-01 9.04130E-01 + 8.07357E-01 8.58686E-01 9.00273E-01 + 8.12837E-01 8.65778E-01 9.08913E-01 + 8.10172E-01 8.62269E-01 9.04598E-01 + 8.07836E-01 8.59181E-01 9.00774E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.16363E-02 1.18064E-02 1.19290E-02 + 1.18559E-02 1.20488E-02 1.21901E-02 + 1.20697E-02 1.22844E-02 1.24438E-02 + 1.18689E-02 1.20457E-02 1.21738E-02 + 1.20875E-02 1.22868E-02 1.24336E-02 + 1.23000E-02 1.25214E-02 1.26859E-02 + 1.21099E-02 1.22940E-02 1.24275E-02 + 1.23268E-02 1.25337E-02 1.26860E-02 + 1.25375E-02 1.27666E-02 1.29365E-02 +* GROUP 2 + 1.87369E-01 1.88013E-01 1.88441E-01 + 1.96106E-01 1.97622E-01 1.98781E-01 + 2.04663E-01 2.07018E-01 2.08878E-01 + 1.87984E-01 1.88611E-01 1.89021E-01 + 1.96717E-01 1.98215E-01 1.99357E-01 + 2.05270E-01 2.07608E-01 2.09450E-01 + 1.88873E-01 1.89483E-01 1.89876E-01 + 1.97599E-01 1.99079E-01 2.00206E-01 + 2.06149E-01 2.08472E-01 2.10296E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.04347E-03 7.11137E-03 7.16026E-03 + 7.05437E-03 7.12415E-03 7.17462E-03 + 7.06367E-03 7.13523E-03 7.18709E-03 + 7.04686E-03 7.11524E-03 7.16459E-03 + 7.05766E-03 7.12779E-03 7.17871E-03 + 7.06681E-03 7.13875E-03 7.19106E-03 + 7.04527E-03 7.11413E-03 7.16371E-03 + 7.05584E-03 7.12643E-03 7.17762E-03 + 7.06474E-03 7.13716E-03 7.18967E-03 +* GROUP 2 + 2.83068E-01 2.83066E-01 2.82850E-01 + 2.83130E-01 2.83170E-01 2.82990E-01 + 2.83180E-01 2.83258E-01 2.83111E-01 + 2.84140E-01 2.84108E-01 2.83862E-01 + 2.84207E-01 2.84217E-01 2.84008E-01 + 2.84261E-01 2.84311E-01 2.84135E-01 + 2.85697E-01 2.85637E-01 2.85360E-01 + 2.85767E-01 2.85745E-01 2.85512E-01 + 2.85823E-01 2.85849E-01 2.85646E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.34937E-14 8.42962E-14 8.48738E-14 + 8.36184E-14 8.44426E-14 8.50385E-14 + 8.37242E-14 8.45687E-14 8.51807E-14 + 8.35330E-14 8.43410E-14 8.49241E-14 + 8.36564E-14 8.44843E-14 8.50858E-14 + 8.37603E-14 8.46094E-14 8.52265E-14 + 8.35138E-14 8.43274E-14 8.49134E-14 + 8.36345E-14 8.44680E-14 8.50723E-14 + 8.37352E-14 8.45900E-14 8.52095E-14 +* GROUP 2 + 3.33966E-12 3.33945E-12 3.33674E-12 + 3.34051E-12 3.34080E-12 3.33852E-12 + 3.34121E-12 3.34196E-12 3.34008E-12 + 3.35233E-12 3.35176E-12 3.34870E-12 + 3.35322E-12 3.35317E-12 3.35055E-12 + 3.35396E-12 3.35439E-12 3.35217E-12 + 3.37073E-12 3.36983E-12 3.36641E-12 + 3.37165E-12 3.37123E-12 3.36832E-12 + 3.37243E-12 3.37257E-12 3.37003E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.80087E-01 5.04055E-01 5.23039E-01 + 4.80986E-01 5.05146E-01 5.24218E-01 + 4.81833E-01 5.06060E-01 5.25229E-01 + 4.80406E-01 5.04376E-01 5.23352E-01 + 4.81276E-01 5.05435E-01 5.24516E-01 + 4.82102E-01 5.06343E-01 5.25509E-01 + 4.80725E-01 5.04710E-01 5.23686E-01 + 4.81595E-01 5.05748E-01 5.24845E-01 + 4.82390E-01 5.06648E-01 5.25805E-01 +* GROUP 1 -> 2 + 1.25882E-02 1.38250E-02 1.48131E-02 + 1.25934E-02 1.38424E-02 1.48405E-02 + 1.25901E-02 1.38430E-02 1.48471E-02 + 1.24661E-02 1.36981E-02 1.46830E-02 + 1.24696E-02 1.37130E-02 1.47076E-02 + 1.24645E-02 1.37119E-02 1.47128E-02 + 1.23351E-02 1.35620E-02 1.45426E-02 + 1.23369E-02 1.35745E-02 1.45647E-02 + 1.23297E-02 1.35718E-02 1.45676E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16409E+00 1.25515E+00 1.32923E+00 + 1.15770E+00 1.24764E+00 1.32070E+00 + 1.15164E+00 1.24053E+00 1.31267E+00 + 1.16380E+00 1.25486E+00 1.32896E+00 + 1.15742E+00 1.24737E+00 1.32044E+00 + 1.15138E+00 1.24029E+00 1.31242E+00 + 1.16349E+00 1.25459E+00 1.32867E+00 + 1.15716E+00 1.24714E+00 1.32019E+00 + 1.15116E+00 1.24007E+00 1.31222E+00 +* +* ADF Table +* +* GROUP 1 + 0.99748 0.99722 0.99697 + 0.99715 0.99684 0.99655 + 0.99685 0.99648 0.99614 + 0.99741 0.99714 0.99689 + 0.99710 0.99675 0.99651 + 0.99681 0.99641 0.99609 + 0.99735 0.99709 0.99688 + 0.99705 0.99672 0.99644 + 0.99675 0.99636 0.99602 +* GROUP 2 + 1.14190 1.14557 1.14851 + 1.13858 1.14190 1.14433 + 1.13573 1.13862 1.14082 + 1.14175 1.14541 1.14832 + 1.13845 1.14176 1.14427 + 1.13564 1.13852 1.14075 + 1.14155 1.14524 1.14819 + 1.13830 1.14175 1.14424 + 1.13552 1.13841 1.14063 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.10676E-08 2.31577E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33736E-02 3.08186E-02 1.16642E-01 3.05561E-01 8.78011E-01 2.91804E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.40959E-05 7.02334E-04 5.69157E-04 1.27143E-03 7.27576E-04 2.57571E-04 +* +* ---------------------------------------------------------- +* BURNUP 22.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27413E-01 2.35260E-01 2.41464E-01 + 2.26750E-01 2.34453E-01 2.40535E-01 + 2.26099E-01 2.33678E-01 2.39649E-01 + 2.27208E-01 2.35046E-01 2.41244E-01 + 2.26543E-01 2.34234E-01 2.40309E-01 + 2.25887E-01 2.33452E-01 2.39415E-01 + 2.27002E-01 2.34825E-01 2.41018E-01 + 2.26332E-01 2.34012E-01 2.40081E-01 + 2.25677E-01 2.33227E-01 2.39184E-01 +* GROUP 2 + 8.11931E-01 8.65005E-01 9.08276E-01 + 8.09096E-01 8.61301E-01 9.03729E-01 + 8.06607E-01 8.58022E-01 8.99699E-01 + 8.12239E-01 8.65314E-01 9.08585E-01 + 8.09433E-01 8.61636E-01 9.04071E-01 + 8.06957E-01 8.58385E-01 9.00067E-01 + 8.12634E-01 8.65714E-01 9.08980E-01 + 8.09852E-01 8.62069E-01 9.04498E-01 + 8.07404E-01 8.58847E-01 9.00537E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.16848E-02 1.18560E-02 1.19796E-02 + 1.19060E-02 1.21002E-02 1.22430E-02 + 1.21213E-02 1.23378E-02 1.24985E-02 + 1.19164E-02 1.20943E-02 1.22234E-02 + 1.21366E-02 1.23374E-02 1.24854E-02 + 1.23503E-02 1.25736E-02 1.27393E-02 + 1.21568E-02 1.23418E-02 1.24764E-02 + 1.23752E-02 1.25835E-02 1.27371E-02 + 1.25875E-02 1.28182E-02 1.29894E-02 +* GROUP 2 + 1.81520E-01 1.82128E-01 1.82531E-01 + 1.90275E-01 1.91755E-01 1.92891E-01 + 1.98847E-01 2.01167E-01 2.03002E-01 + 1.82106E-01 1.82696E-01 1.83082E-01 + 1.90856E-01 1.92318E-01 1.93436E-01 + 1.99422E-01 2.01726E-01 2.03545E-01 + 1.82958E-01 1.83534E-01 1.83901E-01 + 1.91702E-01 1.93146E-01 1.94249E-01 + 2.00265E-01 2.02552E-01 2.04355E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.91452E-03 6.98127E-03 7.02926E-03 + 6.92568E-03 6.99420E-03 7.04385E-03 + 6.93511E-03 7.00552E-03 7.05660E-03 + 6.91606E-03 6.98319E-03 7.03164E-03 + 6.92712E-03 6.99598E-03 7.04601E-03 + 6.93628E-03 7.00715E-03 7.05854E-03 + 6.91296E-03 6.98044E-03 7.02913E-03 + 6.92366E-03 6.99301E-03 7.04326E-03 + 6.93278E-03 7.00396E-03 7.05565E-03 +* GROUP 2 + 2.73905E-01 2.73861E-01 2.73614E-01 + 2.73968E-01 2.73966E-01 2.73756E-01 + 2.74018E-01 2.74055E-01 2.73877E-01 + 2.74942E-01 2.74868E-01 2.74593E-01 + 2.75010E-01 2.74978E-01 2.74740E-01 + 2.75062E-01 2.75073E-01 2.74867E-01 + 2.76451E-01 2.76351E-01 2.76046E-01 + 2.76521E-01 2.76461E-01 2.76196E-01 + 2.76578E-01 2.76562E-01 2.76332E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.19569E-14 8.27458E-14 8.33127E-14 + 8.20841E-14 8.28933E-14 8.34796E-14 + 8.21913E-14 8.30222E-14 8.36245E-14 + 8.19743E-14 8.27675E-14 8.33399E-14 + 8.21004E-14 8.29137E-14 8.35043E-14 + 8.22042E-14 8.30402E-14 8.36467E-14 + 8.19375E-14 8.27348E-14 8.33102E-14 + 8.20593E-14 8.28783E-14 8.34715E-14 + 8.21625E-14 8.30025E-14 8.36121E-14 +* GROUP 2 + 3.23062E-12 3.22993E-12 3.22685E-12 + 3.23149E-12 3.23128E-12 3.22866E-12 + 3.23219E-12 3.23246E-12 3.23021E-12 + 3.24288E-12 3.24182E-12 3.23841E-12 + 3.24380E-12 3.24324E-12 3.24028E-12 + 3.24452E-12 3.24448E-12 3.24190E-12 + 3.26071E-12 3.25935E-12 3.25558E-12 + 3.26165E-12 3.26076E-12 3.25749E-12 + 3.26243E-12 3.26208E-12 3.25921E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.80334E-01 5.04325E-01 5.23333E-01 + 4.81266E-01 5.05418E-01 5.24500E-01 + 4.82106E-01 5.06349E-01 5.25511E-01 + 4.80637E-01 5.04638E-01 5.23630E-01 + 4.81565E-01 5.05721E-01 5.24803E-01 + 4.82374E-01 5.06628E-01 5.25789E-01 + 4.80966E-01 5.04957E-01 5.23951E-01 + 4.81889E-01 5.06039E-01 5.25137E-01 + 4.82596E-01 5.06938E-01 5.26096E-01 +* GROUP 1 -> 2 + 1.25761E-02 1.38138E-02 1.48021E-02 + 1.25851E-02 1.38343E-02 1.48329E-02 + 1.25827E-02 1.38372E-02 1.48436E-02 + 1.24550E-02 1.36875E-02 1.46723E-02 + 1.24616E-02 1.37057E-02 1.47009E-02 + 1.24573E-02 1.37066E-02 1.47088E-02 + 1.23240E-02 1.35512E-02 1.45317E-02 + 1.23295E-02 1.35675E-02 1.45582E-02 + 1.23233E-02 1.35659E-02 1.45638E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16473E+00 1.25577E+00 1.32986E+00 + 1.15821E+00 1.24810E+00 1.32118E+00 + 1.15203E+00 1.24089E+00 1.31299E+00 + 1.16441E+00 1.25544E+00 1.32954E+00 + 1.15792E+00 1.24781E+00 1.32089E+00 + 1.15174E+00 1.24062E+00 1.31273E+00 + 1.16409E+00 1.25513E+00 1.32923E+00 + 1.15764E+00 1.24754E+00 1.32061E+00 + 1.15149E+00 1.24036E+00 1.31250E+00 +* +* ADF Table +* +* GROUP 1 + 0.99706 0.99676 0.99645 + 0.99676 0.99640 0.99607 + 0.99648 0.99608 0.99572 + 0.99699 0.99668 0.99639 + 0.99671 0.99632 0.99603 + 0.99642 0.99601 0.99566 + 0.99693 0.99663 0.99636 + 0.99665 0.99630 0.99596 + 0.99638 0.99595 0.99560 +* GROUP 2 + 1.12998 1.13327 1.13588 + 1.12703 1.13002 1.13217 + 1.12451 1.12710 1.12910 + 1.12982 1.13309 1.13570 + 1.12689 1.12985 1.13212 + 1.12441 1.12700 1.12900 + 1.12963 1.13293 1.13557 + 1.12673 1.12986 1.13209 + 1.12430 1.12690 1.12891 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.10678E-08 2.32602E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33791E-02 3.07927E-02 1.16686E-01 3.05746E-01 8.78051E-01 2.92167E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.38540E-05 7.09951E-04 5.72418E-04 1.28454E-03 7.35784E-04 2.60674E-04 +* +* ---------------------------------------------------------- +* BURNUP 32.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26770E-01 2.34575E-01 2.40752E-01 + 2.25996E-01 2.33649E-01 2.39681E-01 + 2.25267E-01 2.32768E-01 2.38669E-01 + 2.26557E-01 2.34353E-01 2.40525E-01 + 2.25782E-01 2.33419E-01 2.39448E-01 + 2.25043E-01 2.32529E-01 2.38431E-01 + 2.26343E-01 2.34126E-01 2.40291E-01 + 2.25564E-01 2.33186E-01 2.39211E-01 + 2.24827E-01 2.32296E-01 2.38191E-01 +* GROUP 2 + 8.11137E-01 8.64664E-01 9.08391E-01 + 8.07866E-01 8.60445E-01 9.03250E-01 + 8.04974E-01 8.56704E-01 8.98694E-01 + 8.11343E-01 8.64865E-01 9.08577E-01 + 8.08097E-01 8.60673E-01 9.03475E-01 + 8.05234E-01 8.56958E-01 8.98949E-01 + 8.11606E-01 8.65113E-01 9.08814E-01 + 8.08395E-01 8.60964E-01 9.03757E-01 + 8.05557E-01 8.57285E-01 8.99269E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.18860E-02 1.20613E-02 1.21895E-02 + 1.21139E-02 1.23137E-02 1.24610E-02 + 1.23348E-02 1.25576E-02 1.27229E-02 + 1.21159E-02 1.22980E-02 1.24311E-02 + 1.23429E-02 1.25492E-02 1.27014E-02 + 1.25621E-02 1.27912E-02 1.29620E-02 + 1.23549E-02 1.25444E-02 1.26830E-02 + 1.25802E-02 1.27939E-02 1.29517E-02 + 1.27979E-02 1.30343E-02 1.32106E-02 +* GROUP 2 + 1.61702E-01 1.62227E-01 1.62583E-01 + 1.70502E-01 1.71901E-01 1.72990E-01 + 1.79108E-01 1.81347E-01 1.83137E-01 + 1.62180E-01 1.62689E-01 1.63027E-01 + 1.70973E-01 1.72356E-01 1.73427E-01 + 1.79573E-01 1.81796E-01 1.83570E-01 + 1.62897E-01 1.63390E-01 1.63712E-01 + 1.71681E-01 1.73038E-01 1.74103E-01 + 1.80274E-01 1.82481E-01 1.84238E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.41391E-03 6.47622E-03 6.52131E-03 + 6.42545E-03 6.48982E-03 6.53656E-03 + 6.43567E-03 6.50172E-03 6.54979E-03 + 6.40968E-03 6.47235E-03 6.51776E-03 + 6.42109E-03 6.48581E-03 6.53274E-03 + 6.43100E-03 6.49737E-03 6.54587E-03 + 6.40186E-03 6.46490E-03 6.51050E-03 + 6.41295E-03 6.47803E-03 6.52521E-03 + 6.42275E-03 6.48946E-03 6.53814E-03 +* GROUP 2 + 2.39958E-01 2.39809E-01 2.39496E-01 + 2.40009E-01 2.39900E-01 2.39621E-01 + 2.40049E-01 2.39978E-01 2.39729E-01 + 2.40862E-01 2.40687E-01 2.40346E-01 + 2.40916E-01 2.40781E-01 2.40476E-01 + 2.40958E-01 2.40861E-01 2.40590E-01 + 2.42187E-01 2.41987E-01 2.41620E-01 + 2.42242E-01 2.42068E-01 2.41753E-01 + 2.42285E-01 2.42165E-01 2.41870E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.59946E-14 7.67309E-14 7.72636E-14 + 7.61251E-14 7.68848E-14 7.74364E-14 + 7.62401E-14 7.70191E-14 7.75857E-14 + 7.59444E-14 7.66847E-14 7.72213E-14 + 7.60733E-14 7.68372E-14 7.73910E-14 + 7.61846E-14 7.69671E-14 7.75390E-14 + 7.58522E-14 7.65971E-14 7.71360E-14 + 7.59774E-14 7.67454E-14 7.73024E-14 + 7.60873E-14 7.68740E-14 7.74479E-14 +* GROUP 2 + 2.82682E-12 2.82487E-12 2.82102E-12 + 2.82756E-12 2.82609E-12 2.82265E-12 + 2.82814E-12 2.82713E-12 2.82406E-12 + 2.83749E-12 2.83524E-12 2.83107E-12 + 2.83826E-12 2.83650E-12 2.83274E-12 + 2.83888E-12 2.83757E-12 2.83423E-12 + 2.85315E-12 2.85060E-12 2.84612E-12 + 2.85393E-12 2.85169E-12 2.84783E-12 + 2.85455E-12 2.85297E-12 2.84935E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.81389E-01 5.05523E-01 5.24544E-01 + 4.82426E-01 5.06593E-01 5.25744E-01 + 4.83072E-01 5.07520E-01 5.26792E-01 + 4.81677E-01 5.05810E-01 5.24858E-01 + 4.82708E-01 5.06876E-01 5.26032E-01 + 4.83347E-01 5.07715E-01 5.27021E-01 + 4.82017E-01 5.06108E-01 5.25174E-01 + 4.83009E-01 5.07184E-01 5.26335E-01 + 4.83625E-01 5.07968E-01 5.27231E-01 +* GROUP 1 -> 2 + 1.25654E-02 1.38073E-02 1.48004E-02 + 1.25837E-02 1.38369E-02 1.48410E-02 + 1.25875E-02 1.38506E-02 1.48615E-02 + 1.24437E-02 1.36799E-02 1.46697E-02 + 1.24599E-02 1.37072E-02 1.47071E-02 + 1.24616E-02 1.37182E-02 1.47254E-02 + 1.23120E-02 1.35423E-02 1.45277E-02 + 1.23256E-02 1.35673E-02 1.45626E-02 + 1.23256E-02 1.35757E-02 1.45783E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16666E+00 1.25756E+00 1.33168E+00 + 1.15969E+00 1.24946E+00 1.32247E+00 + 1.15312E+00 1.24179E+00 1.31379E+00 + 1.16625E+00 1.25715E+00 1.33124E+00 + 1.15930E+00 1.24908E+00 1.32208E+00 + 1.15276E+00 1.24142E+00 1.31343E+00 + 1.16582E+00 1.25672E+00 1.33080E+00 + 1.15891E+00 1.24868E+00 1.32168E+00 + 1.15239E+00 1.24105E+00 1.31307E+00 +* +* ADF Table +* +* GROUP 1 + 0.99647 0.99604 0.99570 + 0.99627 0.99585 0.99545 + 0.99613 0.99567 0.99527 + 0.99641 0.99599 0.99561 + 0.99622 0.99579 0.99541 + 0.99606 0.99558 0.99520 + 0.99637 0.99596 0.99562 + 0.99616 0.99576 0.99537 + 0.99602 0.99554 0.99514 +* GROUP 2 + 1.09287 1.09506 1.09682 + 1.09113 1.09320 1.09460 + 1.08970 1.09150 1.09288 + 1.09270 1.09490 1.09661 + 1.09098 1.09303 1.09455 + 1.08958 1.09138 1.09274 + 1.09252 1.09475 1.09653 + 1.09081 1.09297 1.09450 + 1.08946 1.09126 1.09262 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.11760E-08 2.36085E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.34003E-02 3.06999E-02 1.16860E-01 3.06455E-01 8.78276E-01 2.93518E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.23218E-05 7.34093E-04 5.81350E-04 1.32714E-03 7.63188E-04 2.71210E-04 +* +* ---------------------------------------------------------- +* BURNUP 35.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26572E-01 2.34361E-01 2.40533E-01 + 2.25776E-01 2.33404E-01 2.39426E-01 + 2.25021E-01 2.32494E-01 2.38382E-01 + 2.26362E-01 2.34132E-01 2.40297E-01 + 2.25556E-01 2.33172E-01 2.39185E-01 + 2.24795E-01 2.32253E-01 2.38138E-01 + 2.26143E-01 2.33906E-01 2.40065E-01 + 2.25339E-01 2.32935E-01 2.38947E-01 + 2.24566E-01 2.32019E-01 2.37896E-01 +* GROUP 2 + 8.10849E-01 8.64468E-01 9.08284E-01 + 8.07480E-01 8.60133E-01 9.03015E-01 + 8.04505E-01 8.56286E-01 8.98336E-01 + 8.11033E-01 8.64641E-01 9.08439E-01 + 8.07690E-01 8.60338E-01 9.03211E-01 + 8.04738E-01 8.56521E-01 8.98570E-01 + 8.11258E-01 8.64853E-01 9.08638E-01 + 8.07955E-01 8.60592E-01 9.03453E-01 + 8.05034E-01 8.56814E-01 8.98854E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.19343E-02 1.21111E-02 1.22399E-02 + 1.21638E-02 1.23645E-02 1.25133E-02 + 1.23860E-02 1.26098E-02 1.27765E-02 + 1.21647E-02 1.23477E-02 1.24814E-02 + 1.23930E-02 1.26003E-02 1.27540E-02 + 1.26134E-02 1.28439E-02 1.30157E-02 + 1.24034E-02 1.25943E-02 1.27335E-02 + 1.26303E-02 1.28452E-02 1.30042E-02 + 1.28492E-02 1.30871E-02 1.32645E-02 +* GROUP 2 + 1.57511E-01 1.58031E-01 1.58386E-01 + 1.66315E-01 1.67708E-01 1.68797E-01 + 1.74923E-01 1.77155E-01 1.78945E-01 + 1.57964E-01 1.58467E-01 1.58807E-01 + 1.66760E-01 1.68137E-01 1.69210E-01 + 1.75363E-01 1.77579E-01 1.79352E-01 + 1.58649E-01 1.59137E-01 1.59461E-01 + 1.67436E-01 1.68789E-01 1.69855E-01 + 1.76031E-01 1.78231E-01 1.79990E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.29306E-03 6.35447E-03 6.39895E-03 + 6.30463E-03 6.36802E-03 6.41413E-03 + 6.31489E-03 6.37995E-03 6.42744E-03 + 6.28794E-03 6.34946E-03 6.39426E-03 + 6.29931E-03 6.36296E-03 6.40929E-03 + 6.30925E-03 6.37465E-03 6.42250E-03 + 6.27924E-03 6.34123E-03 6.38626E-03 + 6.29042E-03 6.35444E-03 6.40096E-03 + 6.30014E-03 6.36595E-03 6.41406E-03 +* GROUP 2 + 2.32163E-01 2.32001E-01 2.31681E-01 + 2.32211E-01 2.32086E-01 2.31801E-01 + 2.32246E-01 2.32157E-01 2.31902E-01 + 2.33037E-01 2.32848E-01 2.32502E-01 + 2.33085E-01 2.32936E-01 2.32625E-01 + 2.33122E-01 2.33011E-01 2.32731E-01 + 2.34318E-01 2.34105E-01 2.33734E-01 + 2.34368E-01 2.34181E-01 2.33860E-01 + 2.34405E-01 2.34270E-01 2.33970E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.45563E-14 7.52817E-14 7.58074E-14 + 7.46867E-14 7.54348E-14 7.59791E-14 + 7.48019E-14 7.55689E-14 7.61285E-14 + 7.44956E-14 7.52226E-14 7.57517E-14 + 7.46237E-14 7.53748E-14 7.59215E-14 + 7.47351E-14 7.55061E-14 7.60700E-14 + 7.43933E-14 7.51256E-14 7.56579E-14 + 7.45191E-14 7.52748E-14 7.58236E-14 + 7.46278E-14 7.54037E-14 7.59705E-14 +* GROUP 2 + 2.73415E-12 2.73205E-12 2.72812E-12 + 2.73484E-12 2.73319E-12 2.72968E-12 + 2.73538E-12 2.73416E-12 2.73101E-12 + 2.74446E-12 2.74205E-12 2.73782E-12 + 2.74517E-12 2.74323E-12 2.73941E-12 + 2.74573E-12 2.74424E-12 2.74080E-12 + 2.75960E-12 2.75691E-12 2.75237E-12 + 2.76032E-12 2.75794E-12 2.75400E-12 + 2.76088E-12 2.75912E-12 2.75543E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.81681E-01 5.05811E-01 5.24842E-01 + 4.82684E-01 5.06874E-01 5.26026E-01 + 4.83366E-01 5.07733E-01 5.27087E-01 + 4.81991E-01 5.06092E-01 5.25156E-01 + 4.82975E-01 5.07163E-01 5.26309E-01 + 4.83626E-01 5.07969E-01 5.27311E-01 + 4.82324E-01 5.06411E-01 5.25476E-01 + 4.83127E-01 5.07468E-01 5.26613E-01 + 4.83903E-01 5.08249E-01 5.27562E-01 +* GROUP 1 -> 2 + 1.25720E-02 1.38165E-02 1.48101E-02 + 1.25917E-02 1.38463E-02 1.48534E-02 + 1.25971E-02 1.38615E-02 1.48757E-02 + 1.24499E-02 1.36880E-02 1.46776E-02 + 1.24673E-02 1.37161E-02 1.47188E-02 + 1.24702E-02 1.37285E-02 1.47384E-02 + 1.23177E-02 1.35495E-02 1.45354E-02 + 1.23323E-02 1.35753E-02 1.45734E-02 + 1.23340E-02 1.35856E-02 1.45901E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16698E+00 1.25786E+00 1.33196E+00 + 1.15993E+00 1.24965E+00 1.32264E+00 + 1.15327E+00 1.24187E+00 1.31388E+00 + 1.16655E+00 1.25742E+00 1.33151E+00 + 1.15952E+00 1.24924E+00 1.32222E+00 + 1.15289E+00 1.24151E+00 1.31349E+00 + 1.16610E+00 1.25695E+00 1.33104E+00 + 1.15910E+00 1.24883E+00 1.32180E+00 + 1.15252E+00 1.24110E+00 1.31309E+00 +* +* ADF Table +* +* GROUP 1 + 0.99654 0.99610 0.99577 + 0.99636 0.99594 0.99554 + 0.99624 0.99579 0.99540 + 0.99650 0.99604 0.99567 + 0.99631 0.99587 0.99551 + 0.99616 0.99571 0.99535 + 0.99644 0.99601 0.99570 + 0.99626 0.99586 0.99547 + 0.99611 0.99567 0.99529 +* GROUP 2 + 1.08567 1.08769 1.08930 + 1.08414 1.08607 1.08737 + 1.08293 1.08461 1.08590 + 1.08550 1.08752 1.08904 + 1.08399 1.08590 1.08732 + 1.08278 1.08447 1.08578 + 1.08530 1.08737 1.08901 + 1.08381 1.08582 1.08725 + 1.08265 1.08434 1.08563 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.12279E-08 2.36810E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.34053E-02 3.06798E-02 1.16902E-01 3.06620E-01 8.78346E-01 2.93820E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.18111E-05 7.38279E-04 5.82446E-04 1.33484E-03 7.68373E-04 2.73254E-04 +* +* ---------------------------------------------------------- +* BURNUP 37.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26361E-01 2.34135E-01 2.40292E-01 + 2.25540E-01 2.33146E-01 2.39156E-01 + 2.24764E-01 2.32211E-01 2.38081E-01 + 2.26145E-01 2.33904E-01 2.40058E-01 + 2.25317E-01 2.32911E-01 2.38911E-01 + 2.24536E-01 2.31966E-01 2.37827E-01 + 2.25925E-01 2.33675E-01 2.39819E-01 + 2.25099E-01 2.32676E-01 2.38666E-01 + 2.24312E-01 2.31725E-01 2.37581E-01 +* GROUP 2 + 8.10540E-01 8.64243E-01 9.08141E-01 + 8.07078E-01 8.59795E-01 9.02742E-01 + 8.04018E-01 8.55854E-01 8.97959E-01 + 8.10699E-01 8.64388E-01 9.08270E-01 + 8.07265E-01 8.59974E-01 9.02910E-01 + 8.04231E-01 8.56066E-01 8.98156E-01 + 8.10899E-01 8.64565E-01 9.08430E-01 + 8.07501E-01 8.60198E-01 9.03118E-01 + 8.04494E-01 8.56327E-01 8.98411E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.19805E-02 1.21583E-02 1.22878E-02 + 1.22117E-02 1.24140E-02 1.25635E-02 + 1.24353E-02 1.26601E-02 1.28278E-02 + 1.22112E-02 1.23953E-02 1.25297E-02 + 1.24405E-02 1.26497E-02 1.28042E-02 + 1.26629E-02 1.28944E-02 1.30671E-02 + 1.24503E-02 1.26422E-02 1.27818E-02 + 1.26782E-02 1.28949E-02 1.30547E-02 + 1.28986E-02 1.31376E-02 1.33159E-02 +* GROUP 2 + 1.53555E-01 1.54072E-01 1.54432E-01 + 1.62360E-01 1.63751E-01 1.64843E-01 + 1.70970E-01 1.73199E-01 1.74992E-01 + 1.53983E-01 1.54485E-01 1.54829E-01 + 1.62782E-01 1.64156E-01 1.65232E-01 + 1.71384E-01 1.73598E-01 1.75373E-01 + 1.54639E-01 1.55126E-01 1.55453E-01 + 1.63428E-01 1.64779E-01 1.65847E-01 + 1.72021E-01 1.74219E-01 1.75979E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.17420E-03 6.23468E-03 6.27856E-03 + 6.18581E-03 6.24828E-03 6.29380E-03 + 6.19617E-03 6.26026E-03 6.30718E-03 + 6.16822E-03 6.22884E-03 6.27301E-03 + 6.17947E-03 6.24237E-03 6.28808E-03 + 6.18969E-03 6.25413E-03 6.30130E-03 + 6.15883E-03 6.21998E-03 6.26431E-03 + 6.16998E-03 6.23320E-03 6.27911E-03 + 6.17995E-03 6.24472E-03 6.29214E-03 +* GROUP 2 + 2.24652E-01 2.24478E-01 2.24154E-01 + 2.24694E-01 2.24557E-01 2.24266E-01 + 2.24724E-01 2.24623E-01 2.24362E-01 + 2.25495E-01 2.25295E-01 2.24947E-01 + 2.25538E-01 2.25377E-01 2.25061E-01 + 2.25569E-01 2.25445E-01 2.25160E-01 + 2.26735E-01 2.26511E-01 2.26137E-01 + 2.26778E-01 2.26582E-01 2.26255E-01 + 2.26808E-01 2.26663E-01 2.26357E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.31420E-14 7.38566E-14 7.43750E-14 + 7.32725E-14 7.40099E-14 7.45469E-14 + 7.33886E-14 7.41441E-14 7.46970E-14 + 7.30712E-14 7.37875E-14 7.43094E-14 + 7.31976E-14 7.39398E-14 7.44792E-14 + 7.33120E-14 7.40715E-14 7.46272E-14 + 7.29609E-14 7.36833E-14 7.42073E-14 + 7.30860E-14 7.38321E-14 7.43739E-14 + 7.31972E-14 7.39607E-14 7.45194E-14 +* GROUP 2 + 2.64488E-12 2.64264E-12 2.63866E-12 + 2.64550E-12 2.64371E-12 2.64012E-12 + 2.64599E-12 2.64462E-12 2.64140E-12 + 2.65483E-12 2.65228E-12 2.64802E-12 + 2.65547E-12 2.65339E-12 2.64952E-12 + 2.65597E-12 2.65433E-12 2.65083E-12 + 2.66947E-12 2.66665E-12 2.66208E-12 + 2.67012E-12 2.66763E-12 2.66362E-12 + 2.67060E-12 2.66873E-12 2.66496E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.81991E-01 5.06076E-01 5.25110E-01 + 4.82881E-01 5.07151E-01 5.26342E-01 + 4.83676E-01 5.08031E-01 5.27383E-01 + 4.82298E-01 5.06369E-01 5.25434E-01 + 4.83063E-01 5.07432E-01 5.26623E-01 + 4.83961E-01 5.08300E-01 5.27635E-01 + 4.82622E-01 5.06701E-01 5.25760E-01 + 4.83348E-01 5.07720E-01 5.26916E-01 + 4.84269E-01 5.08589E-01 5.27900E-01 +* GROUP 1 -> 2 + 1.25821E-02 1.38266E-02 1.48228E-02 + 1.26030E-02 1.38606E-02 1.48696E-02 + 1.26099E-02 1.38753E-02 1.48921E-02 + 1.24588E-02 1.36979E-02 1.46900E-02 + 1.24769E-02 1.37291E-02 1.47335E-02 + 1.24819E-02 1.37418E-02 1.47537E-02 + 1.23252E-02 1.35587E-02 1.45469E-02 + 1.23413E-02 1.35873E-02 1.45866E-02 + 1.23445E-02 1.35975E-02 1.46042E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16727E+00 1.25812E+00 1.33223E+00 + 1.16013E+00 1.24981E+00 1.32278E+00 + 1.15340E+00 1.24195E+00 1.31391E+00 + 1.16683E+00 1.25766E+00 1.33175E+00 + 1.15971E+00 1.24939E+00 1.32234E+00 + 1.15301E+00 1.24155E+00 1.31351E+00 + 1.16634E+00 1.25717E+00 1.33123E+00 + 1.15926E+00 1.24895E+00 1.32188E+00 + 1.15260E+00 1.24114E+00 1.31309E+00 +* +* ADF Table +* +* GROUP 1 + 0.99665 0.99621 0.99590 + 0.99650 0.99608 0.99572 + 0.99642 0.99598 0.99561 + 0.99662 0.99616 0.99581 + 0.99643 0.99605 0.99568 + 0.99636 0.99589 0.99555 + 0.99655 0.99613 0.99582 + 0.99639 0.99601 0.99564 + 0.99632 0.99584 0.99548 +* GROUP 2 + 1.07897 1.08086 1.08235 + 1.07765 1.07945 1.08069 + 1.07665 1.07821 1.07944 + 1.07879 1.08068 1.08211 + 1.07746 1.07931 1.08060 + 1.07650 1.07805 1.07929 + 1.07859 1.08051 1.08204 + 1.07730 1.07919 1.08052 + 1.07636 1.07791 1.07914 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.12886E-08 2.37491E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.34101E-02 3.06611E-02 1.16941E-01 3.06779E-01 8.78420E-01 2.94106E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.12619E-05 7.41690E-04 5.83091E-04 1.34128E-03 7.72831E-04 2.75035E-04 +* +END diff --git a/smpl/xsec/HELIOS/2G_XSEC_m43 b/smpl/xsec/HELIOS/2G_XSEC_m43 new file mode 100644 index 0000000..3cb058d --- /dev/null +++ b/smpl/xsec/HELIOS/2G_XSEC_m43 @@ -0,0 +1,1283 @@ +* Input Control +1 0 * ADF, CROD +* Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 +* +* ---------------------------------------------------------- +* BURNUP 0.15 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.28605E-01 2.36570E-01 2.42868E-01 + 2.28128E-01 2.35975E-01 2.42178E-01 + 2.27668E-01 2.35425E-01 2.41549E-01 + 2.28405E-01 2.36351E-01 2.42653E-01 + 2.27930E-01 2.35770E-01 2.41967E-01 + 2.27470E-01 2.35211E-01 2.41334E-01 + 2.28218E-01 2.36144E-01 2.42429E-01 + 2.27743E-01 2.35571E-01 2.41759E-01 + 2.27278E-01 2.35010E-01 2.41119E-01 +* GROUP 2 + 8.17560E-01 8.69442E-01 9.11566E-01 + 8.15784E-01 8.66972E-01 9.08432E-01 + 8.14246E-01 8.64813E-01 9.05674E-01 + 8.18114E-01 8.70020E-01 9.12157E-01 + 8.16347E-01 8.67568E-01 9.09042E-01 + 8.14820E-01 8.65424E-01 9.06308E-01 + 8.18787E-01 8.70721E-01 9.12878E-01 + 8.17040E-01 8.68279E-01 9.09790E-01 + 8.15534E-01 8.66167E-01 9.07072E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.12740E-02 1.14294E-02 1.15415E-02 + 1.14808E-02 1.16577E-02 1.17871E-02 + 1.16841E-02 1.18819E-02 1.20280E-02 + 1.15183E-02 1.16812E-02 1.17980E-02 + 1.17240E-02 1.19080E-02 1.20423E-02 + 1.19258E-02 1.21309E-02 1.22820E-02 + 1.17630E-02 1.19330E-02 1.20554E-02 + 1.19673E-02 1.21585E-02 1.22980E-02 + 1.21676E-02 1.23801E-02 1.25362E-02 +* GROUP 2 + 2.48017E-01 2.48910E-01 2.49480E-01 + 2.56739E-01 2.58515E-01 2.59823E-01 + 2.65299E-01 2.67924E-01 2.69940E-01 + 2.48912E-01 2.49788E-01 2.50338E-01 + 2.57633E-01 2.59391E-01 2.60681E-01 + 2.66194E-01 2.68803E-01 2.70801E-01 + 2.50143E-01 2.51003E-01 2.51535E-01 + 2.58863E-01 2.60613E-01 2.61877E-01 + 2.67426E-01 2.70016E-01 2.71998E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 8.56682E-03 8.65262E-03 8.71400E-03 + 8.57595E-03 8.66383E-03 8.72688E-03 + 8.58362E-03 8.67345E-03 8.73799E-03 + 8.59451E-03 8.68147E-03 8.74339E-03 + 8.60344E-03 8.69247E-03 8.75620E-03 + 8.61108E-03 8.70190E-03 8.76723E-03 + 8.61407E-03 8.70196E-03 8.76456E-03 + 8.62282E-03 8.71269E-03 8.77714E-03 + 8.63031E-03 8.72199E-03 8.78793E-03 +* GROUP 2 + 3.82948E-01 3.83646E-01 3.83967E-01 + 3.82916E-01 3.83650E-01 3.83999E-01 + 3.82876E-01 3.83639E-01 3.84013E-01 + 3.84297E-01 3.84959E-01 3.85243E-01 + 3.84272E-01 3.84971E-01 3.85286E-01 + 3.84239E-01 3.84970E-01 3.85312E-01 + 3.86229E-01 3.86858E-01 3.87108E-01 + 3.86212E-01 3.86895E-01 3.87161E-01 + 3.86187E-01 3.86885E-01 3.87195E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 1.01530E-13 1.02544E-13 1.03269E-13 + 1.01637E-13 1.02675E-13 1.03419E-13 + 1.01726E-13 1.02786E-13 1.03548E-13 + 1.01855E-13 1.02882E-13 1.03614E-13 + 1.01958E-13 1.03010E-13 1.03763E-13 + 1.02047E-13 1.03120E-13 1.03891E-13 + 1.02084E-13 1.03122E-13 1.03862E-13 + 1.02185E-13 1.03247E-13 1.04008E-13 + 1.02272E-13 1.03355E-13 1.04133E-13 +* GROUP 2 + 4.52538E-12 4.53344E-12 4.53707E-12 + 4.52509E-12 4.53358E-12 4.53755E-12 + 4.52470E-12 4.53354E-12 4.53782E-12 + 4.54132E-12 4.54897E-12 4.55215E-12 + 4.54111E-12 4.54920E-12 4.55276E-12 + 4.54080E-12 4.54927E-12 4.55316E-12 + 4.56416E-12 4.57140E-12 4.57419E-12 + 4.56404E-12 4.57193E-12 4.57492E-12 + 4.56382E-12 4.57190E-12 4.57542E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.76719E-01 5.00596E-01 5.19482E-01 + 4.77484E-01 5.01505E-01 5.20474E-01 + 4.78220E-01 5.02286E-01 5.21322E-01 + 4.77032E-01 5.00921E-01 5.19798E-01 + 4.77773E-01 5.01792E-01 5.20765E-01 + 4.78516E-01 5.02566E-01 5.21599E-01 + 4.77350E-01 5.01235E-01 5.20119E-01 + 4.78058E-01 5.02096E-01 5.21069E-01 + 4.78818E-01 5.02874E-01 5.21903E-01 +* GROUP 1 -> 2 + 1.26013E-02 1.38339E-02 1.48158E-02 + 1.25864E-02 1.38242E-02 1.48126E-02 + 1.25637E-02 1.38067E-02 1.47996E-02 + 1.24734E-02 1.37023E-02 1.46805E-02 + 1.24570E-02 1.36910E-02 1.46758E-02 + 1.24335E-02 1.36717E-02 1.46607E-02 + 1.23431E-02 1.35666E-02 1.45417E-02 + 1.23250E-02 1.35541E-02 1.45352E-02 + 1.23008E-02 1.35332E-02 1.45179E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16239E+00 1.25392E+00 1.32824E+00 + 1.15696E+00 1.24749E+00 1.32091E+00 + 1.15177E+00 1.24140E+00 1.31397E+00 + 1.16228E+00 1.25383E+00 1.32816E+00 + 1.15685E+00 1.24741E+00 1.32085E+00 + 1.15168E+00 1.24133E+00 1.31393E+00 + 1.16224E+00 1.25382E+00 1.32818E+00 + 1.15682E+00 1.24740E+00 1.32088E+00 + 1.15169E+00 1.24137E+00 1.31398E+00 +* +* ADF Table +* +* GROUP 1 + 1.00378 1.00403 1.00423 + 1.00319 1.00334 1.00346 + 1.00265 1.00270 1.00269 + 1.00372 1.00397 1.00417 + 1.00312 1.00330 1.00341 + 1.00259 1.00262 1.00263 + 1.00365 1.00392 1.00410 + 1.00306 1.00326 1.00334 + 1.00254 1.00257 1.00257 +* GROUP 2 + 1.29022 1.29699 1.30236 + 1.28393 1.28970 1.29433 + 1.27809 1.28319 1.28715 + 1.29030 1.29707 1.30247 + 1.28405 1.28989 1.29449 + 1.27826 1.28334 1.28735 + 1.29029 1.29708 1.30248 + 1.28411 1.29010 1.29460 + 1.27838 1.28350 1.28749 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.07297E-08 2.22968E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33333E-02 3.10246E-02 1.16238E-01 3.03907E-01 8.77445E-01 2.88666E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.70662E-05 6.54092E-04 5.50589E-04 1.18324E-03 6.71390E-04 2.35689E-04 +* +* ---------------------------------------------------------- +* BURNUP 17.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27579E-01 2.35442E-01 2.41667E-01 + 2.26994E-01 2.34736E-01 2.40854E-01 + 2.26425E-01 2.34054E-01 2.40075E-01 + 2.27374E-01 2.35228E-01 2.41447E-01 + 2.26785E-01 2.34520E-01 2.40630E-01 + 2.26217E-01 2.33828E-01 2.39840E-01 + 2.27166E-01 2.35017E-01 2.41222E-01 + 2.26577E-01 2.34306E-01 2.40402E-01 + 2.26006E-01 2.33612E-01 2.39613E-01 +* GROUP 2 + 8.13873E-01 8.66471E-01 9.09284E-01 + 8.11491E-01 8.63297E-01 9.05341E-01 + 8.09410E-01 8.60497E-01 9.01851E-01 + 8.14279E-01 8.66891E-01 9.09706E-01 + 8.11918E-01 8.63737E-01 9.05791E-01 + 8.09853E-01 8.60957E-01 9.02325E-01 + 8.14797E-01 8.67421E-01 9.10248E-01 + 8.12461E-01 8.64289E-01 9.06363E-01 + 8.10412E-01 8.61540E-01 9.02926E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.17658E-02 1.19395E-02 1.20657E-02 + 1.19792E-02 1.21751E-02 1.23192E-02 + 1.21876E-02 1.24048E-02 1.25664E-02 + 1.20000E-02 1.21805E-02 1.23120E-02 + 1.22122E-02 1.24148E-02 1.25642E-02 + 1.24192E-02 1.26432E-02 1.28099E-02 + 1.22411E-02 1.24296E-02 1.25663E-02 + 1.24515E-02 1.26625E-02 1.28169E-02 + 1.26569E-02 1.28893E-02 1.30612E-02 +* GROUP 2 + 2.04243E-01 2.04970E-01 2.05454E-01 + 2.12955E-01 2.14556E-01 2.15772E-01 + 2.21494E-01 2.23936E-01 2.25853E-01 + 2.04919E-01 2.05629E-01 2.06096E-01 + 2.13629E-01 2.15213E-01 2.16411E-01 + 2.22165E-01 2.24591E-01 2.26490E-01 + 2.05882E-01 2.06577E-01 2.07026E-01 + 2.14590E-01 2.16160E-01 2.17337E-01 + 2.23123E-01 2.25533E-01 2.27416E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.55342E-03 7.62690E-03 7.67977E-03 + 7.56402E-03 7.63957E-03 7.69412E-03 + 7.57330E-03 7.65042E-03 7.70652E-03 + 7.56178E-03 7.63581E-03 7.68915E-03 + 7.57225E-03 7.64828E-03 7.70328E-03 + 7.58134E-03 7.65898E-03 7.71542E-03 + 7.56408E-03 7.63882E-03 7.69238E-03 + 7.57421E-03 7.65100E-03 7.70622E-03 + 7.58316E-03 7.66153E-03 7.71828E-03 +* GROUP 2 + 3.10724E-01 3.10862E-01 3.10748E-01 + 3.10779E-01 3.10960E-01 3.10884E-01 + 3.10819E-01 3.11041E-01 3.10998E-01 + 3.11873E-01 3.11979E-01 3.11833E-01 + 3.11933E-01 3.12084E-01 3.11978E-01 + 3.11977E-01 3.12170E-01 3.12098E-01 + 3.13530E-01 3.13607E-01 3.13431E-01 + 3.13596E-01 3.13724E-01 3.13580E-01 + 3.13643E-01 3.13809E-01 3.13710E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.94721E-14 9.03397E-14 9.09640E-14 + 8.95940E-14 9.04854E-14 9.11290E-14 + 8.97000E-14 9.06097E-14 9.12713E-14 + 8.95696E-14 9.04438E-14 9.10737E-14 + 8.96901E-14 9.05871E-14 9.12362E-14 + 8.97939E-14 9.07094E-14 9.13753E-14 + 8.95964E-14 9.04789E-14 9.11111E-14 + 8.97125E-14 9.06189E-14 9.12703E-14 + 8.98148E-14 9.07392E-14 9.14084E-14 +* GROUP 2 + 3.66689E-12 3.66832E-12 3.66680E-12 + 3.66765E-12 3.66960E-12 3.66854E-12 + 3.66823E-12 3.67067E-12 3.67000E-12 + 3.68046E-12 3.68151E-12 3.67962E-12 + 3.68129E-12 3.68287E-12 3.68145E-12 + 3.68191E-12 3.68401E-12 3.68300E-12 + 3.70005E-12 3.70076E-12 3.69851E-12 + 3.70093E-12 3.70227E-12 3.70039E-12 + 3.70160E-12 3.70338E-12 3.70205E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.79252E-01 5.03216E-01 5.22173E-01 + 4.80079E-01 5.04179E-01 5.23279E-01 + 4.80863E-01 5.05088E-01 5.24188E-01 + 4.79551E-01 5.03533E-01 5.22477E-01 + 4.80372E-01 5.04473E-01 5.23580E-01 + 4.81148E-01 5.05368E-01 5.24477E-01 + 4.79871E-01 5.03847E-01 5.22782E-01 + 4.80683E-01 5.04787E-01 5.23880E-01 + 4.81446E-01 5.05656E-01 5.24787E-01 +* GROUP 1 -> 2 + 1.24324E-02 1.36623E-02 1.46451E-02 + 1.24291E-02 1.36682E-02 1.46595E-02 + 1.24180E-02 1.36638E-02 1.46617E-02 + 1.23098E-02 1.35347E-02 1.45140E-02 + 1.23050E-02 1.35388E-02 1.45263E-02 + 1.22926E-02 1.35331E-02 1.45258E-02 + 1.21792E-02 1.33992E-02 1.43735E-02 + 1.21725E-02 1.34011E-02 1.43838E-02 + 1.21594E-02 1.33934E-02 1.43818E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16318E+00 1.25437E+00 1.32854E+00 + 1.15708E+00 1.24721E+00 1.32041E+00 + 1.15131E+00 1.24045E+00 1.31269E+00 + 1.16296E+00 1.25415E+00 1.32832E+00 + 1.15687E+00 1.24701E+00 1.32021E+00 + 1.15111E+00 1.24026E+00 1.31252E+00 + 1.16274E+00 1.25395E+00 1.32814E+00 + 1.15669E+00 1.24684E+00 1.32007E+00 + 1.15095E+00 1.24013E+00 1.31242E+00 +* +* ADF Table +* +* GROUP 1 + 0.99742 0.99711 0.99688 + 0.99694 0.99658 0.99626 + 0.99652 0.99604 0.99567 + 0.99735 0.99703 0.99678 + 0.99687 0.99649 0.99619 + 0.99647 0.99598 0.99559 + 0.99728 0.99699 0.99676 + 0.99680 0.99646 0.99611 + 0.99641 0.99593 0.99554 +* GROUP 2 + 1.19752 1.20223 1.20590 + 1.19263 1.19679 1.19983 + 1.18837 1.19185 1.19449 + 1.19742 1.20214 1.20583 + 1.19257 1.19665 1.19978 + 1.18834 1.19180 1.19447 + 1.19723 1.20193 1.20569 + 1.19245 1.19666 1.19979 + 1.18827 1.19174 1.19441 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.05293E-08 2.28838E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33655E-02 3.08519E-02 1.16549E-01 3.05231E-01 8.77883E-01 2.91217E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.45247E-05 6.92547E-04 5.64681E-04 1.25190E-03 7.15486E-04 2.52753E-04 +* +* ---------------------------------------------------------- +* BURNUP 20.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27471E-01 2.35334E-01 2.41556E-01 + 2.26868E-01 2.34605E-01 2.40717E-01 + 2.26280E-01 2.33900E-01 2.39904E-01 + 2.27268E-01 2.35120E-01 2.41335E-01 + 2.26658E-01 2.34384E-01 2.40489E-01 + 2.26073E-01 2.33676E-01 2.39673E-01 + 2.27059E-01 2.34904E-01 2.41110E-01 + 2.26449E-01 2.34166E-01 2.40260E-01 + 2.25859E-01 2.33453E-01 2.39447E-01 +* GROUP 2 + 8.13613E-01 8.66348E-01 9.09286E-01 + 8.11125E-01 8.63044E-01 9.05197E-01 + 8.08943E-01 8.60125E-01 9.01575E-01 + 8.13997E-01 8.66740E-01 9.09688E-01 + 8.11528E-01 8.63459E-01 9.05621E-01 + 8.09362E-01 8.60567E-01 9.02024E-01 + 8.14484E-01 8.67239E-01 9.10189E-01 + 8.12039E-01 8.63981E-01 9.06158E-01 + 8.09898E-01 8.61114E-01 9.02591E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.18117E-02 1.19866E-02 1.21139E-02 + 1.20268E-02 1.22239E-02 1.23694E-02 + 1.22364E-02 1.24553E-02 1.26179E-02 + 1.20446E-02 1.22266E-02 1.23588E-02 + 1.22584E-02 1.24624E-02 1.26129E-02 + 1.24667E-02 1.26925E-02 1.28602E-02 + 1.22849E-02 1.24746E-02 1.26122E-02 + 1.24971E-02 1.27091E-02 1.28648E-02 + 1.27036E-02 1.29374E-02 1.31106E-02 +* GROUP 2 + 1.98205E-01 1.98893E-01 1.99349E-01 + 2.06933E-01 2.08493E-01 2.09683E-01 + 2.15483E-01 2.17886E-01 2.19775E-01 + 1.98853E-01 1.99524E-01 1.99962E-01 + 2.07578E-01 2.09122E-01 2.10292E-01 + 2.16125E-01 2.18512E-01 2.20384E-01 + 1.99783E-01 2.00437E-01 2.00858E-01 + 2.08503E-01 2.10030E-01 2.11183E-01 + 2.17048E-01 2.19417E-01 2.21274E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.42212E-03 7.49415E-03 7.54609E-03 + 7.43303E-03 7.50710E-03 7.56076E-03 + 7.44252E-03 7.51829E-03 7.57334E-03 + 7.42827E-03 7.50091E-03 7.55317E-03 + 7.43895E-03 7.51357E-03 7.56764E-03 + 7.44840E-03 7.52463E-03 7.58008E-03 + 7.42873E-03 7.50190E-03 7.55450E-03 + 7.43914E-03 7.51441E-03 7.56863E-03 + 7.44833E-03 7.52519E-03 7.58092E-03 +* GROUP 2 + 3.01508E-01 3.01595E-01 3.01442E-01 + 3.01565E-01 3.01693E-01 3.01580E-01 + 3.01607E-01 3.01776E-01 3.01696E-01 + 3.02625E-01 3.02680E-01 3.02497E-01 + 3.02687E-01 3.02787E-01 3.02641E-01 + 3.02731E-01 3.02875E-01 3.02764E-01 + 3.04239E-01 3.04266E-01 3.04052E-01 + 3.04304E-01 3.04377E-01 3.04202E-01 + 3.04353E-01 3.04469E-01 3.04333E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.79084E-14 8.87587E-14 8.93719E-14 + 8.80334E-14 8.89076E-14 8.95405E-14 + 8.81420E-14 8.90356E-14 8.96846E-14 + 8.79801E-14 8.88376E-14 8.94545E-14 + 8.81024E-14 8.89830E-14 8.96208E-14 + 8.82104E-14 8.91095E-14 8.97633E-14 + 8.79851E-14 8.88490E-14 8.94703E-14 + 8.81043E-14 8.89925E-14 8.96322E-14 + 8.82091E-14 8.91155E-14 8.97725E-14 +* GROUP 2 + 3.55722E-12 3.55805E-12 3.55607E-12 + 3.55802E-12 3.55934E-12 3.55783E-12 + 3.55862E-12 3.56044E-12 3.55932E-12 + 3.57042E-12 3.57087E-12 3.56853E-12 + 3.57127E-12 3.57225E-12 3.57037E-12 + 3.57190E-12 3.57341E-12 3.57194E-12 + 3.58949E-12 3.58961E-12 3.58691E-12 + 3.59038E-12 3.59105E-12 3.58881E-12 + 3.59106E-12 3.59225E-12 3.59049E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.79493E-01 5.03470E-01 5.22432E-01 + 4.80336E-01 5.04467E-01 5.23584E-01 + 4.81163E-01 5.05378E-01 5.24502E-01 + 4.79785E-01 5.03772E-01 5.22715E-01 + 4.80630E-01 5.04746E-01 5.23864E-01 + 4.81447E-01 5.05657E-01 5.24791E-01 + 4.80129E-01 5.04103E-01 5.23043E-01 + 4.80932E-01 5.05049E-01 5.24161E-01 + 4.81735E-01 5.05940E-01 5.25089E-01 +* GROUP 1 -> 2 + 1.24182E-02 1.36477E-02 1.46303E-02 + 1.24179E-02 1.36569E-02 1.46491E-02 + 1.24093E-02 1.36554E-02 1.46524E-02 + 1.22962E-02 1.35211E-02 1.44998E-02 + 1.22943E-02 1.35279E-02 1.45167E-02 + 1.22847E-02 1.35251E-02 1.45180E-02 + 1.21658E-02 1.33857E-02 1.43607E-02 + 1.21623E-02 1.33906E-02 1.43746E-02 + 1.21514E-02 1.33855E-02 1.43735E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16367E+00 1.25485E+00 1.32903E+00 + 1.15747E+00 1.24757E+00 1.32074E+00 + 1.15159E+00 1.24068E+00 1.31291E+00 + 1.16342E+00 1.25460E+00 1.32879E+00 + 1.15723E+00 1.24735E+00 1.32053E+00 + 1.15138E+00 1.24049E+00 1.31272E+00 + 1.16320E+00 1.25439E+00 1.32858E+00 + 1.15703E+00 1.24715E+00 1.32035E+00 + 1.15119E+00 1.24032E+00 1.31258E+00 +* +* ADF Table +* +* GROUP 1 + 0.99688 0.99654 0.99622 + 0.99643 0.99602 0.99565 + 0.99604 0.99550 0.99509 + 0.99681 0.99645 0.99614 + 0.99636 0.99593 0.99559 + 0.99600 0.99545 0.99502 + 0.99675 0.99639 0.99611 + 0.99630 0.99589 0.99550 + 0.99594 0.99540 0.99496 +* GROUP 2 + 1.18481 1.18911 1.19249 + 1.18027 1.18409 1.18680 + 1.17632 1.17950 1.18191 + 1.18470 1.18898 1.19238 + 1.18020 1.18395 1.18679 + 1.17630 1.17945 1.18189 + 1.18454 1.18884 1.19227 + 1.18009 1.18400 1.18682 + 1.17624 1.17939 1.18183 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.05188E-08 2.29829E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33706E-02 3.08266E-02 1.16591E-01 3.05409E-01 8.77918E-01 2.91571E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.43339E-05 7.00032E-04 5.67971E-04 1.26472E-03 7.23470E-04 2.55762E-04 +* +* ---------------------------------------------------------- +* BURNUP 22.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27357E-01 2.35214E-01 2.41431E-01 + 2.26730E-01 2.34457E-01 2.40561E-01 + 2.26126E-01 2.33731E-01 2.39723E-01 + 2.27153E-01 2.34998E-01 2.41209E-01 + 2.26523E-01 2.34242E-01 2.40335E-01 + 2.25915E-01 2.33505E-01 2.39494E-01 + 2.26944E-01 2.34782E-01 2.40987E-01 + 2.26313E-01 2.34016E-01 2.40110E-01 + 2.25702E-01 2.33283E-01 2.39262E-01 +* GROUP 2 + 8.13387E-01 8.66250E-01 9.09316E-01 + 8.10792E-01 8.62819E-01 9.05077E-01 + 8.08509E-01 8.59787E-01 9.01325E-01 + 8.13750E-01 8.66622E-01 9.09687E-01 + 8.11172E-01 8.63211E-01 9.05477E-01 + 8.08911E-01 8.60198E-01 9.01749E-01 + 8.14208E-01 8.67083E-01 9.10154E-01 + 8.11654E-01 8.63704E-01 9.05980E-01 + 8.09413E-01 8.60722E-01 9.02280E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.18584E-02 1.20348E-02 1.21626E-02 + 1.20749E-02 1.22735E-02 1.24202E-02 + 1.22857E-02 1.25064E-02 1.26702E-02 + 1.20901E-02 1.22732E-02 1.24063E-02 + 1.23056E-02 1.25108E-02 1.26626E-02 + 1.25149E-02 1.27424E-02 1.29111E-02 + 1.23297E-02 1.25207E-02 1.26588E-02 + 1.25436E-02 1.27565E-02 1.29138E-02 + 1.27514E-02 1.29863E-02 1.31608E-02 +* GROUP 2 + 1.92463E-01 1.93114E-01 1.93543E-01 + 2.01206E-01 2.02728E-01 2.03892E-01 + 2.09768E-01 2.12133E-01 2.13997E-01 + 1.93084E-01 1.93717E-01 1.94130E-01 + 2.01823E-01 2.03329E-01 2.04474E-01 + 2.10382E-01 2.12730E-01 2.14578E-01 + 1.93980E-01 1.94596E-01 1.94990E-01 + 2.02713E-01 2.04202E-01 2.05330E-01 + 2.11269E-01 2.13601E-01 2.15432E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.29211E-03 7.36283E-03 7.41377E-03 + 7.30326E-03 7.37595E-03 7.42869E-03 + 7.31298E-03 7.38740E-03 7.44152E-03 + 7.29623E-03 7.36735E-03 7.41880E-03 + 7.30722E-03 7.38041E-03 7.43350E-03 + 7.31677E-03 7.39167E-03 7.44615E-03 + 7.29494E-03 7.36673E-03 7.41836E-03 + 7.30570E-03 7.37939E-03 7.43282E-03 + 7.31499E-03 7.39041E-03 7.44521E-03 +* GROUP 2 + 2.92515E-01 2.92556E-01 2.92369E-01 + 2.92573E-01 2.92654E-01 2.92508E-01 + 2.92613E-01 2.92738E-01 2.92623E-01 + 2.93600E-01 2.93611E-01 2.93395E-01 + 2.93661E-01 2.93716E-01 2.93538E-01 + 2.93706E-01 2.93803E-01 2.93661E-01 + 2.95170E-01 2.95153E-01 2.94906E-01 + 2.95235E-01 2.95262E-01 2.95055E-01 + 2.95283E-01 2.95354E-01 2.95186E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.63602E-14 8.71953E-14 8.77965E-14 + 8.64880E-14 8.73455E-14 8.79678E-14 + 8.65989E-14 8.74763E-14 8.81144E-14 + 8.64082E-14 8.72479E-14 8.78553E-14 + 8.65339E-14 8.73975E-14 8.80237E-14 + 8.66429E-14 8.75260E-14 8.81683E-14 + 8.63928E-14 8.72405E-14 8.78499E-14 + 8.65159E-14 8.73853E-14 8.80155E-14 + 8.66215E-14 8.75109E-14 8.81567E-14 +* GROUP 2 + 3.45021E-12 3.45049E-12 3.44811E-12 + 3.45101E-12 3.45178E-12 3.44989E-12 + 3.45160E-12 3.45289E-12 3.45138E-12 + 3.46303E-12 3.46296E-12 3.46022E-12 + 3.46388E-12 3.46433E-12 3.46206E-12 + 3.46452E-12 3.46548E-12 3.46364E-12 + 3.48158E-12 3.48118E-12 3.47808E-12 + 3.48246E-12 3.48259E-12 3.47999E-12 + 3.48315E-12 3.48380E-12 3.48166E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.79731E-01 5.03726E-01 5.22665E-01 + 4.80585E-01 5.04764E-01 5.23853E-01 + 4.81452E-01 5.05652E-01 5.24820E-01 + 4.80037E-01 5.04036E-01 5.22954E-01 + 4.80872E-01 5.05036E-01 5.24141E-01 + 4.81723E-01 5.05933E-01 5.25099E-01 + 4.80383E-01 5.04371E-01 5.23291E-01 + 4.81193E-01 5.05336E-01 5.24447E-01 + 4.82002E-01 5.06211E-01 5.25395E-01 +* GROUP 1 -> 2 + 1.24063E-02 1.36355E-02 1.46188E-02 + 1.24084E-02 1.36482E-02 1.46417E-02 + 1.24030E-02 1.36482E-02 1.46458E-02 + 1.22852E-02 1.35096E-02 1.44895E-02 + 1.22860E-02 1.35200E-02 1.45099E-02 + 1.22780E-02 1.35186E-02 1.45120E-02 + 1.21551E-02 1.33744E-02 1.43502E-02 + 1.21541E-02 1.33824E-02 1.43684E-02 + 1.21447E-02 1.33790E-02 1.43680E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16417E+00 1.25532E+00 1.32950E+00 + 1.15785E+00 1.24793E+00 1.32108E+00 + 1.15188E+00 1.24091E+00 1.31312E+00 + 1.16390E+00 1.25505E+00 1.32924E+00 + 1.15761E+00 1.24769E+00 1.32084E+00 + 1.15165E+00 1.24070E+00 1.31292E+00 + 1.16365E+00 1.25480E+00 1.32900E+00 + 1.15738E+00 1.24747E+00 1.32064E+00 + 1.15144E+00 1.24051E+00 1.31273E+00 +* +* ADF Table +* +* GROUP 1 + 0.99645 0.99607 0.99570 + 0.99603 0.99557 0.99515 + 0.99566 0.99509 0.99461 + 0.99639 0.99597 0.99559 + 0.99596 0.99547 0.99510 + 0.99560 0.99502 0.99454 + 0.99632 0.99592 0.99559 + 0.99591 0.99545 0.99503 + 0.99555 0.99497 0.99449 +* GROUP 2 + 1.17291 1.17683 1.17991 + 1.16870 1.17220 1.17464 + 1.16508 1.16798 1.17016 + 1.17281 1.17670 1.17976 + 1.16863 1.17205 1.17464 + 1.16504 1.16794 1.17013 + 1.17265 1.17657 1.17969 + 1.16853 1.17210 1.17467 + 1.16498 1.16789 1.17009 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.05160E-08 2.30794E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33757E-02 3.08020E-02 1.16633E-01 3.05585E-01 8.77956E-01 2.91919E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.41095E-05 7.07245E-04 5.71069E-04 1.27714E-03 7.31240E-04 2.58700E-04 +* +* ---------------------------------------------------------- +* BURNUP 32.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26747E-01 2.34574E-01 2.40765E-01 + 2.26036E-01 2.33707E-01 2.39771E-01 + 2.25347E-01 2.32883E-01 2.38825E-01 + 2.26533E-01 2.34350E-01 2.40536E-01 + 2.25821E-01 2.33476E-01 2.39537E-01 + 2.25129E-01 2.32647E-01 2.38584E-01 + 2.26320E-01 2.34121E-01 2.40307E-01 + 2.25600E-01 2.33248E-01 2.39300E-01 + 2.24910E-01 2.32412E-01 2.38341E-01 +* GROUP 2 + 8.12379E-01 8.65677E-01 9.09167E-01 + 8.09374E-01 8.61764E-01 9.04381E-01 + 8.06720E-01 8.58301E-01 9.00136E-01 + 8.12644E-01 8.65936E-01 9.09426E-01 + 8.09664E-01 8.62053E-01 9.04671E-01 + 8.07037E-01 8.58620E-01 9.00457E-01 + 8.12981E-01 8.66269E-01 9.09755E-01 + 8.10035E-01 8.62418E-01 9.05039E-01 + 8.07432E-01 8.59016E-01 9.00861E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.20505E-02 1.22310E-02 1.23621E-02 + 1.22731E-02 1.24768E-02 1.26272E-02 + 1.24886E-02 1.27152E-02 1.28835E-02 + 1.22799E-02 1.24671E-02 1.26031E-02 + 1.25009E-02 1.27117E-02 1.28672E-02 + 1.27150E-02 1.29485E-02 1.31218E-02 + 1.25177E-02 1.27124E-02 1.28540E-02 + 1.27369E-02 1.29558E-02 1.31165E-02 + 1.29497E-02 1.31908E-02 1.33694E-02 +* GROUP 2 + 1.72626E-01 1.73179E-01 1.73546E-01 + 1.81408E-01 1.82835E-01 1.83938E-01 + 1.90001E-01 1.92271E-01 1.94075E-01 + 1.73143E-01 1.73679E-01 1.74030E-01 + 1.81920E-01 1.83330E-01 1.84416E-01 + 1.90509E-01 1.92761E-01 1.94549E-01 + 1.73910E-01 1.74430E-01 1.74765E-01 + 1.82680E-01 1.84063E-01 1.85142E-01 + 1.91263E-01 1.93499E-01 1.95271E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.78386E-03 6.84992E-03 6.89753E-03 + 6.79584E-03 6.86357E-03 6.91300E-03 + 6.80590E-03 6.87570E-03 6.92647E-03 + 6.78144E-03 6.84784E-03 6.89580E-03 + 6.79309E-03 6.86139E-03 6.91110E-03 + 6.80305E-03 6.87325E-03 6.92430E-03 + 6.77475E-03 6.84161E-03 6.88987E-03 + 6.78610E-03 6.85493E-03 6.90483E-03 + 6.79593E-03 6.86651E-03 6.91784E-03 +* GROUP 2 + 2.58788E-01 2.58707E-01 2.58436E-01 + 2.58833E-01 2.58792E-01 2.58559E-01 + 2.58862E-01 2.58862E-01 2.58661E-01 + 2.59747E-01 2.59639E-01 2.59341E-01 + 2.59795E-01 2.59728E-01 2.59467E-01 + 2.59828E-01 2.59802E-01 2.59576E-01 + 2.61146E-01 2.61012E-01 2.60688E-01 + 2.61196E-01 2.61086E-01 2.60817E-01 + 2.61230E-01 2.61180E-01 2.60931E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.03127E-14 8.10922E-14 8.16543E-14 + 8.04488E-14 8.12478E-14 8.18306E-14 + 8.05627E-14 8.13851E-14 8.19832E-14 + 8.02836E-14 8.10675E-14 8.16338E-14 + 8.04160E-14 8.12217E-14 8.18076E-14 + 8.05285E-14 8.13558E-14 8.19573E-14 + 8.02050E-14 8.09943E-14 8.15640E-14 + 8.03338E-14 8.11457E-14 8.17340E-14 + 8.04448E-14 8.12763E-14 8.18812E-14 +* GROUP 2 + 3.04899E-12 3.04783E-12 3.04446E-12 + 3.04966E-12 3.04897E-12 3.04606E-12 + 3.05013E-12 3.04994E-12 3.04741E-12 + 3.06032E-12 3.05883E-12 3.05515E-12 + 3.06102E-12 3.06003E-12 3.05679E-12 + 3.06154E-12 3.06104E-12 3.05821E-12 + 3.07685E-12 3.07506E-12 3.07105E-12 + 3.07757E-12 3.07607E-12 3.07274E-12 + 3.07810E-12 3.07733E-12 3.07423E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.80754E-01 5.04780E-01 5.23828E-01 + 4.81744E-01 5.05899E-01 5.24999E-01 + 4.82426E-01 5.06792E-01 5.26001E-01 + 4.81072E-01 5.05083E-01 5.24145E-01 + 4.82024E-01 5.06190E-01 5.25311E-01 + 4.82636E-01 5.07051E-01 5.26276E-01 + 4.81391E-01 5.05395E-01 5.24465E-01 + 4.82316E-01 5.06487E-01 5.25613E-01 + 4.82910E-01 5.07313E-01 5.26573E-01 +* GROUP 1 -> 2 + 1.23894E-02 1.36231E-02 1.46088E-02 + 1.24026E-02 1.36459E-02 1.46422E-02 + 1.24004E-02 1.36517E-02 1.46561E-02 + 1.22682E-02 1.34968E-02 1.44786E-02 + 1.22788E-02 1.35175E-02 1.45098E-02 + 1.22757E-02 1.35212E-02 1.45211E-02 + 1.21382E-02 1.33609E-02 1.43384E-02 + 1.21461E-02 1.33792E-02 1.43669E-02 + 1.21422E-02 1.33815E-02 1.43758E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16575E+00 1.25681E+00 1.33096E+00 + 1.15906E+00 1.24893E+00 1.32203E+00 + 1.15269E+00 1.24151E+00 1.31362E+00 + 1.16541E+00 1.25644E+00 1.33059E+00 + 1.15873E+00 1.24861E+00 1.32170E+00 + 1.15240E+00 1.24120E+00 1.31330E+00 + 1.16504E+00 1.25608E+00 1.33023E+00 + 1.15841E+00 1.24828E+00 1.32136E+00 + 1.15209E+00 1.24091E+00 1.31301E+00 +* +* ADF Table +* +* GROUP 1 + 0.99572 0.99522 0.99477 + 0.99541 0.99483 0.99433 + 0.99508 0.99447 0.99395 + 0.99566 0.99514 0.99468 + 0.99534 0.99475 0.99431 + 0.99503 0.99440 0.99388 + 0.99561 0.99510 0.99468 + 0.99528 0.99474 0.99424 + 0.99498 0.99436 0.99383 +* GROUP 2 + 1.13422 1.13698 1.13910 + 1.13115 1.13367 1.13530 + 1.12859 1.13064 1.13216 + 1.13410 1.13683 1.13895 + 1.13106 1.13351 1.13531 + 1.12853 1.13060 1.13210 + 1.13396 1.13672 1.13889 + 1.13096 1.13350 1.13533 + 1.12847 1.13054 1.13206 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.05965E-08 2.34164E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33959E-02 3.07124E-02 1.16801E-01 3.06269E-01 8.78162E-01 2.93228E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.27463E-05 7.31185E-04 5.80221E-04 1.31925E-03 7.58154E-04 2.69023E-04 +* +* ---------------------------------------------------------- +* BURNUP 35.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26563E-01 2.34375E-01 2.40562E-01 + 2.25828E-01 2.33481E-01 2.39534E-01 + 2.25111E-01 2.32632E-01 2.38558E-01 + 2.26347E-01 2.34147E-01 2.40326E-01 + 2.25604E-01 2.33249E-01 2.39296E-01 + 2.24891E-01 2.32397E-01 2.38314E-01 + 2.26134E-01 2.33922E-01 2.40092E-01 + 2.25391E-01 2.33018E-01 2.39055E-01 + 2.24673E-01 2.32160E-01 2.38072E-01 +* GROUP 2 + 8.12048E-01 8.65431E-01 9.09013E-01 + 8.08959E-01 8.61416E-01 9.04104E-01 + 8.06225E-01 8.57855E-01 8.99746E-01 + 8.12295E-01 8.65670E-01 9.09243E-01 + 8.09221E-01 8.61682E-01 9.04367E-01 + 8.06517E-01 8.58153E-01 9.00044E-01 + 8.12603E-01 8.65974E-01 9.09535E-01 + 8.09564E-01 8.62017E-01 9.04699E-01 + 8.06883E-01 8.58525E-01 9.00417E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.20970E-02 1.22788E-02 1.24108E-02 + 1.23213E-02 1.25265E-02 1.26778E-02 + 1.25376E-02 1.27658E-02 1.29354E-02 + 1.23264E-02 1.25146E-02 1.26517E-02 + 1.25490E-02 1.27611E-02 1.29176E-02 + 1.27640E-02 1.29990E-02 1.31735E-02 + 1.25643E-02 1.27600E-02 1.29025E-02 + 1.27852E-02 1.30048E-02 1.31668E-02 + 1.29984E-02 1.32412E-02 1.34211E-02 +* GROUP 2 + 1.68360E-01 1.68903E-01 1.69268E-01 + 1.77148E-01 1.78564E-01 1.79663E-01 + 1.85744E-01 1.88001E-01 1.89801E-01 + 1.68854E-01 1.69380E-01 1.69728E-01 + 1.77635E-01 1.79035E-01 1.80116E-01 + 1.86226E-01 1.88467E-01 1.90251E-01 + 1.69591E-01 1.70102E-01 1.70433E-01 + 1.78364E-01 1.79736E-01 1.80813E-01 + 1.86947E-01 1.89173E-01 1.90941E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.66012E-03 6.72510E-03 6.77207E-03 + 6.67208E-03 6.73889E-03 6.78762E-03 + 6.68210E-03 6.75102E-03 6.80109E-03 + 6.65643E-03 6.72179E-03 6.76902E-03 + 6.66815E-03 6.73543E-03 6.78440E-03 + 6.67808E-03 6.74731E-03 6.79767E-03 + 6.64883E-03 6.71459E-03 6.76205E-03 + 6.66022E-03 6.72790E-03 6.77708E-03 + 6.66997E-03 6.73961E-03 6.79020E-03 +* GROUP 2 + 2.50926E-01 2.50827E-01 2.50546E-01 + 2.50967E-01 2.50906E-01 2.50662E-01 + 2.50993E-01 2.50971E-01 2.50757E-01 + 2.51857E-01 2.51729E-01 2.51422E-01 + 2.51898E-01 2.51813E-01 2.51541E-01 + 2.51927E-01 2.51881E-01 2.51643E-01 + 2.53213E-01 2.53062E-01 2.52728E-01 + 2.53258E-01 2.53129E-01 2.52850E-01 + 2.53286E-01 2.53218E-01 2.52957E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.88410E-14 7.96080E-14 8.01626E-14 + 7.89767E-14 7.97648E-14 8.03392E-14 + 7.90898E-14 7.99018E-14 8.04915E-14 + 7.87974E-14 7.95689E-14 8.01264E-14 + 7.89304E-14 7.97235E-14 8.03009E-14 + 7.90422E-14 7.98578E-14 8.04510E-14 + 7.87081E-14 7.94843E-14 8.00444E-14 + 7.88370E-14 7.96350E-14 8.02150E-14 + 7.89466E-14 7.97670E-14 8.03630E-14 +* GROUP 2 + 2.95551E-12 2.95413E-12 2.95064E-12 + 2.95613E-12 2.95521E-12 2.95217E-12 + 2.95656E-12 2.95612E-12 2.95344E-12 + 2.96650E-12 2.96479E-12 2.96099E-12 + 2.96713E-12 2.96592E-12 2.96255E-12 + 2.96759E-12 2.96687E-12 2.96390E-12 + 2.98253E-12 2.98054E-12 2.97642E-12 + 2.98319E-12 2.98148E-12 2.97802E-12 + 2.98365E-12 2.98267E-12 2.97943E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.81016E-01 5.05071E-01 5.24172E-01 + 4.82033E-01 5.06180E-01 5.25322E-01 + 4.82603E-01 5.07072E-01 5.26305E-01 + 4.81306E-01 5.05360E-01 5.24473E-01 + 4.82308E-01 5.06462E-01 5.25608E-01 + 4.82883E-01 5.07294E-01 5.26588E-01 + 4.81638E-01 5.05670E-01 5.24770E-01 + 4.82597E-01 5.06754E-01 5.25893E-01 + 4.83180E-01 5.07462E-01 5.26892E-01 +* GROUP 1 -> 2 + 1.23931E-02 1.36280E-02 1.46158E-02 + 1.24077E-02 1.36532E-02 1.46506E-02 + 1.24071E-02 1.36604E-02 1.46663E-02 + 1.22719E-02 1.35014E-02 1.44854E-02 + 1.22841E-02 1.35241E-02 1.45174E-02 + 1.22821E-02 1.35294E-02 1.45306E-02 + 1.21413E-02 1.33652E-02 1.43449E-02 + 1.21506E-02 1.33851E-02 1.43738E-02 + 1.21477E-02 1.33886E-02 1.43850E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16604E+00 1.25705E+00 1.33117E+00 + 1.15925E+00 1.24906E+00 1.32215E+00 + 1.15279E+00 1.24156E+00 1.31362E+00 + 1.16566E+00 1.25666E+00 1.33079E+00 + 1.15889E+00 1.24872E+00 1.32178E+00 + 1.15246E+00 1.24124E+00 1.31330E+00 + 1.16527E+00 1.25628E+00 1.33040E+00 + 1.15854E+00 1.24837E+00 1.32143E+00 + 1.15214E+00 1.24092E+00 1.31297E+00 +* +* ADF Table +* +* GROUP 1 + 0.99575 0.99523 0.99478 + 0.99544 0.99488 0.99438 + 0.99511 0.99454 0.99402 + 0.99568 0.99516 0.99469 + 0.99538 0.99479 0.99435 + 0.99507 0.99446 0.99396 + 0.99564 0.99513 0.99469 + 0.99533 0.99477 0.99428 + 0.99503 0.99442 0.99390 +* GROUP 2 + 1.12639 1.12893 1.13094 + 1.12356 1.12591 1.12742 + 1.12120 1.12313 1.12453 + 1.12627 1.12880 1.13077 + 1.12345 1.12574 1.12741 + 1.12112 1.12306 1.12446 + 1.12613 1.12869 1.13070 + 1.12336 1.12572 1.12743 + 1.12105 1.12300 1.12441 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.06416E-08 2.34879E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.34008E-02 3.06926E-02 1.16842E-01 3.06431E-01 8.78226E-01 2.93527E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.22906E-05 7.35654E-04 5.81560E-04 1.32739E-03 7.63539E-04 2.71132E-04 +* +* ---------------------------------------------------------- +* BURNUP 37.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26362E-01 2.34164E-01 2.40338E-01 + 2.25605E-01 2.33242E-01 2.39278E-01 + 2.24872E-01 2.32366E-01 2.38273E-01 + 2.26148E-01 2.33935E-01 2.40105E-01 + 2.25384E-01 2.33007E-01 2.39039E-01 + 2.24649E-01 2.32127E-01 2.38032E-01 + 2.25932E-01 2.33702E-01 2.39861E-01 + 2.25166E-01 2.32775E-01 2.38796E-01 + 2.24427E-01 2.31895E-01 2.37784E-01 +* GROUP 2 + 8.11697E-01 8.65161E-01 9.08824E-01 + 8.08516E-01 8.61038E-01 9.03791E-01 + 8.05708E-01 8.57387E-01 8.99330E-01 + 8.11919E-01 8.65373E-01 9.09021E-01 + 8.08764E-01 8.61280E-01 9.04032E-01 + 8.05976E-01 8.57657E-01 8.99605E-01 + 8.12202E-01 8.65643E-01 9.09280E-01 + 8.09075E-01 8.61589E-01 9.04329E-01 + 8.06320E-01 8.58002E-01 8.99944E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.21421E-02 1.23248E-02 1.24576E-02 + 1.23674E-02 1.25739E-02 1.27261E-02 + 1.25852E-02 1.28145E-02 1.29852E-02 + 1.23714E-02 1.25608E-02 1.26987E-02 + 1.25955E-02 1.28084E-02 1.29656E-02 + 1.28116E-02 1.30476E-02 1.32233E-02 + 1.26092E-02 1.28059E-02 1.29495E-02 + 1.28318E-02 1.30522E-02 1.32151E-02 + 1.30460E-02 1.32897E-02 1.34709E-02 +* GROUP 2 + 1.64314E-01 1.64852E-01 1.65217E-01 + 1.73104E-01 1.74513E-01 1.75613E-01 + 1.81702E-01 1.83951E-01 1.85750E-01 + 1.64785E-01 1.65306E-01 1.65654E-01 + 1.73567E-01 1.74961E-01 1.76043E-01 + 1.82158E-01 1.84393E-01 1.86177E-01 + 1.65492E-01 1.65997E-01 1.66329E-01 + 1.74266E-01 1.75635E-01 1.76709E-01 + 1.82850E-01 1.85069E-01 1.86837E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.53791E-03 6.60196E-03 6.64815E-03 + 6.54981E-03 6.61576E-03 6.66365E-03 + 6.56011E-03 6.62786E-03 6.67726E-03 + 6.53314E-03 6.59757E-03 6.64407E-03 + 6.54489E-03 6.61114E-03 6.65932E-03 + 6.55489E-03 6.62302E-03 6.67274E-03 + 6.52462E-03 6.58939E-03 6.63610E-03 + 6.53612E-03 6.60274E-03 6.65122E-03 + 6.54586E-03 6.61446E-03 6.66438E-03 +* GROUP 2 + 2.43298E-01 2.43184E-01 2.42894E-01 + 2.43333E-01 2.43256E-01 2.43003E-01 + 2.43356E-01 2.43315E-01 2.43093E-01 + 2.44199E-01 2.44058E-01 2.43742E-01 + 2.44236E-01 2.44135E-01 2.43855E-01 + 2.44258E-01 2.44195E-01 2.43949E-01 + 2.45516E-01 2.45350E-01 2.45009E-01 + 2.45553E-01 2.45413E-01 2.45124E-01 + 2.45577E-01 2.45492E-01 2.45224E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.73881E-14 7.81443E-14 7.86894E-14 + 7.75228E-14 7.83005E-14 7.88652E-14 + 7.76386E-14 7.84369E-14 7.90188E-14 + 7.73319E-14 7.80922E-14 7.86412E-14 + 7.74647E-14 7.82459E-14 7.88138E-14 + 7.75771E-14 7.83797E-14 7.89650E-14 + 7.72317E-14 7.79962E-14 7.85477E-14 + 7.73618E-14 7.81472E-14 7.87188E-14 + 7.74710E-14 7.82790E-14 7.88667E-14 +* GROUP 2 + 2.86483E-12 2.86328E-12 2.85969E-12 + 2.86539E-12 2.86428E-12 2.86113E-12 + 2.86578E-12 2.86512E-12 2.86233E-12 + 2.87547E-12 2.87360E-12 2.86971E-12 + 2.87605E-12 2.87465E-12 2.87119E-12 + 2.87644E-12 2.87551E-12 2.87245E-12 + 2.89103E-12 2.88887E-12 2.88467E-12 + 2.89161E-12 2.88975E-12 2.88618E-12 + 2.89202E-12 2.89083E-12 2.88751E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.81250E-01 5.05386E-01 5.24447E-01 + 4.82278E-01 5.06446E-01 5.25590E-01 + 4.82884E-01 5.07332E-01 5.26598E-01 + 4.81549E-01 5.05669E-01 5.24743E-01 + 4.82569E-01 5.06722E-01 5.25878E-01 + 4.83146E-01 5.07499E-01 5.26850E-01 + 4.81897E-01 5.05978E-01 5.25048E-01 + 4.82891E-01 5.07025E-01 5.26184E-01 + 4.83438E-01 5.07760E-01 5.27042E-01 +* GROUP 1 -> 2 + 1.24007E-02 1.36374E-02 1.46271E-02 + 1.24159E-02 1.36630E-02 1.46620E-02 + 1.24171E-02 1.36724E-02 1.46796E-02 + 1.22793E-02 1.35108E-02 1.44967E-02 + 1.22919E-02 1.35336E-02 1.45282E-02 + 1.22910E-02 1.35402E-02 1.45434E-02 + 1.21478E-02 1.33732E-02 1.43547E-02 + 1.21580E-02 1.33941E-02 1.43845E-02 + 1.21552E-02 1.33983E-02 1.43967E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16628E+00 1.25723E+00 1.33136E+00 + 1.15939E+00 1.24919E+00 1.32222E+00 + 1.15287E+00 1.24156E+00 1.31360E+00 + 1.16588E+00 1.25684E+00 1.33094E+00 + 1.15902E+00 1.24880E+00 1.32184E+00 + 1.15251E+00 1.24123E+00 1.31325E+00 + 1.16546E+00 1.25642E+00 1.33052E+00 + 1.15864E+00 1.24843E+00 1.32146E+00 + 1.15217E+00 1.24089E+00 1.31291E+00 +* +* ADF Table +* +* GROUP 1 + 0.99581 0.99532 0.99486 + 0.99553 0.99498 0.99447 + 0.99525 0.99466 0.99415 + 0.99575 0.99525 0.99476 + 0.99547 0.99490 0.99444 + 0.99519 0.99458 0.99410 + 0.99571 0.99521 0.99476 + 0.99543 0.99488 0.99439 + 0.99514 0.99454 0.99403 +* GROUP 2 + 1.11904 1.12142 1.12329 + 1.11641 1.11863 1.12004 + 1.11425 1.11607 1.11738 + 1.11890 1.12127 1.12311 + 1.11630 1.11842 1.12001 + 1.11416 1.11598 1.11732 + 1.11876 1.12116 1.12305 + 1.11619 1.11843 1.12002 + 1.11409 1.11591 1.11724 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.06940E-08 2.35552E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.34055E-02 3.06739E-02 1.16881E-01 3.06587E-01 8.78293E-01 2.93813E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 9.17993E-05 7.39483E-04 5.82521E-04 1.33449E-03 7.68333E-04 2.73029E-04 +* +END diff --git a/smpl/xsec/HELIOS/2G_XSEC_refl b/smpl/xsec/HELIOS/2G_XSEC_refl new file mode 100644 index 0000000..62c8f82 --- /dev/null +++ b/smpl/xsec/HELIOS/2G_XSEC_refl @@ -0,0 +1,180 @@ +* Input Control +1 1 * ADF, CROD +* Mod Dens Boron ppm Fuel Temp Mod Temp + 1 3 1 1 + 0.00 1000.00 2000.00 +* +* ---------------------------------------------------------- +* BURNUP 0.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 3.03521E-01 + 3.01887E-01 + 3.00137E-01 +* GROUP 2 + 1.27564E+00 + 1.22567E+00 + 1.19653E+00 +* +* Absorption XSEC Table +* +* GROUP 1 + 2.04452E-03 + 2.42533E-03 + 2.80137E-03 +* GROUP 2 + 1.62750E-02 + 3.72376E-02 + 5.54949E-02 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 6.37098E-01 + 6.40121E-01 + 6.41711E-01 +* GROUP 1 -> 2 + 2.73402E-02 + 2.75262E-02 + 2.76036E-02 +* GROUP 2 -> 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* GROUP 2 -> 2 + 2.05560E+00 + 1.99026E+00 + 1.94187E+00 +* +* ADF Table +* +* GROUP 1 + 1.15642 + 1.17639 + 1.19223 +* GROUP 2 + 0.14614 + 0.22755 + 0.28266 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 3.03521E-01 + 3.01887E-01 + 3.00137E-01 +* GROUP 2 + 1.27564E+00 + 1.22567E+00 + 1.19653E+00 +* +* Absorption XSEC Table +* +* GROUP 1 + 2.04452E-03 + 2.42533E-03 + 2.80137E-03 +* GROUP 2 + 1.62750E-02 + 3.72376E-02 + 5.54949E-02 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 6.37098E-01 + 6.40121E-01 + 6.41711E-01 +* GROUP 1 -> 2 + 2.73402E-02 + 2.75262E-02 + 2.76036E-02 +* GROUP 2 -> 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 +* GROUP 2 -> 2 + 2.05560E+00 + 1.99026E+00 + 1.94187E+00 +* +* ADF Table +* +* GROUP 1 + 1.15642 + 1.17639 + 1.19223 +* GROUP 2 + 0.14614 + 0.22755 + 0.28266 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 7.38122E-08 2.75765E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 +* +END diff --git a/smpl/xsec/HELIOS/2G_XSEC_u42 b/smpl/xsec/HELIOS/2G_XSEC_u42 new file mode 100644 index 0000000..44bfd8b --- /dev/null +++ b/smpl/xsec/HELIOS/2G_XSEC_u42 @@ -0,0 +1,2394 @@ +* Input Control +1 1 * ADF, CROD +* Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 +* +* ---------------------------------------------------------- +* BURNUP 0.15 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.29048E-01 2.37499E-01 2.44170E-01 + 2.27916E-01 2.36143E-01 2.42628E-01 + 2.26854E-01 2.34880E-01 2.41186E-01 + 2.28914E-01 2.37354E-01 2.44017E-01 + 2.27771E-01 2.35983E-01 2.42463E-01 + 2.26694E-01 2.34709E-01 2.41006E-01 + 2.28784E-01 2.37222E-01 2.43875E-01 + 2.27636E-01 2.35841E-01 2.42308E-01 + 2.26544E-01 2.34549E-01 2.40836E-01 +* GROUP 2 + 7.85837E-01 8.40848E-01 8.85835E-01 + 7.81282E-01 8.35132E-01 8.79010E-01 + 7.77228E-01 8.30045E-01 8.72940E-01 + 7.85663E-01 8.40645E-01 8.85604E-01 + 7.81127E-01 8.34950E-01 8.78807E-01 + 7.77090E-01 8.29885E-01 8.72755E-01 + 7.85279E-01 8.40203E-01 8.85126E-01 + 7.80780E-01 8.34556E-01 8.78367E-01 + 7.76770E-01 8.29525E-01 8.72361E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 9.43867E-03 9.54057E-03 9.61437E-03 + 9.72094E-03 9.84790E-03 9.94228E-03 + 9.99520E-03 1.01465E-02 1.02599E-02 + 9.62608E-03 9.73198E-03 9.80876E-03 + 9.90876E-03 1.00398E-02 1.01373E-02 + 1.01831E-02 1.03386E-02 1.04552E-02 + 9.81497E-03 9.92574E-03 1.00056E-02 + 1.00981E-02 1.02342E-02 1.03348E-02 + 1.03725E-02 1.05330E-02 1.06529E-02 +* GROUP 2 + 1.04767E-01 1.06928E-01 1.08859E-01 + 1.12775E-01 1.15737E-01 1.18334E-01 + 1.20621E-01 1.24353E-01 1.27587E-01 + 1.04324E-01 1.06471E-01 1.08389E-01 + 1.12334E-01 1.15282E-01 1.17866E-01 + 1.20183E-01 1.23902E-01 1.27122E-01 + 1.03914E-01 1.06051E-01 1.07959E-01 + 1.11923E-01 1.14861E-01 1.17434E-01 + 1.19771E-01 1.23480E-01 1.26691E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.48055E-03 7.54283E-03 7.58727E-03 + 7.51265E-03 7.57851E-03 7.62589E-03 + 7.54020E-03 7.60897E-03 7.65851E-03 + 7.48264E-03 7.54531E-03 7.59003E-03 + 7.51458E-03 7.58079E-03 7.62851E-03 + 7.54186E-03 7.61113E-03 7.66100E-03 + 7.48133E-03 7.54460E-03 7.58945E-03 + 7.51308E-03 7.57981E-03 7.62769E-03 + 7.54002E-03 7.60985E-03 7.65995E-03 +* GROUP 2 + 1.54901E-01 1.57515E-01 1.59895E-01 + 1.53171E-01 1.55643E-01 1.57892E-01 + 1.51527E-01 1.53870E-01 1.55996E-01 + 1.54163E-01 1.56755E-01 1.59111E-01 + 1.52457E-01 1.54909E-01 1.57134E-01 + 1.50835E-01 1.53159E-01 1.55263E-01 + 1.53509E-01 1.56084E-01 1.58423E-01 + 1.51826E-01 1.54263E-01 1.56471E-01 + 1.50224E-01 1.52534E-01 1.54624E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 9.70273E-14 9.78121E-14 9.83714E-14 + 9.74664E-14 9.82993E-14 9.88973E-14 + 9.78407E-14 9.87118E-14 9.93381E-14 + 9.70525E-14 9.78426E-14 9.84054E-14 + 9.74892E-14 9.83266E-14 9.89290E-14 + 9.78596E-14 9.87370E-14 9.93677E-14 + 9.70324E-14 9.78303E-14 9.83947E-14 + 9.74657E-14 9.83102E-14 9.89148E-14 + 9.78311E-14 9.87160E-14 9.93498E-14 +* GROUP 2 + 2.06197E-12 2.09677E-12 2.12849E-12 + 2.03893E-12 2.07186E-12 2.10180E-12 + 2.01702E-12 2.04824E-12 2.07655E-12 + 2.05214E-12 2.08665E-12 2.11804E-12 + 2.02942E-12 2.06208E-12 2.09171E-12 + 2.00781E-12 2.03876E-12 2.06679E-12 + 2.04342E-12 2.07772E-12 2.10887E-12 + 2.02100E-12 2.05347E-12 2.08287E-12 + 1.99967E-12 2.03043E-12 2.05827E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.83225E-01 5.08404E-01 5.28320E-01 + 4.84802E-01 5.10218E-01 5.30344E-01 + 4.86237E-01 5.11841E-01 5.32119E-01 + 4.83484E-01 5.08669E-01 5.28572E-01 + 4.85053E-01 5.10469E-01 5.30597E-01 + 4.86482E-01 5.12076E-01 5.32356E-01 + 4.83738E-01 5.08943E-01 5.28833E-01 + 4.85300E-01 5.10736E-01 5.30858E-01 + 4.86714E-01 5.12319E-01 5.32588E-01 +* GROUP 1 -> 2 + 1.48663E-02 1.62314E-02 1.73172E-02 + 1.49809E-02 1.63743E-02 1.74866E-02 + 1.50618E-02 1.64775E-02 1.76063E-02 + 1.47781E-02 1.61402E-02 1.72237E-02 + 1.48903E-02 1.62803E-02 1.73905E-02 + 1.49687E-02 1.63809E-02 1.75071E-02 + 1.46851E-02 1.60443E-02 1.71249E-02 + 1.47947E-02 1.61817E-02 1.72888E-02 + 1.48703E-02 1.62792E-02 1.74021E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.19535E+00 1.28941E+00 1.36638E+00 + 1.18727E+00 1.27995E+00 1.35558E+00 + 1.17960E+00 1.27102E+00 1.34551E+00 + 1.19480E+00 1.28880E+00 1.36576E+00 + 1.18673E+00 1.27939E+00 1.35498E+00 + 1.17907E+00 1.27047E+00 1.34495E+00 + 1.19405E+00 1.28804E+00 1.36494E+00 + 1.18602E+00 1.27863E+00 1.35423E+00 + 1.17840E+00 1.26980E+00 1.34424E+00 +* +* ADF Table +* +* GROUP 1 + 1.00860 1.00960 1.01052 + 1.00882 1.00992 1.01079 + 1.00901 1.01015 1.01108 + 1.00852 1.00961 1.01037 + 1.00875 1.00982 1.01066 + 1.00894 1.01007 1.01099 + 1.00846 1.00955 1.01029 + 1.00866 1.00983 1.01067 + 1.00886 1.00997 1.01092 +* GROUP 2 + 0.99899 0.99978 1.00065 + 1.00082 1.00187 1.00307 + 1.00216 1.00368 1.00507 + 0.99887 0.99983 1.00057 + 1.00069 1.00194 1.00291 + 1.00204 1.00354 1.00491 + 0.99874 0.99978 1.00043 + 1.00053 1.00186 1.00278 + 1.00189 1.00337 1.00480 + +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.22040E-01 2.29578E-01 2.35570E-01 + 2.21036E-01 2.28372E-01 2.34212E-01 + 2.20079E-01 2.27225E-01 2.32884E-01 + 2.21843E-01 2.29370E-01 2.35353E-01 + 2.20827E-01 2.28152E-01 2.33967E-01 + 2.19863E-01 2.26996E-01 2.32644E-01 + 2.21657E-01 2.29169E-01 2.35146E-01 + 2.20632E-01 2.27942E-01 2.33747E-01 + 2.19660E-01 2.26779E-01 2.32415E-01 +* GROUP 2 + 7.74688E-01 8.25508E-01 8.66948E-01 + 7.71914E-01 8.21858E-01 8.62461E-01 + 7.69488E-01 8.18644E-01 8.58493E-01 + 7.74512E-01 8.25299E-01 8.66717E-01 + 7.71757E-01 8.21676E-01 8.62254E-01 + 7.69342E-01 8.18485E-01 8.58309E-01 + 7.74155E-01 8.24897E-01 8.66270E-01 + 7.71426E-01 8.21302E-01 8.61839E-01 + 7.69038E-01 8.18137E-01 8.57934E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.50923E-02 1.52735E-02 1.54016E-02 + 1.53079E-02 1.55138E-02 1.56618E-02 + 1.55139E-02 1.57427E-02 1.59089E-02 + 1.52482E-02 1.54342E-02 1.55678E-02 + 1.54626E-02 1.56742E-02 1.58265E-02 + 1.56672E-02 1.59024E-02 1.60721E-02 + 1.54046E-02 1.55981E-02 1.57349E-02 + 1.56176E-02 1.58355E-02 1.59923E-02 + 1.58206E-02 1.60614E-02 1.62362E-02 +* GROUP 2 + 1.37129E-01 1.39086E-01 1.40851E-01 + 1.44703E-01 1.47414E-01 1.49803E-01 + 1.52141E-01 1.55576E-01 1.58564E-01 + 1.36692E-01 1.38630E-01 1.40383E-01 + 1.44269E-01 1.46963E-01 1.49338E-01 + 1.51710E-01 1.55132E-01 1.58103E-01 + 1.36293E-01 1.38223E-01 1.39961E-01 + 1.43870E-01 1.46549E-01 1.48914E-01 + 1.51310E-01 1.54718E-01 1.57679E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.19160E-03 7.28030E-03 7.34352E-03 + 7.20565E-03 7.29708E-03 7.36264E-03 + 7.21761E-03 7.31140E-03 7.37878E-03 + 7.19158E-03 7.28099E-03 7.34458E-03 + 7.20551E-03 7.29752E-03 7.36351E-03 + 7.21736E-03 7.31175E-03 7.37959E-03 + 7.18843E-03 7.27827E-03 7.34230E-03 + 7.20215E-03 7.29480E-03 7.36110E-03 + 7.21383E-03 7.30886E-03 7.37703E-03 +* GROUP 2 + 1.59904E-01 1.62928E-01 1.65628E-01 + 1.58234E-01 1.61099E-01 1.63652E-01 + 1.56651E-01 1.59370E-01 1.61785E-01 + 1.59165E-01 1.62162E-01 1.64835E-01 + 1.57518E-01 1.60359E-01 1.62885E-01 + 1.55956E-01 1.58651E-01 1.61044E-01 + 1.58509E-01 1.61485E-01 1.64139E-01 + 1.56884E-01 1.59706E-01 1.62213E-01 + 1.55342E-01 1.58021E-01 1.60396E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 9.31576E-14 9.42921E-14 9.50996E-14 + 9.33341E-14 9.45031E-14 9.53404E-14 + 9.34805E-14 9.46784E-14 9.55379E-14 + 9.31515E-14 9.42955E-14 9.51082E-14 + 9.33259E-14 9.45025E-14 9.53457E-14 + 9.34700E-14 9.46757E-14 9.55416E-14 + 9.31035E-14 9.42531E-14 9.50719E-14 + 9.32743E-14 9.44597E-14 9.53069E-14 + 9.34156E-14 9.46298E-14 9.54997E-14 +* GROUP 2 + 2.12853E-12 2.16881E-12 2.20477E-12 + 2.10630E-12 2.14445E-12 2.17844E-12 + 2.08522E-12 2.12142E-12 2.15359E-12 + 2.11869E-12 2.15860E-12 2.19421E-12 + 2.09676E-12 2.13459E-12 2.16824E-12 + 2.07595E-12 2.11185E-12 2.14372E-12 + 2.10995E-12 2.14959E-12 2.18494E-12 + 2.08830E-12 2.12590E-12 2.15929E-12 + 2.06777E-12 2.10345E-12 2.13508E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77414E-01 5.01348E-01 5.20181E-01 + 4.78076E-01 5.01961E-01 5.20840E-01 + 4.78620E-01 5.02561E-01 5.21531E-01 + 4.77610E-01 5.01423E-01 5.20382E-01 + 4.78246E-01 5.02140E-01 5.21021E-01 + 4.78789E-01 5.02719E-01 5.21672E-01 + 4.77809E-01 5.01573E-01 5.20590E-01 + 4.78419E-01 5.02314E-01 5.21197E-01 + 4.78959E-01 5.02880E-01 5.21807E-01 +* GROUP 1 -> 2 + 1.15472E-02 1.27934E-02 1.37889E-02 + 1.15373E-02 1.27907E-02 1.37942E-02 + 1.15146E-02 1.27717E-02 1.37786E-02 + 1.14642E-02 1.27075E-02 1.36996E-02 + 1.14529E-02 1.27023E-02 1.37028E-02 + 1.14290E-02 1.26814E-02 1.36857E-02 + 1.13778E-02 1.26163E-02 1.36061E-02 + 1.13650E-02 1.26100E-02 1.36075E-02 + 1.13397E-02 1.25882E-02 1.35885E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.14253E+00 1.23111E+00 1.30334E+00 + 1.13598E+00 1.22340E+00 1.29457E+00 + 1.12977E+00 1.21611E+00 1.28628E+00 + 1.14198E+00 1.23053E+00 1.30272E+00 + 1.13544E+00 1.22284E+00 1.29397E+00 + 1.12926E+00 1.21557E+00 1.28572E+00 + 1.14126E+00 1.22976E+00 1.30192E+00 + 1.13474E+00 1.22211E+00 1.29320E+00 + 1.12859E+00 1.21487E+00 1.28498E+00 +* +* ADF Table +* +* GROUP 1 + 1.05838 1.06216 1.06511 + 1.05732 1.06098 1.06378 + 1.05638 1.05976 1.06242 + 1.05822 1.06204 1.06496 + 1.05716 1.06070 1.06363 + 1.05622 1.05961 1.06227 + 1.05806 1.06181 1.06484 + 1.05700 1.06069 1.06350 + 1.05605 1.05944 1.06211 +* GROUP 2 + 1.38062 1.38617 1.39053 + 1.37429 1.37897 1.38273 + 1.36858 1.37271 1.37578 + 1.38080 1.38635 1.39070 + 1.37441 1.37924 1.38289 + 1.36867 1.37276 1.37591 + 1.38090 1.38641 1.39088 + 1.37452 1.37952 1.38302 + 1.36876 1.37292 1.37603 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.57324E-08 2.36914E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33535E-02 3.26024E-02 1.21051E-01 3.05532E-01 8.60589E-01 2.89036E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 2.45232E-04 1.30968E-03 1.27501E-03 2.95585E-03 1.31463E-03 5.47075E-04 +* +* ---------------------------------------------------------- +* BURNUP 17.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27182E-01 2.35579E-01 2.42203E-01 + 2.25981E-01 2.34123E-01 2.40542E-01 + 2.24837E-01 2.32760E-01 2.38987E-01 + 2.27001E-01 2.35375E-01 2.42014E-01 + 2.25796E-01 2.33928E-01 2.40336E-01 + 2.24638E-01 2.32548E-01 2.38767E-01 + 2.26841E-01 2.35206E-01 2.41815E-01 + 2.25623E-01 2.33743E-01 2.40146E-01 + 2.24455E-01 2.32356E-01 2.38560E-01 +* GROUP 2 + 8.08587E-01 8.65250E-01 9.11722E-01 + 8.03280E-01 8.58656E-01 9.03889E-01 + 7.98557E-01 8.52789E-01 8.96930E-01 + 8.08440E-01 8.65062E-01 9.11499E-01 + 8.03171E-01 8.58511E-01 9.03714E-01 + 7.98476E-01 8.52683E-01 8.96800E-01 + 8.08148E-01 8.64715E-01 9.11099E-01 + 8.02925E-01 8.58217E-01 9.03380E-01 + 7.98272E-01 8.52437E-01 8.96517E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 9.85804E-03 9.97223E-03 1.00557E-02 + 1.01447E-02 1.02860E-02 1.03909E-02 + 1.04209E-02 1.05873E-02 1.07123E-02 + 1.00742E-02 1.01928E-02 1.02801E-02 + 1.03609E-02 1.05071E-02 1.06157E-02 + 1.06367E-02 1.08081E-02 1.09369E-02 + 1.02905E-02 1.04145E-02 1.05055E-02 + 1.05773E-02 1.07289E-02 1.08414E-02 + 1.08527E-02 1.10296E-02 1.11623E-02 +* GROUP 2 + 1.03749E-01 1.05018E-01 1.06143E-01 + 1.12503E-01 1.14638E-01 1.16488E-01 + 1.21050E-01 1.24015E-01 1.26554E-01 + 1.03621E-01 1.04874E-01 1.05985E-01 + 1.12372E-01 1.14492E-01 1.16326E-01 + 1.20915E-01 1.23865E-01 1.26390E-01 + 1.03614E-01 1.04855E-01 1.05951E-01 + 1.12357E-01 1.14463E-01 1.16283E-01 + 1.20893E-01 1.23829E-01 1.26340E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.27600E-03 6.32920E-03 6.36762E-03 + 6.29972E-03 6.35583E-03 6.39660E-03 + 6.32015E-03 6.37863E-03 6.42139E-03 + 6.26870E-03 6.32213E-03 6.36087E-03 + 6.29217E-03 6.34857E-03 6.38960E-03 + 6.31236E-03 6.37116E-03 6.41417E-03 + 6.26017E-03 6.31403E-03 6.35301E-03 + 6.28331E-03 6.34009E-03 6.38138E-03 + 6.30322E-03 6.36242E-03 6.40560E-03 +* GROUP 2 + 1.59960E-01 1.61182E-01 1.62302E-01 + 1.59053E-01 1.60210E-01 1.61268E-01 + 1.58190E-01 1.59289E-01 1.60287E-01 + 1.59755E-01 1.60950E-01 1.62044E-01 + 1.58866E-01 1.59999E-01 1.61029E-01 + 1.58016E-01 1.59092E-01 1.60066E-01 + 1.59782E-01 1.60955E-01 1.62024E-01 + 1.58905E-01 1.60017E-01 1.61024E-01 + 1.58068E-01 1.59124E-01 1.60077E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.95434E-14 8.01990E-14 8.06720E-14 + 7.98577E-14 8.05511E-14 8.10545E-14 + 8.01260E-14 8.08493E-14 8.13778E-14 + 7.94479E-14 8.01063E-14 8.05836E-14 + 7.97584E-14 8.04555E-14 8.09619E-14 + 8.00232E-14 8.07502E-14 8.12818E-14 + 7.93361E-14 8.00000E-14 8.04802E-14 + 7.96420E-14 8.03437E-14 8.08538E-14 + 7.99026E-14 8.06348E-14 8.11686E-14 +* GROUP 2 + 2.03201E-12 2.04905E-12 2.06471E-12 + 2.01946E-12 2.03560E-12 2.05038E-12 + 2.00752E-12 2.02284E-12 2.03678E-12 + 2.02876E-12 2.04545E-12 2.06077E-12 + 2.01644E-12 2.03227E-12 2.04670E-12 + 2.00469E-12 2.01972E-12 2.03335E-12 + 2.02833E-12 2.04475E-12 2.05976E-12 + 2.01619E-12 2.03175E-12 2.04589E-12 + 2.00461E-12 2.01938E-12 2.03276E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.83118E-01 5.08221E-01 5.28029E-01 + 4.84833E-01 5.10172E-01 5.30226E-01 + 4.86309E-01 5.11787E-01 5.31980E-01 + 4.83406E-01 5.08511E-01 5.28342E-01 + 4.85130E-01 5.10459E-01 5.30514E-01 + 4.86577E-01 5.12056E-01 5.32253E-01 + 4.83709E-01 5.08801E-01 5.28643E-01 + 4.85419E-01 5.10747E-01 5.30791E-01 + 4.86846E-01 5.12340E-01 5.32507E-01 +* GROUP 1 -> 2 + 1.44814E-02 1.58236E-02 1.68934E-02 + 1.46027E-02 1.59765E-02 1.70733E-02 + 1.46886E-02 1.60830E-02 1.71990E-02 + 1.43737E-02 1.57116E-02 1.67785E-02 + 1.44904E-02 1.58601E-02 1.69535E-02 + 1.45737E-02 1.59633E-02 1.70755E-02 + 1.42604E-02 1.55952E-02 1.66595E-02 + 1.43738E-02 1.57392E-02 1.68296E-02 + 1.44537E-02 1.58389E-02 1.69473E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.20949E+00 1.30446E+00 1.38214E+00 + 1.20074E+00 1.29429E+00 1.37062E+00 + 1.19254E+00 1.28475E+00 1.35985E+00 + 1.20886E+00 1.30381E+00 1.38145E+00 + 1.20018E+00 1.29368E+00 1.36997E+00 + 1.19199E+00 1.28417E+00 1.35927E+00 + 1.20811E+00 1.30301E+00 1.38063E+00 + 1.19945E+00 1.29293E+00 1.36921E+00 + 1.19131E+00 1.28347E+00 1.35854E+00 +* +* ADF Table +* +* GROUP 1 + 1.00125 1.00151 1.00164 + 1.00192 1.00219 1.00249 + 1.00242 1.00288 1.00327 + 1.00115 1.00136 1.00157 + 1.00183 1.00213 1.00243 + 1.00233 1.00279 1.00318 + 1.00107 1.00130 1.00150 + 1.00174 1.00211 1.00231 + 1.00223 1.00269 1.00308 +* GROUP 2 + 0.94137 0.94108 0.94081 + 0.94573 0.94578 0.94632 + 0.94933 0.95008 0.95086 + 0.94102 0.94064 0.94054 + 0.94538 0.94567 0.94598 + 0.94897 0.94972 0.95049 + 0.94064 0.94033 0.94020 + 0.94498 0.94532 0.94545 + 0.94853 0.94932 0.95010 + +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.19461E-01 2.26872E-01 2.32781E-01 + 2.18410E-01 2.25610E-01 2.31319E-01 + 2.17401E-01 2.24397E-01 2.29929E-01 + 2.19219E-01 2.26620E-01 2.32502E-01 + 2.18159E-01 2.25346E-01 2.31042E-01 + 2.17141E-01 2.24124E-01 2.29643E-01 + 2.18990E-01 2.26380E-01 2.32252E-01 + 2.17924E-01 2.25096E-01 2.30785E-01 + 2.16897E-01 2.23866E-01 2.29376E-01 +* GROUP 2 + 7.95107E-01 8.47229E-01 8.89825E-01 + 7.91925E-01 8.43092E-01 8.84772E-01 + 7.89126E-01 8.39442E-01 8.80298E-01 + 7.95015E-01 8.47093E-01 8.89660E-01 + 7.91861E-01 8.42997E-01 8.84645E-01 + 7.89083E-01 8.39380E-01 8.80212E-01 + 7.94799E-01 8.46836E-01 8.89347E-01 + 7.91682E-01 8.42778E-01 8.84382E-01 + 7.88944E-01 8.39195E-01 8.79996E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.54465E-02 1.56494E-02 1.57933E-02 + 1.56540E-02 1.58810E-02 1.60447E-02 + 1.58512E-02 1.61004E-02 1.62817E-02 + 1.56226E-02 1.58312E-02 1.59814E-02 + 1.58281E-02 1.60619E-02 1.62310E-02 + 1.60232E-02 1.62797E-02 1.64657E-02 + 1.57975E-02 1.60147E-02 1.61691E-02 + 1.60010E-02 1.62418E-02 1.64166E-02 + 1.61940E-02 1.64569E-02 1.66491E-02 +* GROUP 2 + 1.40331E-01 1.41413E-01 1.42384E-01 + 1.48499E-01 1.50389E-01 1.52033E-01 + 1.56498E-01 1.59165E-01 1.61453E-01 + 1.40228E-01 1.41292E-01 1.42249E-01 + 1.48393E-01 1.50266E-01 1.51895E-01 + 1.56389E-01 1.59041E-01 1.61313E-01 + 1.40256E-01 1.41309E-01 1.42249E-01 + 1.48413E-01 1.50271E-01 1.51888E-01 + 1.56403E-01 1.59039E-01 1.61298E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.06620E-03 6.14076E-03 6.19416E-03 + 6.07828E-03 6.15514E-03 6.21042E-03 + 6.08909E-03 6.16807E-03 6.22500E-03 + 6.05852E-03 6.13348E-03 6.18710E-03 + 6.07054E-03 6.14777E-03 6.20340E-03 + 6.08134E-03 6.16069E-03 6.21800E-03 + 6.04955E-03 6.12492E-03 6.17882E-03 + 6.06154E-03 6.13914E-03 6.19508E-03 + 6.07228E-03 6.15200E-03 6.20969E-03 +* GROUP 2 + 1.67087E-01 1.68654E-01 1.70040E-01 + 1.66177E-01 1.67665E-01 1.68974E-01 + 1.65314E-01 1.66730E-01 1.67968E-01 + 1.66901E-01 1.68440E-01 1.69798E-01 + 1.66006E-01 1.67469E-01 1.68751E-01 + 1.65157E-01 1.66548E-01 1.67763E-01 + 1.66951E-01 1.68468E-01 1.69802E-01 + 1.66069E-01 1.67511E-01 1.68771E-01 + 1.65232E-01 1.66604E-01 1.67798E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.67851E-14 7.77162E-14 7.83825E-14 + 7.69277E-14 7.78865E-14 7.85755E-14 + 7.70517E-14 7.80352E-14 7.87437E-14 + 7.66809E-14 7.76174E-14 7.82865E-14 + 7.68222E-14 7.77856E-14 7.84792E-14 + 7.69451E-14 7.79335E-14 7.86467E-14 + 7.65599E-14 7.75016E-14 7.81745E-14 + 7.66999E-14 7.76684E-14 7.83661E-14 + 7.68216E-14 7.78146E-14 7.85326E-14 +* GROUP 2 + 2.11979E-12 2.14128E-12 2.16035E-12 + 2.10733E-12 2.12772E-12 2.14574E-12 + 2.09551E-12 2.11491E-12 2.13194E-12 + 2.11677E-12 2.13791E-12 2.15662E-12 + 2.10452E-12 2.12458E-12 2.14225E-12 + 2.09288E-12 2.11196E-12 2.12870E-12 + 2.11663E-12 2.13748E-12 2.15589E-12 + 2.10455E-12 2.12436E-12 2.14174E-12 + 2.09308E-12 2.11192E-12 2.12840E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77402E-01 5.01148E-01 5.19925E-01 + 4.77993E-01 5.01791E-01 5.20604E-01 + 4.78482E-01 5.02329E-01 5.21204E-01 + 4.77612E-01 5.01342E-01 5.20127E-01 + 4.78183E-01 5.01981E-01 5.20791E-01 + 4.78646E-01 5.02497E-01 5.21361E-01 + 4.77802E-01 5.01526E-01 5.20308E-01 + 4.78362E-01 5.02155E-01 5.20972E-01 + 4.78809E-01 5.02648E-01 5.21510E-01 +* GROUP 1 -> 2 + 1.12534E-02 1.24809E-02 1.34633E-02 + 1.12400E-02 1.24738E-02 1.34626E-02 + 1.12135E-02 1.24497E-02 1.34412E-02 + 1.11528E-02 1.23760E-02 1.33539E-02 + 1.11378E-02 1.23662E-02 1.33513E-02 + 1.11100E-02 1.23398E-02 1.33277E-02 + 1.10484E-02 1.22660E-02 1.32410E-02 + 1.10321E-02 1.22550E-02 1.32361E-02 + 1.10032E-02 1.22275E-02 1.32112E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15362E+00 1.24298E+00 1.31584E+00 + 1.14666E+00 1.23481E+00 1.30658E+00 + 1.14007E+00 1.22711E+00 1.29784E+00 + 1.15303E+00 1.24234E+00 1.31517E+00 + 1.14608E+00 1.23421E+00 1.30595E+00 + 1.13953E+00 1.22654E+00 1.29725E+00 + 1.15229E+00 1.24156E+00 1.31437E+00 + 1.14539E+00 1.23349E+00 1.30518E+00 + 1.13887E+00 1.22585E+00 1.29654E+00 +* +* ADF Table +* +* GROUP 1 + 1.05193 1.05489 1.05722 + 1.05117 1.05413 1.05635 + 1.05054 1.05325 1.05537 + 1.05178 1.05473 1.05707 + 1.05100 1.05387 1.05618 + 1.05037 1.05308 1.05521 + 1.05160 1.05456 1.05690 + 1.05082 1.05381 1.05601 + 1.05019 1.05289 1.05505 +* GROUP 2 + 1.33202 1.33654 1.34015 + 1.32740 1.33133 1.33443 + 1.32323 1.32674 1.32940 + 1.33190 1.33647 1.34009 + 1.32726 1.33131 1.33435 + 1.32312 1.32659 1.32932 + 1.33175 1.33628 1.33996 + 1.32712 1.33136 1.33422 + 1.32300 1.32652 1.32924 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.48113E-08 2.43187E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33553E-02 3.21573E-02 1.20047E-01 3.05441E-01 8.64836E-01 2.89466E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.86953E-04 1.06844E-03 9.99030E-04 2.29298E-03 1.07961E-03 4.32194E-04 +* +* ---------------------------------------------------------- +* BURNUP 20.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26787E-01 2.35144E-01 2.41750E-01 + 2.25570E-01 2.33680E-01 2.40075E-01 + 2.24403E-01 2.32287E-01 2.38488E-01 + 2.26611E-01 2.34946E-01 2.41554E-01 + 2.25377E-01 2.33478E-01 2.39864E-01 + 2.24198E-01 2.32071E-01 2.38262E-01 + 2.26441E-01 2.34772E-01 2.41359E-01 + 2.25198E-01 2.33285E-01 2.39666E-01 + 2.24007E-01 2.31870E-01 2.38047E-01 +* GROUP 2 + 8.10428E-01 8.67234E-01 9.13846E-01 + 8.05043E-01 8.60556E-01 9.05917E-01 + 8.00253E-01 8.54611E-01 8.98863E-01 + 8.10273E-01 8.67041E-01 9.13619E-01 + 8.04931E-01 8.60405E-01 9.05738E-01 + 8.00174E-01 8.54503E-01 8.98731E-01 + 8.09979E-01 8.66695E-01 9.13212E-01 + 8.04687E-01 8.60116E-01 9.05404E-01 + 7.99971E-01 8.54262E-01 8.98456E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 9.94631E-03 1.00632E-02 1.01487E-02 + 1.02339E-02 1.03776E-02 1.04849E-02 + 1.05100E-02 1.06792E-02 1.08063E-02 + 1.01660E-02 1.02875E-02 1.03767E-02 + 1.04535E-02 1.06023E-02 1.07133E-02 + 1.07291E-02 1.09036E-02 1.10344E-02 + 1.03861E-02 1.05132E-02 1.06062E-02 + 1.06736E-02 1.08280E-02 1.09429E-02 + 1.09487E-02 1.11287E-02 1.12638E-02 +* GROUP 2 + 1.03190E-01 1.04391E-01 1.05454E-01 + 1.12005E-01 1.14077E-01 1.15870E-01 + 1.20608E-01 1.23515E-01 1.26001E-01 + 1.03087E-01 1.04273E-01 1.05322E-01 + 1.11898E-01 1.13955E-01 1.15733E-01 + 1.20498E-01 1.23389E-01 1.25860E-01 + 1.03110E-01 1.04283E-01 1.05317E-01 + 1.11911E-01 1.13955E-01 1.15718E-01 + 1.20503E-01 1.23381E-01 1.25838E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.11857E-03 6.17083E-03 6.20867E-03 + 6.14117E-03 6.19617E-03 6.23626E-03 + 6.16060E-03 6.21795E-03 6.25992E-03 + 6.11072E-03 6.16319E-03 6.20124E-03 + 6.13300E-03 6.18834E-03 6.22866E-03 + 6.15223E-03 6.20990E-03 6.25211E-03 + 6.10165E-03 6.15455E-03 6.19279E-03 + 6.12367E-03 6.17931E-03 6.21990E-03 + 6.14259E-03 6.20063E-03 6.24303E-03 +* GROUP 2 + 1.57747E-01 1.58839E-01 1.59839E-01 + 1.56922E-01 1.57957E-01 1.58901E-01 + 1.56135E-01 1.57119E-01 1.58010E-01 + 1.57593E-01 1.58658E-01 1.59633E-01 + 1.56784E-01 1.57795E-01 1.58713E-01 + 1.56011E-01 1.56971E-01 1.57838E-01 + 1.57677E-01 1.58721E-01 1.59670E-01 + 1.56879E-01 1.57869E-01 1.58765E-01 + 1.56117E-01 1.57058E-01 1.57905E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.73166E-14 7.79589E-14 7.84237E-14 + 7.76143E-14 7.82918E-14 7.87852E-14 + 7.78676E-14 7.85747E-14 7.90915E-14 + 7.72140E-14 7.78591E-14 7.83265E-14 + 7.75071E-14 7.81889E-14 7.86853E-14 + 7.77573E-14 7.84684E-14 7.89884E-14 + 7.70956E-14 7.77464E-14 7.82163E-14 + 7.73850E-14 7.80706E-14 7.85705E-14 + 7.76308E-14 7.83464E-14 7.88687E-14 +* GROUP 2 + 1.99514E-12 2.01047E-12 2.02454E-12 + 1.98368E-12 1.99819E-12 2.01148E-12 + 1.97276E-12 1.98655E-12 1.99907E-12 + 1.99253E-12 2.00752E-12 2.02127E-12 + 1.98128E-12 1.99550E-12 2.00845E-12 + 1.97055E-12 1.98405E-12 1.99627E-12 + 1.99281E-12 2.00754E-12 2.02097E-12 + 1.98173E-12 1.99568E-12 2.00835E-12 + 1.97115E-12 1.98440E-12 1.99638E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.83403E-01 5.08509E-01 5.28374E-01 + 4.85143E-01 5.10477E-01 5.30549E-01 + 4.86587E-01 5.12092E-01 5.32299E-01 + 4.83726E-01 5.08833E-01 5.28697E-01 + 4.85435E-01 5.10769E-01 5.30848E-01 + 4.86880E-01 5.12360E-01 5.32570E-01 + 4.84055E-01 5.09155E-01 5.29019E-01 + 4.85730E-01 5.11072E-01 5.31141E-01 + 4.87153E-01 5.12638E-01 5.32834E-01 +* GROUP 1 -> 2 + 1.44653E-02 1.58080E-02 1.68788E-02 + 1.45856E-02 1.59592E-02 1.70567E-02 + 1.46693E-02 1.60641E-02 1.71802E-02 + 1.43544E-02 1.56926E-02 1.67600E-02 + 1.44704E-02 1.58395E-02 1.69340E-02 + 1.45510E-02 1.59413E-02 1.70530E-02 + 1.42377E-02 1.55725E-02 1.66370E-02 + 1.43501E-02 1.57145E-02 1.68058E-02 + 1.44274E-02 1.58129E-02 1.69202E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21057E+00 1.30561E+00 1.38332E+00 + 1.20178E+00 1.29536E+00 1.37174E+00 + 1.19352E+00 1.28576E+00 1.36090E+00 + 1.20995E+00 1.30492E+00 1.38262E+00 + 1.20119E+00 1.29473E+00 1.37110E+00 + 1.19297E+00 1.28518E+00 1.36030E+00 + 1.20918E+00 1.30414E+00 1.38179E+00 + 1.20048E+00 1.29399E+00 1.37032E+00 + 1.19227E+00 1.28448E+00 1.35959E+00 +* +* ADF Table +* +* GROUP 1 + 1.00109 1.00134 1.00146 + 1.00177 1.00203 1.00231 + 1.00227 1.00273 1.00310 + 1.00100 1.00119 1.00137 + 1.00167 1.00196 1.00225 + 1.00219 1.00263 1.00301 + 1.00090 1.00113 1.00130 + 1.00159 1.00193 1.00215 + 1.00209 1.00253 1.00290 +* GROUP 2 + 0.93984 0.93951 0.93920 + 0.94425 0.94426 0.94475 + 0.94789 0.94861 0.94936 + 0.93947 0.93905 0.93891 + 0.94388 0.94414 0.94442 + 0.94752 0.94824 0.94898 + 0.93907 0.93873 0.93856 + 0.94346 0.94378 0.94389 + 0.94710 0.94782 0.94858 + +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.18955E-01 2.26333E-01 2.32204E-01 + 2.17881E-01 2.25043E-01 2.30725E-01 + 2.16853E-01 2.23808E-01 2.29307E-01 + 2.18702E-01 2.26074E-01 2.31930E-01 + 2.17623E-01 2.24772E-01 2.30442E-01 + 2.16584E-01 2.23525E-01 2.29011E-01 + 2.18467E-01 2.25823E-01 2.31671E-01 + 2.17378E-01 2.24516E-01 2.30173E-01 + 2.16333E-01 2.23258E-01 2.28732E-01 +* GROUP 2 + 7.96763E-01 8.49020E-01 8.91737E-01 + 7.93530E-01 8.44826E-01 8.86613E-01 + 7.90687E-01 8.41122E-01 8.82081E-01 + 7.96668E-01 8.48882E-01 8.91566E-01 + 7.93464E-01 8.44728E-01 8.86485E-01 + 7.90650E-01 8.41056E-01 8.81994E-01 + 7.96459E-01 8.48628E-01 8.91260E-01 + 7.93298E-01 8.44511E-01 8.86230E-01 + 7.90513E-01 8.40882E-01 8.81785E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.55188E-02 1.57251E-02 1.58719E-02 + 1.57244E-02 1.59547E-02 1.61213E-02 + 1.59199E-02 1.61720E-02 1.63560E-02 + 1.56964E-02 1.59092E-02 1.60624E-02 + 1.59004E-02 1.61380E-02 1.63098E-02 + 1.60935E-02 1.63535E-02 1.65422E-02 + 1.58739E-02 1.60950E-02 1.62528E-02 + 1.60756E-02 1.63203E-02 1.64981E-02 + 1.62664E-02 1.65332E-02 1.67279E-02 +* GROUP 2 + 1.39901E-01 1.40910E-01 1.41815E-01 + 1.48124E-01 1.49947E-01 1.51530E-01 + 1.56175E-01 1.58778E-01 1.61010E-01 + 1.39825E-01 1.40816E-01 1.41707E-01 + 1.48043E-01 1.49850E-01 1.51417E-01 + 1.56092E-01 1.58680E-01 1.60895E-01 + 1.39884E-01 1.40865E-01 1.41739E-01 + 1.48094E-01 1.49885E-01 1.51441E-01 + 1.56135E-01 1.58708E-01 1.60911E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.91744E-03 5.99037E-03 6.04266E-03 + 5.92943E-03 6.00461E-03 6.05878E-03 + 5.94033E-03 6.01756E-03 6.07344E-03 + 5.90926E-03 5.98268E-03 6.03518E-03 + 5.92132E-03 5.99691E-03 6.05137E-03 + 5.93219E-03 6.00988E-03 6.06605E-03 + 5.90013E-03 5.97380E-03 6.02661E-03 + 5.91208E-03 5.98806E-03 6.04279E-03 + 5.92293E-03 6.00100E-03 6.05745E-03 +* GROUP 2 + 1.64957E-01 1.66386E-01 1.67645E-01 + 1.64122E-01 1.65479E-01 1.66668E-01 + 1.63329E-01 1.64621E-01 1.65746E-01 + 1.64823E-01 1.66224E-01 1.67455E-01 + 1.64001E-01 1.65334E-01 1.66496E-01 + 1.63222E-01 1.64489E-01 1.65592E-01 + 1.64932E-01 1.66311E-01 1.67519E-01 + 1.64122E-01 1.65433E-01 1.66575E-01 + 1.63353E-01 1.64602E-01 1.65683E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.46746E-14 7.55826E-14 7.62333E-14 + 7.48144E-14 7.57492E-14 7.64224E-14 + 7.49380E-14 7.58965E-14 7.65890E-14 + 7.45643E-14 7.54786E-14 7.61318E-14 + 7.47042E-14 7.56443E-14 7.63210E-14 + 7.48265E-14 7.57908E-14 7.64871E-14 + 7.44413E-14 7.53590E-14 7.60164E-14 + 7.45792E-14 7.55242E-14 7.62045E-14 + 7.47007E-14 7.56696E-14 7.63695E-14 +* GROUP 2 + 2.08359E-12 2.10324E-12 2.12062E-12 + 2.07211E-12 2.09077E-12 2.10719E-12 + 2.06123E-12 2.07898E-12 2.09451E-12 + 2.08122E-12 2.10052E-12 2.11755E-12 + 2.06993E-12 2.08828E-12 2.10436E-12 + 2.05923E-12 2.07667E-12 2.09191E-12 + 2.08182E-12 2.10084E-12 2.11758E-12 + 2.07070E-12 2.08877E-12 2.10458E-12 + 2.06014E-12 2.07734E-12 2.09232E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77538E-01 5.01258E-01 5.20069E-01 + 4.78110E-01 5.01911E-01 5.20749E-01 + 4.78564E-01 5.02417E-01 5.21293E-01 + 4.77730E-01 5.01461E-01 5.20241E-01 + 4.78293E-01 5.02107E-01 5.20922E-01 + 4.78727E-01 5.02579E-01 5.21437E-01 + 4.77924E-01 5.01642E-01 5.20407E-01 + 4.78462E-01 5.02281E-01 5.21083E-01 + 4.78883E-01 5.02726E-01 5.21573E-01 +* GROUP 1 -> 2 + 1.12277E-02 1.24543E-02 1.34364E-02 + 1.12125E-02 1.24449E-02 1.34331E-02 + 1.11848E-02 1.24188E-02 1.34095E-02 + 1.11242E-02 1.23466E-02 1.33243E-02 + 1.11076E-02 1.23349E-02 1.33190E-02 + 1.10785E-02 1.23068E-02 1.32934E-02 + 1.10177E-02 1.22339E-02 1.32085E-02 + 1.09995E-02 1.22208E-02 1.32008E-02 + 1.09691E-02 1.21916E-02 1.31735E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15459E+00 1.24400E+00 1.31694E+00 + 1.14759E+00 1.23579E+00 1.30759E+00 + 1.14095E+00 1.22805E+00 1.29882E+00 + 1.15399E+00 1.24336E+00 1.31625E+00 + 1.14700E+00 1.23518E+00 1.30696E+00 + 1.14040E+00 1.22746E+00 1.29821E+00 + 1.15324E+00 1.24259E+00 1.31543E+00 + 1.14630E+00 1.23444E+00 1.30620E+00 + 1.13973E+00 1.22677E+00 1.29749E+00 +* +* ADF Table +* +* GROUP 1 + 1.05183 1.05477 1.05710 + 1.05106 1.05399 1.05622 + 1.05044 1.05312 1.05524 + 1.05165 1.05461 1.05694 + 1.05088 1.05374 1.05605 + 1.05025 1.05295 1.05508 + 1.05148 1.05443 1.05676 + 1.05070 1.05369 1.05587 + 1.05007 1.05276 1.05490 +* GROUP 2 + 1.33100 1.33551 1.33911 + 1.32637 1.33024 1.33336 + 1.32219 1.32568 1.32833 + 1.33087 1.33542 1.33903 + 1.32620 1.33025 1.33327 + 1.32207 1.32552 1.32824 + 1.33069 1.33521 1.33889 + 1.32605 1.33028 1.33312 + 1.32192 1.32544 1.32813 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.48041E-08 2.43809E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33568E-02 3.20921E-02 1.19931E-01 3.05495E-01 8.65474E-01 2.89641E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.80066E-04 1.04168E-03 9.67871E-04 2.22151E-03 1.05478E-03 4.20189E-04 +* +* ---------------------------------------------------------- +* BURNUP 22.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26389E-01 2.34717E-01 2.41296E-01 + 2.25151E-01 2.33229E-01 2.39594E-01 + 2.23958E-01 2.31808E-01 2.37975E-01 + 2.26210E-01 2.34524E-01 2.41094E-01 + 2.24951E-01 2.33016E-01 2.39379E-01 + 2.23748E-01 2.31582E-01 2.37743E-01 + 2.26034E-01 2.34342E-01 2.40906E-01 + 2.24763E-01 2.32819E-01 2.39170E-01 + 2.23550E-01 2.31375E-01 2.37528E-01 +* GROUP 2 + 8.12097E-01 8.69044E-01 9.15785E-01 + 8.06642E-01 8.62280E-01 9.07752E-01 + 8.01782E-01 8.56257E-01 9.00621E-01 + 8.11935E-01 8.68840E-01 9.15542E-01 + 8.06518E-01 8.62121E-01 9.07567E-01 + 8.01697E-01 8.56146E-01 9.00480E-01 + 8.11638E-01 8.68486E-01 9.15135E-01 + 8.06275E-01 8.61826E-01 9.07229E-01 + 8.01498E-01 8.55903E-01 9.00202E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.00305E-02 1.01501E-02 1.02376E-02 + 1.03189E-02 1.04653E-02 1.05744E-02 + 1.05952E-02 1.07669E-02 1.08960E-02 + 1.02532E-02 1.03777E-02 1.04688E-02 + 1.05414E-02 1.06929E-02 1.08060E-02 + 1.08172E-02 1.09941E-02 1.11272E-02 + 1.04768E-02 1.06069E-02 1.07021E-02 + 1.07646E-02 1.09220E-02 1.10392E-02 + 1.10399E-02 1.12227E-02 1.13601E-02 +* GROUP 2 + 1.02543E-01 1.03684E-01 1.04692E-01 + 1.11414E-01 1.13430E-01 1.15171E-01 + 1.20068E-01 1.22922E-01 1.25361E-01 + 1.02463E-01 1.03588E-01 1.04582E-01 + 1.11329E-01 1.13330E-01 1.15056E-01 + 1.19979E-01 1.22818E-01 1.25241E-01 + 1.02511E-01 1.03624E-01 1.04603E-01 + 1.11367E-01 1.13354E-01 1.15066E-01 + 1.20009E-01 1.22834E-01 1.25243E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.96556E-03 6.01701E-03 6.05428E-03 + 5.98718E-03 6.04120E-03 6.08059E-03 + 6.00566E-03 6.06197E-03 6.10321E-03 + 5.95730E-03 6.00898E-03 6.04639E-03 + 5.97856E-03 6.03286E-03 6.07252E-03 + 5.99684E-03 6.05345E-03 6.09495E-03 + 5.94792E-03 5.99996E-03 6.03763E-03 + 5.96882E-03 6.02348E-03 6.06336E-03 + 5.98690E-03 6.04387E-03 6.08561E-03 +* GROUP 2 + 1.55249E-01 1.56220E-01 1.57109E-01 + 1.54500E-01 1.55422E-01 1.56260E-01 + 1.53786E-01 1.54663E-01 1.55455E-01 + 1.55142E-01 1.56087E-01 1.56950E-01 + 1.54408E-01 1.55306E-01 1.56119E-01 + 1.53706E-01 1.54560E-01 1.55328E-01 + 1.55278E-01 1.56201E-01 1.57040E-01 + 1.54555E-01 1.55431E-01 1.56221E-01 + 1.53863E-01 1.54697E-01 1.55444E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.51612E-14 7.57921E-14 7.62486E-14 + 7.54439E-14 7.61073E-14 7.65910E-14 + 7.56828E-14 7.63747E-14 7.68814E-14 + 7.50535E-14 7.56874E-14 7.61456E-14 + 7.53312E-14 7.59982E-14 7.64851E-14 + 7.55672E-14 7.62628E-14 7.67724E-14 + 7.49316E-14 7.55699E-14 7.60315E-14 + 7.52042E-14 7.58758E-14 7.63654E-14 + 7.54368E-14 7.61371E-14 7.66499E-14 +* GROUP 2 + 1.95539E-12 1.96913E-12 1.98173E-12 + 1.94495E-12 1.95797E-12 1.96985E-12 + 1.93499E-12 1.94736E-12 1.95858E-12 + 1.95339E-12 1.96679E-12 1.97906E-12 + 1.94314E-12 1.95586E-12 1.96741E-12 + 1.93336E-12 1.94544E-12 1.95635E-12 + 1.95433E-12 1.96745E-12 1.97942E-12 + 1.94424E-12 1.95668E-12 1.96796E-12 + 1.93460E-12 1.94643E-12 1.95708E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.83742E-01 5.08861E-01 5.28723E-01 + 4.85461E-01 5.10805E-01 5.30861E-01 + 4.86897E-01 5.12410E-01 5.32621E-01 + 4.84070E-01 5.09189E-01 5.29053E-01 + 4.85767E-01 5.11091E-01 5.31146E-01 + 4.87183E-01 5.12676E-01 5.32867E-01 + 4.84387E-01 5.09503E-01 5.29365E-01 + 4.86045E-01 5.11375E-01 5.31424E-01 + 4.87461E-01 5.12930E-01 5.33120E-01 +* GROUP 1 -> 2 + 1.44548E-02 1.57982E-02 1.68704E-02 + 1.45741E-02 1.59495E-02 1.70480E-02 + 1.46566E-02 1.60510E-02 1.71678E-02 + 1.43410E-02 1.56801E-02 1.67486E-02 + 1.44567E-02 1.58268E-02 1.69217E-02 + 1.45358E-02 1.59246E-02 1.70378E-02 + 1.42216E-02 1.55564E-02 1.66218E-02 + 1.43332E-02 1.56983E-02 1.67900E-02 + 1.44088E-02 1.57925E-02 1.69019E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21160E+00 1.30663E+00 1.38440E+00 + 1.20273E+00 1.29634E+00 1.37277E+00 + 1.19440E+00 1.28669E+00 1.36184E+00 + 1.21094E+00 1.30595E+00 1.38369E+00 + 1.20212E+00 1.29569E+00 1.37210E+00 + 1.19383E+00 1.28608E+00 1.36122E+00 + 1.21017E+00 1.30514E+00 1.38284E+00 + 1.20140E+00 1.29496E+00 1.37134E+00 + 1.19314E+00 1.28539E+00 1.36050E+00 +* +* ADF Table +* +* GROUP 1 + 1.00097 1.00122 1.00134 + 1.00168 1.00192 1.00219 + 1.00218 1.00262 1.00300 + 1.00089 1.00108 1.00125 + 1.00158 1.00184 1.00213 + 1.00208 1.00253 1.00290 + 1.00079 1.00103 1.00119 + 1.00148 1.00182 1.00202 + 1.00199 1.00243 1.00278 +* GROUP 2 + 0.93877 0.93837 0.93809 + 0.94322 0.94321 0.94368 + 0.94689 0.94758 0.94832 + 0.93840 0.93795 0.93779 + 0.94283 0.94308 0.94332 + 0.94650 0.94720 0.94792 + 0.93799 0.93761 0.93742 + 0.94241 0.94270 0.94279 + 0.94607 0.94676 0.94747 + +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.18439E-01 2.25782E-01 2.31623E-01 + 2.17343E-01 2.24468E-01 2.30112E-01 + 2.16291E-01 2.23203E-01 2.28671E-01 + 2.18180E-01 2.25514E-01 2.31341E-01 + 2.17076E-01 2.24187E-01 2.29821E-01 + 2.16015E-01 2.22910E-01 2.28364E-01 + 2.17935E-01 2.25257E-01 2.31079E-01 + 2.16822E-01 2.23923E-01 2.29546E-01 + 2.15754E-01 2.22640E-01 2.28080E-01 +* GROUP 2 + 7.98256E-01 8.50637E-01 8.93469E-01 + 7.94974E-01 8.46386E-01 8.88279E-01 + 7.92084E-01 8.42624E-01 8.83683E-01 + 7.98154E-01 8.50496E-01 8.93296E-01 + 7.94907E-01 8.46280E-01 8.88143E-01 + 7.92044E-01 8.42560E-01 8.83592E-01 + 7.97947E-01 8.50242E-01 8.92989E-01 + 7.94737E-01 8.46073E-01 8.87894E-01 + 7.91914E-01 8.42391E-01 8.83388E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.55878E-02 1.57971E-02 1.59466E-02 + 1.57917E-02 1.60253E-02 1.61940E-02 + 1.59850E-02 1.62403E-02 1.64268E-02 + 1.57672E-02 1.59832E-02 1.61391E-02 + 1.59689E-02 1.62100E-02 1.63843E-02 + 1.61601E-02 1.64233E-02 1.66145E-02 + 1.59463E-02 1.61712E-02 1.63318E-02 + 1.61460E-02 1.63945E-02 1.65747E-02 + 1.63348E-02 1.66050E-02 1.68024E-02 +* GROUP 2 + 1.39340E-01 1.40283E-01 1.41128E-01 + 1.47614E-01 1.49376E-01 1.50903E-01 + 1.55713E-01 1.58258E-01 1.60438E-01 + 1.39288E-01 1.40212E-01 1.41044E-01 + 1.47557E-01 1.49301E-01 1.50813E-01 + 1.55651E-01 1.58183E-01 1.60346E-01 + 1.39374E-01 1.40289E-01 1.41104E-01 + 1.47634E-01 1.49364E-01 1.50864E-01 + 1.55721E-01 1.58238E-01 1.60388E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.77305E-03 5.84440E-03 5.89564E-03 + 5.78506E-03 5.85868E-03 5.91172E-03 + 5.79601E-03 5.87172E-03 5.92663E-03 + 5.76470E-03 5.83647E-03 5.88786E-03 + 5.77669E-03 5.85071E-03 5.90403E-03 + 5.78769E-03 5.86381E-03 5.91896E-03 + 5.75533E-03 5.82745E-03 5.87916E-03 + 5.76734E-03 5.84174E-03 5.89532E-03 + 5.77836E-03 5.85486E-03 5.91028E-03 +* GROUP 2 + 1.62512E-01 1.63811E-01 1.64950E-01 + 1.61746E-01 1.62980E-01 1.64057E-01 + 1.61018E-01 1.62194E-01 1.63213E-01 + 1.62424E-01 1.63697E-01 1.64810E-01 + 1.61671E-01 1.62882E-01 1.63933E-01 + 1.60956E-01 1.62109E-01 1.63105E-01 + 1.62586E-01 1.63837E-01 1.64927E-01 + 1.61843E-01 1.63034E-01 1.64064E-01 + 1.61139E-01 1.62273E-01 1.63249E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.26340E-14 7.35194E-14 7.41550E-14 + 7.27723E-14 7.36846E-14 7.43415E-14 + 7.28948E-14 7.38311E-14 7.45094E-14 + 7.25216E-14 7.34126E-14 7.40500E-14 + 7.26587E-14 7.35762E-14 7.42368E-14 + 7.27810E-14 7.37226E-14 7.44037E-14 + 7.23959E-14 7.32912E-14 7.39329E-14 + 7.25325E-14 7.34549E-14 7.41187E-14 + 7.26543E-14 7.36005E-14 7.42851E-14 +* GROUP 2 + 2.04417E-12 2.06209E-12 2.07788E-12 + 2.03362E-12 2.05064E-12 2.06556E-12 + 2.02361E-12 2.03981E-12 2.05393E-12 + 2.04241E-12 2.05999E-12 2.07545E-12 + 2.03204E-12 2.04875E-12 2.06334E-12 + 2.02220E-12 2.03809E-12 2.05192E-12 + 2.04367E-12 2.06097E-12 2.07614E-12 + 2.03345E-12 2.04991E-12 2.06423E-12 + 2.02375E-12 2.03941E-12 2.05298E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77675E-01 5.01390E-01 5.20169E-01 + 4.78235E-01 5.02032E-01 5.20840E-01 + 4.78646E-01 5.02490E-01 5.21347E-01 + 4.77875E-01 5.01593E-01 5.20353E-01 + 4.78405E-01 5.02211E-01 5.21028E-01 + 4.78803E-01 5.02629E-01 5.21482E-01 + 4.78054E-01 5.01780E-01 5.20535E-01 + 4.78566E-01 5.02380E-01 5.21191E-01 + 4.78949E-01 5.02780E-01 5.21618E-01 +* GROUP 1 -> 2 + 1.12065E-02 1.24324E-02 1.34144E-02 + 1.11894E-02 1.24208E-02 1.34085E-02 + 1.11599E-02 1.23928E-02 1.33830E-02 + 1.11009E-02 1.23226E-02 1.32996E-02 + 1.10821E-02 1.23081E-02 1.32919E-02 + 1.10514E-02 1.22780E-02 1.32640E-02 + 1.09915E-02 1.22070E-02 1.31810E-02 + 1.09715E-02 1.21915E-02 1.31709E-02 + 1.09395E-02 1.21603E-02 1.31412E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15549E+00 1.24496E+00 1.31794E+00 + 1.14844E+00 1.23669E+00 1.30854E+00 + 1.14175E+00 1.22888E+00 1.29970E+00 + 1.15487E+00 1.24430E+00 1.31725E+00 + 1.14785E+00 1.23607E+00 1.30788E+00 + 1.14119E+00 1.22829E+00 1.29909E+00 + 1.15413E+00 1.24351E+00 1.31642E+00 + 1.14713E+00 1.23533E+00 1.30712E+00 + 1.14051E+00 1.22760E+00 1.29836E+00 +* +* ADF Table +* +* GROUP 1 + 1.05178 1.05471 1.05703 + 1.05101 1.05393 1.05615 + 1.05037 1.05305 1.05518 + 1.05161 1.05457 1.05687 + 1.05083 1.05368 1.05597 + 1.05019 1.05288 1.05500 + 1.05142 1.05437 1.05669 + 1.05064 1.05362 1.05579 + 1.05001 1.05269 1.05483 +* GROUP 2 + 1.33040 1.33491 1.33849 + 1.32573 1.32959 1.33271 + 1.32153 1.32500 1.32763 + 1.33024 1.33485 1.33840 + 1.32555 1.32958 1.33260 + 1.32139 1.32482 1.32753 + 1.33005 1.33456 1.33824 + 1.32537 1.32961 1.33243 + 1.32122 1.32473 1.32741 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.48143E-08 2.44406E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33585E-02 3.20264E-02 1.19816E-01 3.05557E-01 8.66116E-01 2.89832E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.73474E-04 1.01633E-03 9.38242E-04 2.15395E-03 1.03139E-03 4.08895E-04 +* +* ---------------------------------------------------------- +* BURNUP 32.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.24782E-01 2.32993E-01 2.39484E-01 + 2.23418E-01 2.31359E-01 2.37615E-01 + 2.22132E-01 2.29822E-01 2.35862E-01 + 2.24577E-01 2.32775E-01 2.39259E-01 + 2.23197E-01 2.31127E-01 2.37372E-01 + 2.21903E-01 2.29577E-01 2.35608E-01 + 2.24378E-01 2.32570E-01 2.39042E-01 + 2.22992E-01 2.30910E-01 2.37144E-01 + 2.21684E-01 2.29350E-01 2.35367E-01 +* GROUP 2 + 8.17605E-01 8.75053E-01 9.22259E-01 + 8.11863E-01 8.67948E-01 9.13842E-01 + 8.06747E-01 8.61629E-01 9.06367E-01 + 8.17393E-01 8.74793E-01 9.21949E-01 + 8.11695E-01 8.67741E-01 9.13597E-01 + 8.06622E-01 8.61469E-01 9.06177E-01 + 8.17053E-01 8.74388E-01 9.21488E-01 + 8.11415E-01 8.67413E-01 9.13218E-01 + 8.06396E-01 8.61200E-01 9.05864E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.03340E-02 1.04620E-02 1.05557E-02 + 1.06242E-02 1.07799E-02 1.08959E-02 + 1.09008E-02 1.10819E-02 1.12178E-02 + 1.05645E-02 1.06978E-02 1.07961E-02 + 1.08542E-02 1.10157E-02 1.11361E-02 + 1.11302E-02 1.13170E-02 1.14573E-02 + 1.07975E-02 1.09373E-02 1.10396E-02 + 1.10870E-02 1.12543E-02 1.13794E-02 + 1.13619E-02 1.15547E-02 1.16998E-02 +* GROUP 2 + 9.91791E-02 1.00127E-01 1.00958E-01 + 1.08235E-01 1.10071E-01 1.11650E-01 + 1.17062E-01 1.19748E-01 1.22035E-01 + 9.91675E-02 1.00100E-01 1.00917E-01 + 1.08215E-01 1.10037E-01 1.11600E-01 + 1.17035E-01 1.19707E-01 1.21979E-01 + 9.92905E-02 1.00209E-01 1.01012E-01 + 1.08326E-01 1.10134E-01 1.11682E-01 + 1.17135E-01 1.19793E-01 1.22050E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.39738E-03 5.44591E-03 5.48113E-03 + 5.41509E-03 5.46596E-03 5.50317E-03 + 5.43069E-03 5.48368E-03 5.52255E-03 + 5.38831E-03 5.43701E-03 5.47257E-03 + 5.40580E-03 5.45701E-03 5.49442E-03 + 5.42136E-03 5.47457E-03 5.51370E-03 + 5.37847E-03 5.42756E-03 5.46323E-03 + 5.39582E-03 5.44721E-03 5.48486E-03 + 5.41115E-03 5.46464E-03 5.50401E-03 +* GROUP 2 + 1.43521E-01 1.44085E-01 1.44593E-01 + 1.43037E-01 1.43574E-01 1.44055E-01 + 1.42573E-01 1.43087E-01 1.43540E-01 + 1.43570E-01 1.44110E-01 1.44593E-01 + 1.43097E-01 1.43612E-01 1.44067E-01 + 1.42642E-01 1.43134E-01 1.43564E-01 + 1.43869E-01 1.44387E-01 1.44847E-01 + 1.43403E-01 1.43898E-01 1.44331E-01 + 1.42955E-01 1.43428E-01 1.43838E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.72309E-14 6.78205E-14 6.82482E-14 + 6.74549E-14 6.80733E-14 6.85255E-14 + 6.76492E-14 6.82928E-14 6.87647E-14 + 6.71138E-14 6.77056E-14 6.81375E-14 + 6.73346E-14 6.79573E-14 6.84117E-14 + 6.75279E-14 6.81744E-14 6.86492E-14 + 6.69873E-14 6.75840E-14 6.80174E-14 + 6.72059E-14 6.78308E-14 6.82883E-14 + 6.73957E-14 6.80456E-14 6.85235E-14 +* GROUP 2 + 1.78070E-12 1.78899E-12 1.79650E-12 + 1.77381E-12 1.78168E-12 1.78878E-12 + 1.76722E-12 1.77472E-12 1.78141E-12 + 1.78072E-12 1.78870E-12 1.79590E-12 + 1.77397E-12 1.78156E-12 1.78835E-12 + 1.76751E-12 1.77474E-12 1.78115E-12 + 1.78375E-12 1.79145E-12 1.79837E-12 + 1.77711E-12 1.78444E-12 1.79096E-12 + 1.77074E-12 1.77773E-12 1.78390E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.85006E-01 5.10169E-01 5.30101E-01 + 4.86669E-01 5.12043E-01 5.32146E-01 + 4.88044E-01 5.13550E-01 5.33759E-01 + 4.85310E-01 5.10472E-01 5.30400E-01 + 4.86957E-01 5.12316E-01 5.32393E-01 + 4.88307E-01 5.13791E-01 5.34009E-01 + 4.85601E-01 5.10774E-01 5.30684E-01 + 4.87238E-01 5.12578E-01 5.32661E-01 + 4.88541E-01 5.14051E-01 5.34260E-01 +* GROUP 1 -> 2 + 1.44549E-02 1.58068E-02 1.68858E-02 + 1.45707E-02 1.59510E-02 1.70564E-02 + 1.46468E-02 1.60468E-02 1.71687E-02 + 1.43315E-02 1.56786E-02 1.67545E-02 + 1.44428E-02 1.58180E-02 1.69198E-02 + 1.45159E-02 1.59100E-02 1.70272E-02 + 1.42023E-02 1.55443E-02 1.66162E-02 + 1.43086E-02 1.56781E-02 1.67757E-02 + 1.43781E-02 1.57656E-02 1.68786E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21498E+00 1.31014E+00 1.38806E+00 + 1.20591E+00 1.29962E+00 1.37615E+00 + 1.19736E+00 1.28969E+00 1.36496E+00 + 1.21427E+00 1.30942E+00 1.38730E+00 + 1.20526E+00 1.29893E+00 1.37545E+00 + 1.19674E+00 1.28905E+00 1.36428E+00 + 1.21347E+00 1.30856E+00 1.38640E+00 + 1.20448E+00 1.29815E+00 1.37461E+00 + 1.19602E+00 1.28831E+00 1.36353E+00 +* +* ADF Table +* +* GROUP 1 + 1.00086 1.00110 1.00120 + 1.00154 1.00179 1.00208 + 1.00205 1.00250 1.00288 + 1.00077 1.00093 1.00112 + 1.00144 1.00171 1.00200 + 1.00197 1.00241 1.00278 + 1.00065 1.00088 1.00105 + 1.00135 1.00169 1.00190 + 1.00187 1.00230 1.00265 +* GROUP 2 + 0.93695 0.93654 0.93614 + 0.94141 0.94133 0.94181 + 0.94508 0.94571 0.94640 + 0.93654 0.93603 0.93585 + 0.94099 0.94116 0.94137 + 0.94466 0.94529 0.94598 + 0.93609 0.93562 0.93541 + 0.94053 0.94068 0.94079 + 0.94419 0.94481 0.94548 + +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.16283E-01 2.23483E-01 2.29211E-01 + 2.15078E-01 2.22037E-01 2.27550E-01 + 2.13918E-01 2.20646E-01 2.25956E-01 + 2.15998E-01 2.23190E-01 2.28901E-01 + 2.14783E-01 2.21728E-01 2.27227E-01 + 2.13615E-01 2.20323E-01 2.25620E-01 + 2.15729E-01 2.22906E-01 2.28607E-01 + 2.14507E-01 2.21435E-01 2.26922E-01 + 2.13328E-01 2.20021E-01 2.25303E-01 +* GROUP 2 + 8.03046E-01 8.55889E-01 8.99143E-01 + 7.99561E-01 8.51387E-01 8.93661E-01 + 7.96487E-01 8.47409E-01 8.88816E-01 + 8.02906E-01 8.55702E-01 8.98918E-01 + 7.99460E-01 8.51249E-01 8.93490E-01 + 7.96423E-01 8.47315E-01 8.88691E-01 + 8.02679E-01 8.55415E-01 8.98575E-01 + 7.99280E-01 8.51018E-01 8.93210E-01 + 7.96286E-01 8.47133E-01 8.88470E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.58328E-02 1.60541E-02 1.62128E-02 + 1.60293E-02 1.62742E-02 1.64514E-02 + 1.62141E-02 1.64795E-02 1.66736E-02 + 1.60155E-02 1.62439E-02 1.64094E-02 + 1.62096E-02 1.64623E-02 1.66455E-02 + 1.63920E-02 1.66657E-02 1.68650E-02 + 1.61990E-02 1.64371E-02 1.66076E-02 + 1.63905E-02 1.66514E-02 1.68406E-02 + 1.65702E-02 1.68519E-02 1.70573E-02 +* GROUP 2 + 1.36057E-01 1.36779E-01 1.37426E-01 + 1.44506E-01 1.46063E-01 1.47406E-01 + 1.52768E-01 1.55124E-01 1.57134E-01 + 1.36075E-01 1.36780E-01 1.37415E-01 + 1.44518E-01 1.46058E-01 1.47388E-01 + 1.52774E-01 1.55115E-01 1.57108E-01 + 1.36241E-01 1.36937E-01 1.37555E-01 + 1.44672E-01 1.46198E-01 1.47515E-01 + 1.52918E-01 1.55245E-01 1.57225E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.23869E-03 5.30476E-03 5.35235E-03 + 5.25135E-03 5.31978E-03 5.36925E-03 + 5.26343E-03 5.33411E-03 5.38547E-03 + 5.23035E-03 5.29680E-03 5.34446E-03 + 5.24318E-03 5.31189E-03 5.36156E-03 + 5.25544E-03 5.32646E-03 5.37808E-03 + 5.22136E-03 5.28808E-03 5.33594E-03 + 5.23429E-03 5.30329E-03 5.35318E-03 + 5.24666E-03 5.31805E-03 5.36986E-03 +* GROUP 2 + 1.50764E-01 1.51617E-01 1.52348E-01 + 1.50240E-01 1.51053E-01 1.51743E-01 + 1.49740E-01 1.50518E-01 1.51172E-01 + 1.50833E-01 1.51663E-01 1.52369E-01 + 1.50318E-01 1.51109E-01 1.51776E-01 + 1.49828E-01 1.50584E-01 1.51217E-01 + 1.51159E-01 1.51969E-01 1.52653E-01 + 1.50652E-01 1.51424E-01 1.52071E-01 + 1.50169E-01 1.50908E-01 1.51522E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.51453E-14 6.59559E-14 6.65397E-14 + 6.52845E-14 6.61220E-14 6.67270E-14 + 6.54141E-14 6.62762E-14 6.69020E-14 + 6.50336E-14 6.58492E-14 6.64337E-14 + 6.51739E-14 6.60149E-14 6.66225E-14 + 6.53051E-14 6.61713E-14 6.68002E-14 + 6.49137E-14 6.57327E-14 6.63200E-14 + 6.50544E-14 6.58993E-14 6.65095E-14 + 6.51861E-14 6.60571E-14 6.66881E-14 +* GROUP 2 + 1.86827E-12 1.88019E-12 1.89049E-12 + 1.86098E-12 1.87232E-12 1.88206E-12 + 1.85404E-12 1.86487E-12 1.87409E-12 + 1.86853E-12 1.88015E-12 1.89015E-12 + 1.86136E-12 1.87243E-12 1.88188E-12 + 1.85456E-12 1.86512E-12 1.87407E-12 + 1.87189E-12 1.88325E-12 1.89298E-12 + 1.86484E-12 1.87566E-12 1.88486E-12 + 1.85813E-12 1.86847E-12 1.87719E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.78127E-01 5.01883E-01 5.20671E-01 + 4.78543E-01 5.02328E-01 5.21144E-01 + 4.78837E-01 5.02640E-01 5.21471E-01 + 4.78294E-01 5.02056E-01 5.20828E-01 + 4.78693E-01 5.02486E-01 5.21280E-01 + 4.78978E-01 5.02767E-01 5.21589E-01 + 4.78452E-01 5.02216E-01 5.20982E-01 + 4.78850E-01 5.02624E-01 5.21422E-01 + 4.79110E-01 5.02882E-01 5.21700E-01 +* GROUP 1 -> 2 + 1.11478E-02 1.23742E-02 1.33574E-02 + 1.11232E-02 1.23537E-02 1.33409E-02 + 1.10864E-02 1.23158E-02 1.33030E-02 + 1.10345E-02 1.22561E-02 1.32340E-02 + 1.10087E-02 1.22326E-02 1.32153E-02 + 1.09708E-02 1.21930E-02 1.31755E-02 + 1.09169E-02 1.21315E-02 1.31055E-02 + 1.08899E-02 1.21070E-02 1.30845E-02 + 1.08506E-02 1.20664E-02 1.30430E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15863E+00 1.24826E+00 1.32141E+00 + 1.15136E+00 1.23975E+00 1.31176E+00 + 1.14448E+00 1.23174E+00 1.30268E+00 + 1.15796E+00 1.24755E+00 1.32066E+00 + 1.15073E+00 1.23910E+00 1.31105E+00 + 1.14389E+00 1.23111E+00 1.30202E+00 + 1.15717E+00 1.24672E+00 1.31978E+00 + 1.14998E+00 1.23831E+00 1.31024E+00 + 1.14318E+00 1.23039E+00 1.30126E+00 +* +* ADF Table +* +* GROUP 1 + 1.05188 1.05483 1.05716 + 1.05105 1.05400 1.05623 + 1.05037 1.05308 1.05517 + 1.05168 1.05466 1.05699 + 1.05086 1.05372 1.05602 + 1.05018 1.05290 1.05499 + 1.05148 1.05445 1.05679 + 1.05066 1.05360 1.05582 + 1.04998 1.05267 1.05480 +* GROUP 2 + 1.33004 1.33457 1.33822 + 1.32511 1.32902 1.33209 + 1.32067 1.32414 1.32673 + 1.32984 1.33452 1.33808 + 1.32488 1.32893 1.33194 + 1.32049 1.32393 1.32659 + 1.32959 1.33415 1.33786 + 1.32466 1.32887 1.33172 + 1.32028 1.32377 1.32643 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.49626E-08 2.46671E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33669E-02 3.17628E-02 1.19372E-01 3.05879E-01 8.68703E-01 2.90712E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.49676E-04 9.26112E-04 8.32341E-04 1.91515E-03 9.49097E-04 3.69269E-04 +* +* ---------------------------------------------------------- +* BURNUP 35.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.24373E-01 2.32555E-01 2.39021E-01 + 2.22976E-01 2.30880E-01 2.37110E-01 + 2.21662E-01 2.29315E-01 2.35320E-01 + 2.24162E-01 2.32334E-01 2.38791E-01 + 2.22752E-01 2.30646E-01 2.36858E-01 + 2.21432E-01 2.29066E-01 2.35061E-01 + 2.23960E-01 2.32121E-01 2.38570E-01 + 2.22539E-01 2.30421E-01 2.36626E-01 + 2.21210E-01 2.28836E-01 2.34816E-01 +* GROUP 2 + 8.18775E-01 8.76334E-01 9.23646E-01 + 8.12953E-01 8.69140E-01 9.15128E-01 + 8.07770E-01 8.62742E-01 9.07569E-01 + 8.18539E-01 8.76050E-01 9.23319E-01 + 8.12774E-01 8.68915E-01 9.14867E-01 + 8.07632E-01 8.62573E-01 9.07362E-01 + 8.18189E-01 8.75635E-01 9.22839E-01 + 8.12479E-01 8.68572E-01 9.14470E-01 + 8.07397E-01 8.62291E-01 9.07040E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.04026E-02 1.05325E-02 1.06277E-02 + 1.06933E-02 1.08511E-02 1.09687E-02 + 1.09702E-02 1.11531E-02 1.12905E-02 + 1.06342E-02 1.07698E-02 1.08696E-02 + 1.09245E-02 1.10883E-02 1.12103E-02 + 1.12006E-02 1.13895E-02 1.15314E-02 + 1.08693E-02 1.10112E-02 1.11150E-02 + 1.11589E-02 1.13288E-02 1.14554E-02 + 1.14339E-02 1.16288E-02 1.17754E-02 +* GROUP 2 + 9.81930E-02 9.91013E-02 9.98971E-02 + 1.07289E-01 1.09088E-01 1.10633E-01 + 1.16152E-01 1.18804E-01 1.21061E-01 + 9.81941E-02 9.90869E-02 9.98695E-02 + 1.07281E-01 1.09067E-01 1.10596E-01 + 1.16137E-01 1.18775E-01 1.21016E-01 + 9.83309E-02 9.92107E-02 9.99783E-02 + 1.07405E-01 1.09176E-01 1.10691E-01 + 1.16250E-01 1.18874E-01 1.21100E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.26647E-03 5.31441E-03 5.34925E-03 + 5.28341E-03 5.33362E-03 5.37044E-03 + 5.29849E-03 5.35076E-03 5.38920E-03 + 5.25737E-03 5.30554E-03 5.34067E-03 + 5.27419E-03 5.32471E-03 5.36167E-03 + 5.28918E-03 5.34170E-03 5.38039E-03 + 5.24770E-03 5.29616E-03 5.33140E-03 + 5.26428E-03 5.31502E-03 5.35220E-03 + 5.27912E-03 5.33190E-03 5.37081E-03 +* GROUP 2 + 1.40363E-01 1.40841E-01 1.41267E-01 + 1.39937E-01 1.40392E-01 1.40796E-01 + 1.39527E-01 1.39963E-01 1.40344E-01 + 1.40445E-01 1.40898E-01 1.41301E-01 + 1.40028E-01 1.40462E-01 1.40841E-01 + 1.39626E-01 1.40042E-01 1.40400E-01 + 1.40776E-01 1.41208E-01 1.41588E-01 + 1.40366E-01 1.40779E-01 1.41137E-01 + 1.39970E-01 1.40367E-01 1.40706E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.54199E-14 6.60012E-14 6.64235E-14 + 6.56322E-14 6.62410E-14 6.66874E-14 + 6.58178E-14 6.64512E-14 6.69165E-14 + 6.53028E-14 6.58870E-14 6.63130E-14 + 6.55128E-14 6.61257E-14 6.65740E-14 + 6.56971E-14 6.63335E-14 6.68019E-14 + 6.51789E-14 6.57667E-14 6.61941E-14 + 6.53855E-14 6.60012E-14 6.64519E-14 + 6.55672E-14 6.62069E-14 6.66778E-14 +* GROUP 2 + 1.73552E-12 1.74263E-12 1.74905E-12 + 1.72940E-12 1.73616E-12 1.74224E-12 + 1.72354E-12 1.73001E-12 1.73573E-12 + 1.73595E-12 1.74276E-12 1.74890E-12 + 1.72998E-12 1.73647E-12 1.74224E-12 + 1.72423E-12 1.73043E-12 1.73588E-12 + 1.73940E-12 1.74595E-12 1.75180E-12 + 1.73351E-12 1.73976E-12 1.74526E-12 + 1.72786E-12 1.73383E-12 1.73903E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.85275E-01 5.10466E-01 5.30411E-01 + 4.86918E-01 5.12330E-01 5.32461E-01 + 4.88260E-01 5.13798E-01 5.34023E-01 + 4.85579E-01 5.10768E-01 5.30694E-01 + 4.87199E-01 5.12608E-01 5.32706E-01 + 4.88525E-01 5.14047E-01 5.34253E-01 + 4.85876E-01 5.11063E-01 5.30981E-01 + 4.87479E-01 5.12876E-01 5.32974E-01 + 4.88809E-01 5.14301E-01 5.34483E-01 +* GROUP 1 -> 2 + 1.44616E-02 1.58157E-02 1.68963E-02 + 1.45755E-02 1.59587E-02 1.70660E-02 + 1.46508E-02 1.60526E-02 1.71771E-02 + 1.43361E-02 1.56854E-02 1.67628E-02 + 1.44458E-02 1.58237E-02 1.69270E-02 + 1.45168E-02 1.59132E-02 1.70333E-02 + 1.42043E-02 1.55482E-02 1.66215E-02 + 1.43097E-02 1.56812E-02 1.67804E-02 + 1.43766E-02 1.57664E-02 1.68818E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21571E+00 1.31093E+00 1.38886E+00 + 1.20662E+00 1.30034E+00 1.37687E+00 + 1.19799E+00 1.29035E+00 1.36563E+00 + 1.21501E+00 1.31019E+00 1.38809E+00 + 1.20595E+00 1.29965E+00 1.37615E+00 + 1.19737E+00 1.28970E+00 1.36496E+00 + 1.21418E+00 1.30933E+00 1.38719E+00 + 1.20516E+00 1.29883E+00 1.37531E+00 + 1.19664E+00 1.28895E+00 1.36417E+00 +* +* ADF Table +* +* GROUP 1 + 1.00087 1.00110 1.00121 + 1.00154 1.00179 1.00210 + 1.00205 1.00250 1.00288 + 1.00077 1.00096 1.00112 + 1.00144 1.00170 1.00200 + 1.00197 1.00240 1.00279 + 1.00066 1.00088 1.00105 + 1.00134 1.00169 1.00190 + 1.00187 1.00230 1.00265 +* GROUP 2 + 0.93679 0.93638 0.93596 + 0.94125 0.94115 0.94162 + 0.94490 0.94552 0.94620 + 0.93638 0.93583 0.93567 + 0.94083 0.94097 0.94118 + 0.94448 0.94510 0.94578 + 0.93592 0.93544 0.93523 + 0.94035 0.94049 0.94059 + 0.94400 0.94461 0.94527 +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.15721E-01 2.22886E-01 2.28584E-01 + 2.14488E-01 2.21403E-01 2.26881E-01 + 2.13299E-01 2.19974E-01 2.25243E-01 + 2.15433E-01 2.22587E-01 2.28267E-01 + 2.14186E-01 2.21086E-01 2.26549E-01 + 2.12986E-01 2.19643E-01 2.24899E-01 + 2.15158E-01 2.22294E-01 2.27968E-01 + 2.13902E-01 2.20788E-01 2.26237E-01 + 2.12694E-01 2.19334E-01 2.24577E-01 +* GROUP 2 + 8.04023E-01 8.56970E-01 9.00318E-01 + 8.00485E-01 8.52403E-01 8.94766E-01 + 7.97362E-01 8.48376E-01 8.89858E-01 + 8.03870E-01 8.56765E-01 9.00079E-01 + 8.00371E-01 8.52252E-01 8.94582E-01 + 7.97289E-01 8.48268E-01 8.89720E-01 + 8.03635E-01 8.56471E-01 8.99726E-01 + 8.00182E-01 8.52013E-01 8.94292E-01 + 7.97142E-01 8.48075E-01 8.89491E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.58872E-02 1.61114E-02 1.62720E-02 + 1.60818E-02 1.63291E-02 1.65083E-02 + 1.62647E-02 1.65321E-02 1.67277E-02 + 1.60705E-02 1.63016E-02 1.64692E-02 + 1.62625E-02 1.65177E-02 1.67026E-02 + 1.64428E-02 1.67184E-02 1.69193E-02 + 1.62545E-02 1.64954E-02 1.66682E-02 + 1.64438E-02 1.67074E-02 1.68986E-02 + 1.66214E-02 1.69049E-02 1.71122E-02 +* GROUP 2 + 1.35050E-01 1.35726E-01 1.36332E-01 + 1.43539E-01 1.45052E-01 1.46358E-01 + 1.51837E-01 1.54152E-01 1.56126E-01 + 1.35081E-01 1.35741E-01 1.36334E-01 + 1.43562E-01 1.45060E-01 1.46352E-01 + 1.51854E-01 1.54155E-01 1.56113E-01 + 1.35262E-01 1.35912E-01 1.36489E-01 + 1.43730E-01 1.45213E-01 1.46493E-01 + 1.52011E-01 1.54298E-01 1.56243E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.11632E-03 5.18128E-03 5.22807E-03 + 5.12937E-03 5.19672E-03 5.24546E-03 + 5.14197E-03 5.21162E-03 5.26228E-03 + 5.10827E-03 5.17351E-03 5.22039E-03 + 5.12143E-03 5.18906E-03 5.23798E-03 + 5.13422E-03 5.20419E-03 5.25511E-03 + 5.09954E-03 5.16502E-03 5.21216E-03 + 5.11282E-03 5.18076E-03 5.22987E-03 + 5.12581E-03 5.19611E-03 5.24726E-03 +* GROUP 2 + 1.47561E-01 1.48319E-01 1.48960E-01 + 1.47090E-01 1.47812E-01 1.48419E-01 + 1.46641E-01 1.47333E-01 1.47908E-01 + 1.47662E-01 1.48396E-01 1.49014E-01 + 1.47199E-01 1.47900E-01 1.48485E-01 + 1.46759E-01 1.47429E-01 1.47984E-01 + 1.48021E-01 1.48735E-01 1.49333E-01 + 1.47564E-01 1.48247E-01 1.48812E-01 + 1.47130E-01 1.47784E-01 1.48320E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.34438E-14 6.42388E-14 6.48111E-14 + 6.35859E-14 6.44077E-14 6.50020E-14 + 6.37201E-14 6.45668E-14 6.51820E-14 + 6.33359E-14 6.41344E-14 6.47082E-14 + 6.34788E-14 6.43039E-14 6.49006E-14 + 6.36142E-14 6.44649E-14 6.50833E-14 + 6.32195E-14 6.40211E-14 6.45983E-14 + 6.33629E-14 6.41922E-14 6.47911E-14 + 6.35003E-14 6.43549E-14 6.49760E-14 +* GROUP 2 + 1.82235E-12 1.83297E-12 1.84208E-12 + 1.81577E-12 1.82589E-12 1.83450E-12 + 1.80952E-12 1.81919E-12 1.82734E-12 + 1.82302E-12 1.83335E-12 1.84217E-12 + 1.81656E-12 1.82641E-12 1.83475E-12 + 1.81044E-12 1.81983E-12 1.82773E-12 + 1.82681E-12 1.83689E-12 1.84545E-12 + 1.82044E-12 1.83006E-12 1.83815E-12 + 1.81439E-12 1.82359E-12 1.83126E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.78178E-01 5.01947E-01 5.20734E-01 + 4.78578E-01 5.02365E-01 5.21191E-01 + 4.78846E-01 5.02647E-01 5.21470E-01 + 4.78351E-01 5.02113E-01 5.20884E-01 + 4.78731E-01 5.02508E-01 5.21323E-01 + 4.78972E-01 5.02762E-01 5.21582E-01 + 4.78508E-01 5.02246E-01 5.21037E-01 + 4.78870E-01 5.02646E-01 5.21432E-01 + 4.79097E-01 5.02867E-01 5.21679E-01 +* GROUP 1 -> 2 + 1.11370E-02 1.23640E-02 1.33481E-02 + 1.11107E-02 1.23411E-02 1.33284E-02 + 1.10719E-02 1.23006E-02 1.32875E-02 + 1.10225E-02 1.22442E-02 1.32226E-02 + 1.09946E-02 1.22182E-02 1.32006E-02 + 1.09547E-02 1.21761E-02 1.31581E-02 + 1.09032E-02 1.21174E-02 1.30924E-02 + 1.08739E-02 1.20906E-02 1.30680E-02 + 1.08327E-02 1.20473E-02 1.30236E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15933E+00 1.24900E+00 1.32216E+00 + 1.15201E+00 1.24043E+00 1.31245E+00 + 1.14508E+00 1.23235E+00 1.30331E+00 + 1.15864E+00 1.24826E+00 1.32141E+00 + 1.15135E+00 1.23975E+00 1.31174E+00 + 1.14447E+00 1.23172E+00 1.30265E+00 + 1.15785E+00 1.24744E+00 1.32053E+00 + 1.15060E+00 1.23896E+00 1.31092E+00 + 1.14375E+00 1.23097E+00 1.30187E+00 +* +* ADF Table +* +* GROUP 1 + 1.05192 1.05490 1.05723 + 1.05109 1.05405 1.05629 + 1.05041 1.05311 1.05520 + 1.05174 1.05472 1.05706 + 1.05090 1.05377 1.05608 + 1.05021 1.05293 1.05502 + 1.05154 1.05450 1.05686 + 1.05069 1.05365 1.05587 + 1.05002 1.05272 1.05483 +* GROUP 2 + 1.33021 1.33476 1.33841 + 1.32520 1.32910 1.33218 + 1.32069 1.32415 1.32673 + 1.33000 1.33469 1.33827 + 1.32496 1.32900 1.33202 + 1.32050 1.32393 1.32658 + 1.32973 1.33430 1.33804 + 1.32472 1.32894 1.33178 + 1.32028 1.32377 1.32641 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.50152E-08 2.47212E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33693E-02 3.16975E-02 1.19263E-01 3.05973E-01 8.69351E-01 2.90952E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.44291E-04 9.05743E-04 8.08493E-04 1.86182E-03 9.30693E-04 3.60462E-04 +* +* ---------------------------------------------------------- +* BURNUP 37.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.23959E-01 2.32113E-01 2.38551E-01 + 2.22531E-01 2.30399E-01 2.36594E-01 + 2.21195E-01 2.28800E-01 2.34775E-01 + 2.23742E-01 2.31887E-01 2.38318E-01 + 2.22306E-01 2.30163E-01 2.36345E-01 + 2.20954E-01 2.28552E-01 2.34512E-01 + 2.23536E-01 2.31670E-01 2.38094E-01 + 2.22089E-01 2.29935E-01 2.36107E-01 + 2.20732E-01 2.28318E-01 2.34264E-01 +* GROUP 2 + 8.19868E-01 8.77537E-01 9.24956E-01 + 8.13974E-01 8.70262E-01 9.16344E-01 + 8.08729E-01 8.63790E-01 9.08692E-01 + 8.19619E-01 8.77236E-01 9.24608E-01 + 8.13775E-01 8.70020E-01 9.16058E-01 + 8.08578E-01 8.63598E-01 9.08473E-01 + 8.19252E-01 8.76805E-01 9.24108E-01 + 8.13472E-01 8.69660E-01 9.15646E-01 + 8.08328E-01 8.63306E-01 9.08135E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.04688E-02 1.06008E-02 1.06970E-02 + 1.07602E-02 1.09200E-02 1.10387E-02 + 1.10370E-02 1.12217E-02 1.13607E-02 + 1.07017E-02 1.08394E-02 1.09406E-02 + 1.09928E-02 1.11583E-02 1.12819E-02 + 1.12685E-02 1.14594E-02 1.16030E-02 + 1.09383E-02 1.10823E-02 1.11877E-02 + 1.12284E-02 1.14003E-02 1.15283E-02 + 1.15032E-02 1.17001E-02 1.18483E-02 +* GROUP 2 + 9.71719E-02 9.80442E-02 9.88076E-02 + 1.06306E-01 1.08071E-01 1.09587E-01 + 1.15204E-01 1.17824E-01 1.20052E-01 + 9.71850E-02 9.80420E-02 9.87913E-02 + 1.06309E-01 1.08061E-01 1.09560E-01 + 1.15200E-01 1.17806E-01 1.20019E-01 + 9.73337E-02 9.81779E-02 9.89123E-02 + 1.06444E-01 1.08181E-01 1.09667E-01 + 1.15323E-01 1.17915E-01 1.20113E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.14025E-03 5.18773E-03 5.22214E-03 + 5.15653E-03 5.20616E-03 5.24249E-03 + 5.17111E-03 5.22277E-03 5.26083E-03 + 5.13124E-03 5.17890E-03 5.21369E-03 + 5.14744E-03 5.19728E-03 5.23391E-03 + 5.16193E-03 5.21390E-03 5.25219E-03 + 5.12168E-03 5.16962E-03 5.20455E-03 + 5.13765E-03 5.18781E-03 5.22455E-03 + 5.15205E-03 5.20424E-03 5.24274E-03 +* GROUP 2 + 1.37181E-01 1.37578E-01 1.37928E-01 + 1.36810E-01 1.37189E-01 1.37521E-01 + 1.36452E-01 1.36816E-01 1.37129E-01 + 1.37293E-01 1.37665E-01 1.37993E-01 + 1.36930E-01 1.37288E-01 1.37596E-01 + 1.36580E-01 1.36923E-01 1.37215E-01 + 1.37654E-01 1.38006E-01 1.38310E-01 + 1.37296E-01 1.37634E-01 1.37921E-01 + 1.36951E-01 1.37276E-01 1.37548E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.36795E-14 6.42541E-14 6.46704E-14 + 6.38813E-14 6.44817E-14 6.49213E-14 + 6.40587E-14 6.46832E-14 6.51429E-14 + 6.35637E-14 6.41407E-14 6.45617E-14 + 6.37642E-14 6.43676E-14 6.48105E-14 + 6.39401E-14 6.45681E-14 6.50305E-14 + 6.34416E-14 6.40220E-14 6.44447E-14 + 6.36386E-14 6.42457E-14 6.46901E-14 + 6.38129E-14 6.44437E-14 6.49086E-14 +* GROUP 2 + 1.69049E-12 1.69651E-12 1.70191E-12 + 1.68512E-12 1.69085E-12 1.69596E-12 + 1.67996E-12 1.68545E-12 1.69026E-12 + 1.69133E-12 1.69705E-12 1.70217E-12 + 1.68607E-12 1.69155E-12 1.69635E-12 + 1.68102E-12 1.68625E-12 1.69080E-12 + 1.69516E-12 1.70063E-12 1.70546E-12 + 1.68998E-12 1.69521E-12 1.69976E-12 + 1.68501E-12 1.69001E-12 1.69432E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.85560E-01 5.10765E-01 5.30692E-01 + 4.87188E-01 5.12619E-01 5.32735E-01 + 4.88529E-01 5.14040E-01 5.34269E-01 + 4.85852E-01 5.11058E-01 5.30982E-01 + 4.87473E-01 5.12921E-01 5.33003E-01 + 4.88785E-01 5.14292E-01 5.34501E-01 + 4.86154E-01 5.11351E-01 5.31260E-01 + 4.87751E-01 5.13175E-01 5.33248E-01 + 4.88963E-01 5.14543E-01 5.34740E-01 +* GROUP 1 -> 2 + 1.44693E-02 1.58262E-02 1.69089E-02 + 1.45822E-02 1.59687E-02 1.70776E-02 + 1.46555E-02 1.60606E-02 1.71845E-02 + 1.43417E-02 1.56934E-02 1.67735E-02 + 1.44506E-02 1.58309E-02 1.69367E-02 + 1.45201E-02 1.59187E-02 1.70387E-02 + 1.42077E-02 1.55537E-02 1.66298E-02 + 1.43117E-02 1.56862E-02 1.67867E-02 + 1.43781E-02 1.57692E-02 1.68841E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21644E+00 1.31168E+00 1.38963E+00 + 1.20727E+00 1.30102E+00 1.37755E+00 + 1.19858E+00 1.29097E+00 1.36627E+00 + 1.21572E+00 1.31092E+00 1.38884E+00 + 1.20658E+00 1.30030E+00 1.37681E+00 + 1.19795E+00 1.29030E+00 1.36559E+00 + 1.21488E+00 1.31004E+00 1.38791E+00 + 1.20580E+00 1.29948E+00 1.37596E+00 + 1.19721E+00 1.28955E+00 1.36479E+00 +* +* ADF Table +* +* GROUP 1 + 1.00087 1.00112 1.00122 + 1.00154 1.00180 1.00210 + 1.00205 1.00250 1.00290 + 1.00076 1.00094 1.00114 + 1.00145 1.00170 1.00201 + 1.00196 1.00241 1.00280 + 1.00065 1.00087 1.00107 + 1.00134 1.00169 1.00190 + 1.00187 1.00230 1.00266 +* GROUP 2 + 0.93670 0.93627 0.93585 + 0.94114 0.94104 0.94150 + 0.94478 0.94539 0.94606 + 0.93628 0.93574 0.93556 + 0.94072 0.94086 0.94105 + 0.94436 0.94497 0.94563 + 0.93581 0.93534 0.93510 + 0.94023 0.94037 0.94046 + 0.94387 0.94447 0.94512 +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.15157E-01 2.22284E-01 2.27945E-01 + 2.13890E-01 2.20758E-01 2.26197E-01 + 2.12666E-01 2.19288E-01 2.24514E-01 + 2.14862E-01 2.21974E-01 2.27626E-01 + 2.13582E-01 2.20434E-01 2.25862E-01 + 2.12348E-01 2.18953E-01 2.24163E-01 + 2.14581E-01 2.21676E-01 2.27319E-01 + 2.13288E-01 2.20128E-01 2.25544E-01 + 2.12046E-01 2.18637E-01 2.23832E-01 +* GROUP 2 + 8.04924E-01 8.57971E-01 9.01420E-01 + 8.01334E-01 8.53348E-01 8.95795E-01 + 7.98169E-01 8.49260E-01 8.90824E-01 + 8.04762E-01 8.57758E-01 9.01162E-01 + 8.01210E-01 8.53181E-01 8.95593E-01 + 7.98082E-01 8.49143E-01 8.90670E-01 + 8.04511E-01 8.57448E-01 9.00793E-01 + 8.01011E-01 8.52927E-01 8.95291E-01 + 7.97929E-01 8.48939E-01 8.90428E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.59397E-02 1.61663E-02 1.63287E-02 + 1.61322E-02 1.63814E-02 1.65626E-02 + 1.63126E-02 1.65817E-02 1.67790E-02 + 1.61230E-02 1.63569E-02 1.65265E-02 + 1.63130E-02 1.65704E-02 1.67574E-02 + 1.64906E-02 1.67684E-02 1.69708E-02 + 1.63077E-02 1.65512E-02 1.67260E-02 + 1.64946E-02 1.67606E-02 1.69539E-02 + 1.66695E-02 1.69552E-02 1.71640E-02 +* GROUP 2 + 1.33999E-01 1.34632E-01 1.35199E-01 + 1.42525E-01 1.43998E-01 1.45268E-01 + 1.50857E-01 1.53134E-01 1.55076E-01 + 1.34043E-01 1.34660E-01 1.35215E-01 + 1.42560E-01 1.44018E-01 1.45275E-01 + 1.50885E-01 1.53150E-01 1.55075E-01 + 1.34236E-01 1.34843E-01 1.35382E-01 + 1.42740E-01 1.44183E-01 1.45428E-01 + 1.51053E-01 1.53303E-01 1.55216E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 4.99884E-03 5.06271E-03 5.10873E-03 + 5.01230E-03 5.07860E-03 5.12666E-03 + 5.02541E-03 5.09409E-03 5.14421E-03 + 4.99102E-03 5.05518E-03 5.10136E-03 + 5.00469E-03 5.07126E-03 5.11951E-03 + 5.01801E-03 5.08709E-03 5.13737E-03 + 4.98264E-03 5.04701E-03 5.09339E-03 + 4.99642E-03 5.06331E-03 5.11177E-03 + 5.00994E-03 5.07939E-03 5.12988E-03 +* GROUP 2 + 1.44325E-01 1.44991E-01 1.45550E-01 + 1.43904E-01 1.44540E-01 1.45069E-01 + 1.43502E-01 1.44112E-01 1.44614E-01 + 1.44455E-01 1.45100E-01 1.45635E-01 + 1.44041E-01 1.44658E-01 1.45165E-01 + 1.43648E-01 1.44238E-01 1.44719E-01 + 1.44843E-01 1.45468E-01 1.45983E-01 + 1.44436E-01 1.45033E-01 1.45521E-01 + 1.44047E-01 1.44621E-01 1.45084E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.18145E-14 6.25940E-14 6.31558E-14 + 6.19598E-14 6.27664E-14 6.33507E-14 + 6.20984E-14 6.29309E-14 6.35372E-14 + 6.17096E-14 6.24930E-14 6.30567E-14 + 6.18566E-14 6.26667E-14 6.32533E-14 + 6.19971E-14 6.28342E-14 6.34427E-14 + 6.15979E-14 6.23841E-14 6.29502E-14 + 6.17456E-14 6.25596E-14 6.31489E-14 + 6.18877E-14 6.27292E-14 6.33401E-14 +* GROUP 2 + 1.77649E-12 1.78587E-12 1.79387E-12 + 1.77060E-12 1.77955E-12 1.78710E-12 + 1.76499E-12 1.77355E-12 1.78071E-12 + 1.77755E-12 1.78667E-12 1.79437E-12 + 1.77177E-12 1.78046E-12 1.78775E-12 + 1.76627E-12 1.77458E-12 1.78149E-12 + 1.78172E-12 1.79058E-12 1.79804E-12 + 1.77602E-12 1.78448E-12 1.79153E-12 + 1.77059E-12 1.77870E-12 1.78538E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.78240E-01 5.01980E-01 5.20771E-01 + 4.78601E-01 5.02375E-01 5.21193E-01 + 4.78821E-01 5.02604E-01 5.21412E-01 + 4.78398E-01 5.02141E-01 5.20921E-01 + 4.78747E-01 5.02501E-01 5.21322E-01 + 4.78928E-01 5.02711E-01 5.21501E-01 + 4.78552E-01 5.02291E-01 5.21057E-01 + 4.78874E-01 5.02628E-01 5.21432E-01 + 4.79031E-01 5.02801E-01 5.21575E-01 +* GROUP 1 -> 2 + 1.11275E-02 1.23549E-02 1.33395E-02 + 1.10992E-02 1.23290E-02 1.33165E-02 + 1.10577E-02 1.22860E-02 1.32724E-02 + 1.10112E-02 1.22331E-02 1.32122E-02 + 1.09817E-02 1.22049E-02 1.31873E-02 + 1.09390E-02 1.21599E-02 1.31414E-02 + 1.08904E-02 1.21048E-02 1.30798E-02 + 1.08590E-02 1.20755E-02 1.30527E-02 + 1.08155E-02 1.20294E-02 1.30049E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.16000E+00 1.24968E+00 1.32290E+00 + 1.15261E+00 1.24106E+00 1.31312E+00 + 1.14565E+00 1.23294E+00 1.30392E+00 + 1.15929E+00 1.24896E+00 1.32213E+00 + 1.15195E+00 1.24038E+00 1.31239E+00 + 1.14503E+00 1.23229E+00 1.30325E+00 + 1.15848E+00 1.24809E+00 1.32122E+00 + 1.15119E+00 1.23957E+00 1.31155E+00 + 1.14430E+00 1.23154E+00 1.30245E+00 +* +* ADF Table +* +* GROUP 1 + 1.05198 1.05497 1.05731 + 1.05113 1.05409 1.05634 + 1.05043 1.05314 1.05524 + 1.05179 1.05478 1.05714 + 1.05094 1.05380 1.05613 + 1.05023 1.05296 1.05506 + 1.05159 1.05456 1.05693 + 1.05073 1.05369 1.05593 + 1.05003 1.05276 1.05486 +* GROUP 2 + 1.33042 1.33499 1.33866 + 1.32532 1.32923 1.33231 + 1.32073 1.32419 1.32677 + 1.33020 1.33489 1.33851 + 1.32507 1.32913 1.33215 + 1.32054 1.32397 1.32662 + 1.32992 1.33451 1.33826 + 1.32482 1.32905 1.33190 + 1.32031 1.32380 1.32644 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.50694E-08 2.47745E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33719E-02 3.16326E-02 1.19154E-01 3.06072E-01 8.69997E-01 2.91198E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.39111E-04 8.86085E-04 7.85555E-04 1.81063E-03 9.12987E-04 3.52016E-04 +* +END diff --git a/smpl/xsec/HELIOS/2G_XSEC_u45 b/smpl/xsec/HELIOS/2G_XSEC_u45 new file mode 100644 index 0000000..26520d2 --- /dev/null +++ b/smpl/xsec/HELIOS/2G_XSEC_u45 @@ -0,0 +1,2397 @@ +* Input Control +1 1 * ADF, CROD +* Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 +* +* ---------------------------------------------------------- +* BURNUP 0.15 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.29147E-01 2.37622E-01 2.44315E-01 + 2.28068E-01 2.36331E-01 2.42850E-01 + 2.27059E-01 2.35126E-01 2.41476E-01 + 2.29015E-01 2.37479E-01 2.44166E-01 + 2.27926E-01 2.36178E-01 2.42686E-01 + 2.26905E-01 2.34959E-01 2.41297E-01 + 2.28889E-01 2.37344E-01 2.44025E-01 + 2.27792E-01 2.36035E-01 2.42537E-01 + 2.26758E-01 2.34803E-01 2.41132E-01 +* GROUP 2 + 7.84603E-01 8.39389E-01 8.84165E-01 + 7.80248E-01 8.33903E-01 8.77593E-01 + 7.76378E-01 8.29022E-01 8.71755E-01 + 7.84467E-01 8.39218E-01 8.83975E-01 + 7.80133E-01 8.33757E-01 8.77428E-01 + 7.76276E-01 8.28895E-01 8.71612E-01 + 7.84128E-01 8.38831E-01 8.83542E-01 + 7.79820E-01 8.33403E-01 8.77038E-01 + 7.75987E-01 8.28575E-01 8.71254E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 9.59384E-03 9.69740E-03 9.77311E-03 + 9.87180E-03 1.00017E-02 1.00974E-02 + 1.01427E-02 1.02967E-02 1.04117E-02 + 9.78120E-03 9.88886E-03 9.96757E-03 + 1.00595E-02 1.01937E-02 1.02924E-02 + 1.03305E-02 1.04889E-02 1.06069E-02 + 9.96978E-03 1.00822E-02 1.01640E-02 + 1.02485E-02 1.03874E-02 1.04897E-02 + 1.05194E-02 1.06830E-02 1.08041E-02 +* GROUP 2 + 1.08868E-01 1.11089E-01 1.13070E-01 + 1.16833E-01 1.19853E-01 1.22496E-01 + 1.24642E-01 1.28428E-01 1.31706E-01 + 1.08421E-01 1.10628E-01 1.12596E-01 + 1.16390E-01 1.19395E-01 1.22025E-01 + 1.24202E-01 1.27975E-01 1.31239E-01 + 1.08009E-01 1.10206E-01 1.12163E-01 + 1.15976E-01 1.18972E-01 1.21591E-01 + 1.23788E-01 1.27551E-01 1.30805E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.80867E-03 7.87401E-03 7.92075E-03 + 7.84198E-03 7.91112E-03 7.96089E-03 + 7.87035E-03 7.94243E-03 7.99464E-03 + 7.81169E-03 7.87748E-03 7.92453E-03 + 7.84477E-03 7.91441E-03 7.96443E-03 + 7.87291E-03 7.94554E-03 7.99804E-03 + 7.81102E-03 7.87733E-03 7.92459E-03 + 7.84377E-03 7.91396E-03 7.96439E-03 + 7.87161E-03 7.94487E-03 7.99758E-03 +* GROUP 2 + 1.63559E-01 1.66298E-01 1.68785E-01 + 1.61780E-01 1.64374E-01 1.66723E-01 + 1.60089E-01 1.62549E-01 1.64771E-01 + 1.62806E-01 1.65522E-01 1.67984E-01 + 1.61052E-01 1.63624E-01 1.65949E-01 + 1.59383E-01 1.61822E-01 1.64023E-01 + 1.62140E-01 1.64840E-01 1.67282E-01 + 1.60407E-01 1.62964E-01 1.65272E-01 + 1.58759E-01 1.61183E-01 1.63369E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 1.01372E-13 1.02198E-13 1.02788E-13 + 1.01827E-13 1.02704E-13 1.03335E-13 + 1.02213E-13 1.03129E-13 1.03791E-13 + 1.01410E-13 1.02242E-13 1.02835E-13 + 1.01862E-13 1.02745E-13 1.03379E-13 + 1.02244E-13 1.03167E-13 1.03833E-13 + 1.01398E-13 1.02237E-13 1.02833E-13 + 1.01845E-13 1.02736E-13 1.03375E-13 + 1.02223E-13 1.03154E-13 1.03823E-13 +* GROUP 2 + 2.17728E-12 2.21376E-12 2.24688E-12 + 2.15359E-12 2.18813E-12 2.21942E-12 + 2.13106E-12 2.16383E-12 2.19342E-12 + 2.16725E-12 2.20342E-12 2.23621E-12 + 2.14389E-12 2.17814E-12 2.20911E-12 + 2.12166E-12 2.15414E-12 2.18346E-12 + 2.15837E-12 2.19433E-12 2.22686E-12 + 2.13530E-12 2.16935E-12 2.20009E-12 + 2.11334E-12 2.14564E-12 2.17475E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.82550E-01 5.07738E-01 5.27599E-01 + 4.84084E-01 5.09524E-01 5.29572E-01 + 4.85518E-01 5.11076E-01 5.31261E-01 + 4.82816E-01 5.08001E-01 5.27869E-01 + 4.84346E-01 5.09771E-01 5.29816E-01 + 4.85773E-01 5.11317E-01 5.31490E-01 + 4.83067E-01 5.08246E-01 5.28134E-01 + 4.84603E-01 5.10013E-01 5.30075E-01 + 4.86012E-01 5.11564E-01 5.31723E-01 +* GROUP 1 -> 2 + 1.46792E-02 1.60378E-02 1.71182E-02 + 1.47871E-02 1.61718E-02 1.72761E-02 + 1.48624E-02 1.62653E-02 1.73884E-02 + 1.45914E-02 1.59471E-02 1.70254E-02 + 1.46967E-02 1.60788E-02 1.71805E-02 + 1.47697E-02 1.61698E-02 1.72900E-02 + 1.44993E-02 1.58520E-02 1.69277E-02 + 1.46020E-02 1.59809E-02 1.70801E-02 + 1.46725E-02 1.60696E-02 1.71864E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.19401E+00 1.28809E+00 1.36505E+00 + 1.18604E+00 1.27883E+00 1.35448E+00 + 1.17857E+00 1.27001E+00 1.34453E+00 + 1.19347E+00 1.28753E+00 1.36445E+00 + 1.18553E+00 1.27828E+00 1.35391E+00 + 1.17810E+00 1.26949E+00 1.34399E+00 + 1.19277E+00 1.28681E+00 1.36368E+00 + 1.18485E+00 1.27756E+00 1.35316E+00 + 1.17744E+00 1.26881E+00 1.34328E+00 +* +* ADF Table +* +* GROUP 1 + 1.00820 1.00914 1.01000 + 1.00847 1.00952 1.01036 + 1.00868 1.00977 1.01068 + 1.00812 1.00914 1.00986 + 1.00839 1.00944 1.01023 + 1.00860 1.00969 1.01060 + 1.00805 1.00905 1.00980 + 1.00831 1.00942 1.01025 + 1.00853 1.00959 1.01051 +* GROUP 2 + 0.99635 0.99711 0.99795 + 0.99833 0.99938 1.00058 + 0.99980 1.00134 1.00273 + 0.99621 0.99715 0.99785 + 0.99819 0.99943 1.00040 + 0.99965 1.00120 1.00260 + 0.99607 0.99707 0.99773 + 0.99801 0.99934 1.00025 + 0.99951 1.00101 1.00243 + +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.22332E-01 2.29905E-01 2.35924E-01 + 2.21397E-01 2.28777E-01 2.34634E-01 + 2.20479E-01 2.27679E-01 2.33379E-01 + 2.22141E-01 2.29702E-01 2.35712E-01 + 2.21183E-01 2.28564E-01 2.34413E-01 + 2.20271E-01 2.27454E-01 2.33144E-01 + 2.21959E-01 2.29504E-01 2.35510E-01 + 2.20993E-01 2.28362E-01 2.34202E-01 + 2.20073E-01 2.27241E-01 2.32923E-01 +* GROUP 2 + 7.74009E-01 8.24594E-01 8.65820E-01 + 7.71397E-01 8.21131E-01 8.61541E-01 + 7.69113E-01 8.18092E-01 8.57774E-01 + 7.73866E-01 8.24419E-01 8.65626E-01 + 7.71270E-01 8.20984E-01 8.61376E-01 + 7.68999E-01 8.17960E-01 8.57620E-01 + 7.73546E-01 8.24062E-01 8.65222E-01 + 7.70973E-01 8.20647E-01 8.61006E-01 + 7.68724E-01 8.17648E-01 8.57279E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.51951E-02 1.53814E-02 1.55132E-02 + 1.54083E-02 1.56190E-02 1.57704E-02 + 1.56122E-02 1.58459E-02 1.60156E-02 + 1.53510E-02 1.55420E-02 1.56794E-02 + 1.55629E-02 1.57796E-02 1.59353E-02 + 1.57657E-02 1.60057E-02 1.61790E-02 + 1.55070E-02 1.57056E-02 1.58463E-02 + 1.57179E-02 1.59405E-02 1.61010E-02 + 1.59191E-02 1.61646E-02 1.63432E-02 +* GROUP 2 + 1.41616E-01 1.43651E-01 1.45481E-01 + 1.49141E-01 1.51924E-01 1.54373E-01 + 1.56534E-01 1.60039E-01 1.63083E-01 + 1.41175E-01 1.43191E-01 1.45007E-01 + 1.48704E-01 1.51470E-01 1.53904E-01 + 1.56100E-01 1.59592E-01 1.62618E-01 + 1.40773E-01 1.42781E-01 1.44582E-01 + 1.48302E-01 1.51054E-01 1.53478E-01 + 1.55698E-01 1.59174E-01 1.62191E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 7.50110E-03 7.59441E-03 7.66093E-03 + 7.51514E-03 7.61114E-03 7.67997E-03 + 7.52684E-03 7.62528E-03 7.69596E-03 + 7.50172E-03 7.59574E-03 7.66266E-03 + 7.51557E-03 7.61226E-03 7.68154E-03 + 7.52720E-03 7.62619E-03 7.69743E-03 + 7.49882E-03 7.59334E-03 7.66079E-03 + 7.51254E-03 7.60984E-03 7.67951E-03 + 7.52398E-03 7.62360E-03 7.69523E-03 +* GROUP 2 + 1.68957E-01 1.72129E-01 1.74953E-01 + 1.67242E-01 1.70248E-01 1.72919E-01 + 1.65614E-01 1.68471E-01 1.71000E-01 + 1.68203E-01 1.71347E-01 1.74143E-01 + 1.66511E-01 1.69492E-01 1.72137E-01 + 1.64904E-01 1.67735E-01 1.70242E-01 + 1.67534E-01 1.70657E-01 1.73433E-01 + 1.65863E-01 1.68827E-01 1.71452E-01 + 1.64276E-01 1.67091E-01 1.69579E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 9.72611E-14 9.84571E-14 9.93086E-14 + 9.74392E-14 9.86695E-14 9.95507E-14 + 9.75842E-14 9.88447E-14 9.97490E-14 + 9.72640E-14 9.84692E-14 9.93263E-14 + 9.74389E-14 9.86784E-14 9.95654E-14 + 9.75823E-14 9.88500E-14 9.97615E-14 + 9.72195E-14 9.84317E-14 9.92958E-14 + 9.73923E-14 9.86396E-14 9.95321E-14 + 9.75323E-14 9.88084E-14 9.97251E-14 +* GROUP 2 + 2.24911E-12 2.29136E-12 2.32896E-12 + 2.22626E-12 2.26631E-12 2.30188E-12 + 2.20458E-12 2.24263E-12 2.27631E-12 + 2.23907E-12 2.28093E-12 2.31817E-12 + 2.21652E-12 2.25623E-12 2.29146E-12 + 2.19512E-12 2.23283E-12 2.26621E-12 + 2.23015E-12 2.27174E-12 2.30871E-12 + 2.20789E-12 2.24737E-12 2.28232E-12 + 2.18676E-12 2.22424E-12 2.25738E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.76815E-01 5.00773E-01 5.19555E-01 + 4.77480E-01 5.01328E-01 5.20245E-01 + 4.78017E-01 5.01983E-01 5.20928E-01 + 4.76969E-01 5.00970E-01 5.19754E-01 + 4.77663E-01 5.01515E-01 5.20406E-01 + 4.78188E-01 5.02145E-01 5.21086E-01 + 4.77165E-01 5.01159E-01 5.19955E-01 + 4.77847E-01 5.01693E-01 5.20564E-01 + 4.78366E-01 5.02299E-01 5.21252E-01 +* GROUP 1 -> 2 + 1.13997E-02 1.26377E-02 1.36273E-02 + 1.13889E-02 1.26340E-02 1.36307E-02 + 1.13666E-02 1.26151E-02 1.36156E-02 + 1.13172E-02 1.25524E-02 1.35385E-02 + 1.13051E-02 1.25463E-02 1.35399E-02 + 1.12819E-02 1.25254E-02 1.35233E-02 + 1.12315E-02 1.24620E-02 1.34460E-02 + 1.12184E-02 1.24550E-02 1.34458E-02 + 1.11939E-02 1.24331E-02 1.34273E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.14117E+00 1.22971E+00 1.30189E+00 + 1.13475E+00 1.22215E+00 1.29329E+00 + 1.12866E+00 1.21502E+00 1.28516E+00 + 1.14063E+00 1.22916E+00 1.30130E+00 + 1.13425E+00 1.22162E+00 1.29272E+00 + 1.12816E+00 1.21449E+00 1.28461E+00 + 1.13995E+00 1.22843E+00 1.30054E+00 + 1.13357E+00 1.22093E+00 1.29199E+00 + 1.12753E+00 1.21382E+00 1.28392E+00 +* +* ADF Table +* +* GROUP 1 + 1.05750 1.06123 1.06412 + 1.05652 1.06013 1.06288 + 1.05565 1.05897 1.06159 + 1.05735 1.06110 1.06397 + 1.05634 1.05985 1.06275 + 1.05548 1.05880 1.06144 + 1.05719 1.06088 1.06386 + 1.05618 1.05984 1.06260 + 1.05532 1.05865 1.06129 +* GROUP 2 + 1.37775 1.38321 1.38753 + 1.37177 1.37644 1.38018 + 1.36638 1.37052 1.37360 + 1.37787 1.38338 1.38769 + 1.37184 1.37668 1.38032 + 1.36646 1.37049 1.37370 + 1.37796 1.38340 1.38785 + 1.37193 1.37694 1.38043 + 1.36654 1.37069 1.37381 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.51484E-08 2.35597E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33532E-02 3.26046E-02 1.21047E-01 3.05492E-01 8.60438E-01 2.88985E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 2.48078E-04 1.32414E-03 1.28872E-03 2.98614E-03 1.32654E-03 5.52093E-04 +* +* ---------------------------------------------------------- +* BURNUP 17.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.27344E-01 2.35750E-01 2.42397E-01 + 2.26183E-01 2.34360E-01 2.40811E-01 + 2.25091E-01 2.33057E-01 2.39325E-01 + 2.27153E-01 2.35568E-01 2.42210E-01 + 2.25996E-01 2.34167E-01 2.40611E-01 + 2.24894E-01 2.32852E-01 2.39110E-01 + 2.26997E-01 2.35379E-01 2.42033E-01 + 2.25827E-01 2.33985E-01 2.40423E-01 + 2.24715E-01 2.32662E-01 2.38908E-01 +* GROUP 2 + 8.06708E-01 8.63105E-01 9.09325E-01 + 8.01630E-01 8.56775E-01 9.01786E-01 + 7.97109E-01 8.51139E-01 8.95097E-01 + 8.06603E-01 8.62966E-01 9.09154E-01 + 8.01561E-01 8.56669E-01 9.01662E-01 + 7.97067E-01 8.51073E-01 8.95007E-01 + 8.06359E-01 8.62669E-01 9.08811E-01 + 8.01359E-01 8.56424E-01 9.01379E-01 + 7.96904E-01 8.50872E-01 8.94772E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 9.97106E-03 1.00867E-02 1.01711E-02 + 1.02541E-02 1.03963E-02 1.05022E-02 + 1.05267E-02 1.06941E-02 1.08198E-02 + 1.01854E-02 1.03057E-02 1.03938E-02 + 1.04682E-02 1.06157E-02 1.07252E-02 + 1.07407E-02 1.09134E-02 1.10430E-02 + 1.04000E-02 1.05257E-02 1.06173E-02 + 1.06828E-02 1.08358E-02 1.09489E-02 + 1.09547E-02 1.11332E-02 1.12663E-02 +* GROUP 2 + 1.07875E-01 1.09218E-01 1.10406E-01 + 1.16561E-01 1.18764E-01 1.20673E-01 + 1.25044E-01 1.28073E-01 1.30668E-01 + 1.07733E-01 1.09060E-01 1.10233E-01 + 1.16416E-01 1.18605E-01 1.20497E-01 + 1.24897E-01 1.27911E-01 1.30491E-01 + 1.07713E-01 1.09026E-01 1.10186E-01 + 1.16388E-01 1.18562E-01 1.20442E-01 + 1.24863E-01 1.27863E-01 1.30429E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.57629E-03 6.63169E-03 6.67169E-03 + 6.60133E-03 6.65974E-03 6.70231E-03 + 6.62277E-03 6.68374E-03 6.72828E-03 + 6.56926E-03 6.62499E-03 6.66535E-03 + 6.59396E-03 6.65282E-03 6.69564E-03 + 6.61519E-03 6.67660E-03 6.72142E-03 + 6.56091E-03 6.61705E-03 6.65760E-03 + 6.58522E-03 6.64452E-03 6.68751E-03 + 6.60612E-03 6.66803E-03 6.71293E-03 +* GROUP 2 + 1.68190E-01 1.69554E-01 1.70800E-01 + 1.67202E-01 1.68495E-01 1.69672E-01 + 1.66262E-01 1.67490E-01 1.68602E-01 + 1.67952E-01 1.69288E-01 1.70507E-01 + 1.66982E-01 1.68250E-01 1.69400E-01 + 1.66056E-01 1.67261E-01 1.68348E-01 + 1.67947E-01 1.69261E-01 1.70455E-01 + 1.66991E-01 1.68237E-01 1.69364E-01 + 1.66078E-01 1.67263E-01 1.68329E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.35451E-14 8.42301E-14 8.47242E-14 + 8.38780E-14 8.46021E-14 8.51295E-14 + 8.41606E-14 8.49174E-14 8.54697E-14 + 8.34532E-14 8.41424E-14 8.46410E-14 + 8.37811E-14 8.45111E-14 8.50415E-14 + 8.40609E-14 8.48231E-14 8.53789E-14 + 8.33439E-14 8.40382E-14 8.45394E-14 + 8.36664E-14 8.44020E-14 8.49345E-14 + 8.39411E-14 8.47098E-14 8.52666E-14 +* GROUP 2 + 2.14227E-12 2.16123E-12 2.17856E-12 + 2.12866E-12 2.14661E-12 2.16299E-12 + 2.11569E-12 2.13275E-12 2.14822E-12 + 2.13858E-12 2.15718E-12 2.17417E-12 + 2.12520E-12 2.14284E-12 2.15887E-12 + 2.11245E-12 2.12919E-12 2.14434E-12 + 2.13774E-12 2.15606E-12 2.17274E-12 + 2.12455E-12 2.14191E-12 2.15765E-12 + 2.11197E-12 2.12846E-12 2.14335E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.82573E-01 5.07654E-01 5.27514E-01 + 4.84288E-01 5.09575E-01 5.29615E-01 + 4.85691E-01 5.11174E-01 5.31351E-01 + 4.82870E-01 5.07972E-01 5.27835E-01 + 4.84569E-01 5.09870E-01 5.29903E-01 + 4.85968E-01 5.11441E-01 5.31615E-01 + 4.83179E-01 5.08271E-01 5.28130E-01 + 4.84870E-01 5.10164E-01 5.30186E-01 + 4.86232E-01 5.11719E-01 5.31869E-01 +* GROUP 1 -> 2 + 1.43474E-02 1.56832E-02 1.67482E-02 + 1.44595E-02 1.58247E-02 1.69166E-02 + 1.45386E-02 1.59251E-02 1.70340E-02 + 1.42408E-02 1.55732E-02 1.66353E-02 + 1.43490E-02 1.57105E-02 1.67993E-02 + 1.44256E-02 1.58076E-02 1.69137E-02 + 1.41303E-02 1.54589E-02 1.65184E-02 + 1.42348E-02 1.55920E-02 1.66775E-02 + 1.43086E-02 1.56861E-02 1.67878E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.20772E+00 1.30270E+00 1.38036E+00 + 1.19920E+00 1.29273E+00 1.36903E+00 + 1.19111E+00 1.28333E+00 1.35844E+00 + 1.20714E+00 1.30208E+00 1.37972E+00 + 1.19864E+00 1.29215E+00 1.36844E+00 + 1.19059E+00 1.28279E+00 1.35788E+00 + 1.20642E+00 1.30133E+00 1.37895E+00 + 1.19797E+00 1.29144E+00 1.36772E+00 + 1.18996E+00 1.28213E+00 1.35719E+00 +* +* ADF Table +* +* GROUP 1 + 1.00118 1.00143 1.00156 + 1.00185 1.00210 1.00241 + 1.00234 1.00279 1.00317 + 1.00109 1.00129 1.00149 + 1.00176 1.00205 1.00234 + 1.00226 1.00271 1.00307 + 1.00100 1.00123 1.00142 + 1.00166 1.00202 1.00223 + 1.00215 1.00261 1.00298 +* GROUP 2 + 0.94103 0.94078 0.94056 + 0.94537 0.94547 0.94603 + 0.94896 0.94975 0.95058 + 0.94067 0.94034 0.94027 + 0.94500 0.94534 0.94569 + 0.94859 0.94939 0.95020 + 0.94028 0.94005 0.93994 + 0.94461 0.94498 0.94518 + 0.94816 0.94898 0.94981 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.19823E-01 2.27285E-01 2.33207E-01 + 2.18826E-01 2.26071E-01 2.31820E-01 + 2.17866E-01 2.24920E-01 2.30500E-01 + 2.19586E-01 2.27040E-01 2.32950E-01 + 2.18581E-01 2.25813E-01 2.31552E-01 + 2.17614E-01 2.24653E-01 2.30221E-01 + 2.19365E-01 2.26790E-01 2.32709E-01 + 2.18349E-01 2.25572E-01 2.31298E-01 + 2.17375E-01 2.24404E-01 2.29962E-01 +* GROUP 2 + 7.93910E-01 8.45774E-01 8.88128E-01 + 7.90895E-01 8.41841E-01 8.83308E-01 + 7.88248E-01 8.38366E-01 8.79044E-01 + 7.93846E-01 8.45678E-01 8.88009E-01 + 7.90861E-01 8.41778E-01 8.83219E-01 + 7.88236E-01 8.38334E-01 8.78984E-01 + 7.93671E-01 8.45463E-01 8.87745E-01 + 7.90721E-01 8.41599E-01 8.83000E-01 + 7.88129E-01 8.38186E-01 8.78812E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.55194E-02 1.57252E-02 1.58716E-02 + 1.57253E-02 1.59553E-02 1.61212E-02 + 1.59212E-02 1.61734E-02 1.63573E-02 + 1.56942E-02 1.59059E-02 1.60587E-02 + 1.58981E-02 1.61350E-02 1.63066E-02 + 1.60922E-02 1.63520E-02 1.65405E-02 + 1.58681E-02 1.60880E-02 1.62451E-02 + 1.60699E-02 1.63139E-02 1.64906E-02 + 1.62618E-02 1.65283E-02 1.67226E-02 +* GROUP 2 + 1.44725E-01 1.45898E-01 1.46946E-01 + 1.52824E-01 1.54800E-01 1.56516E-01 + 1.60761E-01 1.63507E-01 1.65863E-01 + 1.44607E-01 1.45763E-01 1.46797E-01 + 1.52704E-01 1.54662E-01 1.56363E-01 + 1.60638E-01 1.63370E-01 1.65708E-01 + 1.44620E-01 1.45765E-01 1.46782E-01 + 1.52711E-01 1.54653E-01 1.56342E-01 + 1.60639E-01 1.63355E-01 1.65682E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.34897E-03 6.42714E-03 6.48305E-03 + 6.36089E-03 6.44138E-03 6.49924E-03 + 6.37139E-03 6.45392E-03 6.51347E-03 + 6.34131E-03 6.41994E-03 6.47618E-03 + 6.35314E-03 6.43403E-03 6.49234E-03 + 6.36360E-03 6.44660E-03 6.50650E-03 + 6.33227E-03 6.41123E-03 6.46783E-03 + 6.34392E-03 6.42530E-03 6.48380E-03 + 6.35432E-03 6.43777E-03 6.49800E-03 +* GROUP 2 + 1.75620E-01 1.77353E-01 1.78883E-01 + 1.74635E-01 1.76282E-01 1.77729E-01 + 1.73701E-01 1.75269E-01 1.76638E-01 + 1.75401E-01 1.77106E-01 1.78607E-01 + 1.74432E-01 1.76053E-01 1.77472E-01 + 1.73512E-01 1.75054E-01 1.76399E-01 + 1.75420E-01 1.77102E-01 1.78580E-01 + 1.74465E-01 1.76064E-01 1.77461E-01 + 1.73557E-01 1.75080E-01 1.76405E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.05597E-14 8.15390E-14 8.22391E-14 + 8.07024E-14 8.17101E-14 8.24337E-14 + 8.08247E-14 8.18563E-14 8.25999E-14 + 8.04562E-14 8.14412E-14 8.21456E-14 + 8.05969E-14 8.16096E-14 8.23393E-14 + 8.07180E-14 8.17555E-14 8.25039E-14 + 8.03343E-14 8.13239E-14 8.20329E-14 + 8.04721E-14 8.14913E-14 8.22232E-14 + 8.05917E-14 8.16353E-14 8.23875E-14 +* GROUP 2 + 2.23410E-12 2.25781E-12 2.27880E-12 + 2.22064E-12 2.24316E-12 2.26301E-12 + 2.20786E-12 2.22930E-12 2.24809E-12 + 2.23065E-12 2.25400E-12 2.27462E-12 + 2.21739E-12 2.23958E-12 2.25908E-12 + 2.20482E-12 2.22592E-12 2.24441E-12 + 2.23010E-12 2.25316E-12 2.27348E-12 + 2.21704E-12 2.23895E-12 2.25817E-12 + 2.20464E-12 2.22549E-12 2.24370E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.76916E-01 5.00647E-01 5.19384E-01 + 4.77510E-01 5.01296E-01 5.20138E-01 + 4.78006E-01 5.01853E-01 5.20727E-01 + 4.77126E-01 5.00857E-01 5.19600E-01 + 4.77696E-01 5.01484E-01 5.20314E-01 + 4.78179E-01 5.02036E-01 5.20893E-01 + 4.77320E-01 5.01059E-01 5.19807E-01 + 4.77877E-01 5.01667E-01 5.20479E-01 + 4.78341E-01 5.02203E-01 5.21054E-01 +* GROUP 1 -> 2 + 1.11441E-02 1.23654E-02 1.33427E-02 + 1.11294E-02 1.23569E-02 1.33407E-02 + 1.11039E-02 1.23337E-02 1.33203E-02 + 1.10450E-02 1.22621E-02 1.32355E-02 + 1.10290E-02 1.22514E-02 1.32317E-02 + 1.10023E-02 1.22261E-02 1.32092E-02 + 1.09430E-02 1.21541E-02 1.31249E-02 + 1.09256E-02 1.21426E-02 1.31189E-02 + 1.08977E-02 1.21164E-02 1.30948E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15199E+00 1.24128E+00 1.31410E+00 + 1.14517E+00 1.23329E+00 1.30502E+00 + 1.13872E+00 1.22575E+00 1.29646E+00 + 1.15141E+00 1.24069E+00 1.31347E+00 + 1.14462E+00 1.23272E+00 1.30443E+00 + 1.13821E+00 1.22520E+00 1.29590E+00 + 1.15071E+00 1.23995E+00 1.31270E+00 + 1.14397E+00 1.23203E+00 1.30369E+00 + 1.13758E+00 1.22455E+00 1.29521E+00 +* +* ADF Table +* +* GROUP 1 + 1.05143 1.05434 1.05663 + 1.05069 1.05361 1.05582 + 1.05009 1.05278 1.05487 + 1.05126 1.05416 1.05648 + 1.05052 1.05335 1.05566 + 1.04991 1.05261 1.05471 + 1.05107 1.05401 1.05632 + 1.05034 1.05330 1.05548 + 1.04973 1.05243 1.05455 +* GROUP 2 + 1.33102 1.33552 1.33912 + 1.32660 1.33054 1.33369 + 1.32266 1.32622 1.32890 + 1.33092 1.33542 1.33905 + 1.32648 1.33055 1.33361 + 1.32254 1.32606 1.32881 + 1.33073 1.33525 1.33893 + 1.32634 1.33059 1.33347 + 1.32242 1.32600 1.32872 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.43629E-08 2.41722E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33546E-02 3.21947E-02 1.20117E-01 3.05394E-01 8.64368E-01 2.89355E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.92194E-04 1.09112E-03 1.02344E-03 2.34890E-03 1.09980E-03 4.41571E-04 +* +* ---------------------------------------------------------- +* BURNUP 20.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26953E-01 2.35349E-01 2.41981E-01 + 2.25787E-01 2.33938E-01 2.40364E-01 + 2.24676E-01 2.32610E-01 2.38851E-01 + 2.26767E-01 2.35144E-01 2.41785E-01 + 2.25600E-01 2.33735E-01 2.40154E-01 + 2.24473E-01 2.32395E-01 2.38626E-01 + 2.26604E-01 2.34975E-01 2.41584E-01 + 2.25423E-01 2.33550E-01 2.39960E-01 + 2.24289E-01 2.32197E-01 2.38419E-01 +* GROUP 2 + 8.08559E-01 8.65105E-01 9.11465E-01 + 8.03408E-01 8.58690E-01 9.03833E-01 + 7.98821E-01 8.52983E-01 8.97048E-01 + 8.08452E-01 8.64964E-01 9.11292E-01 + 8.03335E-01 8.58586E-01 9.03701E-01 + 7.98779E-01 8.52912E-01 8.96960E-01 + 8.08207E-01 8.64664E-01 9.10943E-01 + 8.03132E-01 8.58340E-01 9.03417E-01 + 7.98620E-01 8.52716E-01 8.96728E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.00533E-02 1.01714E-02 1.02577E-02 + 1.03369E-02 1.04819E-02 1.05895E-02 + 1.06100E-02 1.07799E-02 1.09078E-02 + 1.02713E-02 1.03942E-02 1.04842E-02 + 1.05547E-02 1.07049E-02 1.08165E-02 + 1.08271E-02 1.10025E-02 1.11344E-02 + 1.04896E-02 1.06182E-02 1.07119E-02 + 1.07730E-02 1.09287E-02 1.10443E-02 + 1.10449E-02 1.12259E-02 1.13617E-02 +* GROUP 2 + 1.07292E-01 1.08565E-01 1.09690E-01 + 1.16039E-01 1.18177E-01 1.20028E-01 + 1.24579E-01 1.27548E-01 1.30088E-01 + 1.07175E-01 1.08433E-01 1.09543E-01 + 1.15919E-01 1.18043E-01 1.19877E-01 + 1.24456E-01 1.27410E-01 1.29935E-01 + 1.07184E-01 1.08429E-01 1.09524E-01 + 1.15919E-01 1.18030E-01 1.19850E-01 + 1.24450E-01 1.27391E-01 1.29901E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.41338E-03 6.46774E-03 6.50710E-03 + 6.43729E-03 6.49454E-03 6.53620E-03 + 6.45779E-03 6.51748E-03 6.56118E-03 + 6.40570E-03 6.46036E-03 6.49999E-03 + 6.42932E-03 6.48691E-03 6.52887E-03 + 6.44948E-03 6.50961E-03 6.55354E-03 + 6.39671E-03 6.45189E-03 6.49164E-03 + 6.41997E-03 6.47800E-03 6.52021E-03 + 6.43989E-03 6.50039E-03 6.54452E-03 +* GROUP 2 + 1.65988E-01 1.67222E-01 1.68346E-01 + 1.65082E-01 1.66251E-01 1.67314E-01 + 1.64218E-01 1.65330E-01 1.66333E-01 + 1.65802E-01 1.67007E-01 1.68105E-01 + 1.64911E-01 1.66056E-01 1.67091E-01 + 1.64062E-01 1.65149E-01 1.66128E-01 + 1.65854E-01 1.67037E-01 1.68110E-01 + 1.64977E-01 1.66099E-01 1.67112E-01 + 1.64138E-01 1.65206E-01 1.66164E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 8.12446E-14 8.19148E-14 8.23998E-14 + 8.15606E-14 8.22685E-14 8.27830E-14 + 8.18294E-14 8.25680E-14 8.31080E-14 + 8.11444E-14 8.18185E-14 8.23067E-14 + 8.14561E-14 8.21682E-14 8.26865E-14 + 8.17200E-14 8.24639E-14 8.30073E-14 + 8.10270E-14 8.17078E-14 8.21978E-14 + 8.13340E-14 8.20515E-14 8.25727E-14 + 8.15942E-14 8.23428E-14 8.28883E-14 +* GROUP 2 + 2.10537E-12 2.12260E-12 2.13834E-12 + 2.09283E-12 2.10914E-12 2.12402E-12 + 2.08087E-12 2.09639E-12 2.11042E-12 + 2.10233E-12 2.11920E-12 2.13460E-12 + 2.09000E-12 2.10601E-12 2.12053E-12 + 2.07825E-12 2.09345E-12 2.10717E-12 + 2.10220E-12 2.11878E-12 2.13388E-12 + 2.09005E-12 2.10578E-12 2.12001E-12 + 2.07846E-12 2.09341E-12 2.10687E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.82881E-01 5.07982E-01 5.27806E-01 + 4.84565E-01 5.09874E-01 5.29923E-01 + 4.85970E-01 5.11443E-01 5.31619E-01 + 4.83179E-01 5.08278E-01 5.28106E-01 + 4.84869E-01 5.10177E-01 5.30232E-01 + 4.86248E-01 5.11712E-01 5.31882E-01 + 4.83482E-01 5.08580E-01 5.28402E-01 + 4.85146E-01 5.10471E-01 5.30505E-01 + 4.86526E-01 5.11985E-01 5.32163E-01 +* GROUP 1 -> 2 + 1.43320E-02 1.56682E-02 1.67346E-02 + 1.44429E-02 1.58098E-02 1.69018E-02 + 1.45218E-02 1.59082E-02 1.70178E-02 + 1.42226E-02 1.55551E-02 1.66184E-02 + 1.43298E-02 1.56920E-02 1.67812E-02 + 1.44053E-02 1.57870E-02 1.68935E-02 + 1.41086E-02 1.54378E-02 1.64980E-02 + 1.42121E-02 1.55699E-02 1.66557E-02 + 1.42845E-02 1.56619E-02 1.67640E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.20884E+00 1.30386E+00 1.38157E+00 + 1.20024E+00 1.29380E+00 1.37019E+00 + 1.19211E+00 1.28435E+00 1.35950E+00 + 1.20825E+00 1.30323E+00 1.38092E+00 + 1.19968E+00 1.29322E+00 1.36957E+00 + 1.19157E+00 1.28381E+00 1.35894E+00 + 1.20754E+00 1.30248E+00 1.38015E+00 + 1.19900E+00 1.29251E+00 1.36884E+00 + 1.19094E+00 1.28315E+00 1.35827E+00 +* +* ADF Table +* +* GROUP 1 + 1.00100 1.00124 1.00136 + 1.00168 1.00192 1.00220 + 1.00219 1.00262 1.00299 + 1.00091 1.00110 1.00128 + 1.00160 1.00186 1.00214 + 1.00209 1.00252 1.00289 + 1.00082 1.00103 1.00121 + 1.00150 1.00184 1.00204 + 1.00199 1.00243 1.00278 +* GROUP 2 + 0.93937 0.93908 0.93882 + 0.94376 0.94383 0.94436 + 0.94741 0.94817 0.94897 + 0.93900 0.93862 0.93852 + 0.94338 0.94369 0.94401 + 0.94703 0.94779 0.94858 + 0.93859 0.93828 0.93816 + 0.94297 0.94332 0.94347 + 0.94657 0.94737 0.94816 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.19341E-01 2.26759E-01 2.32670E-01 + 2.18324E-01 2.25534E-01 2.31255E-01 + 2.17344E-01 2.24360E-01 2.29910E-01 + 2.19096E-01 2.26506E-01 2.32406E-01 + 2.18071E-01 2.25271E-01 2.30978E-01 + 2.17084E-01 2.24085E-01 2.29622E-01 + 2.18863E-01 2.26260E-01 2.32138E-01 + 2.17831E-01 2.25018E-01 2.30717E-01 + 2.16838E-01 2.23825E-01 2.29353E-01 +* GROUP 2 + 7.95573E-01 8.47577E-01 8.90055E-01 + 7.92513E-01 8.43583E-01 8.85156E-01 + 7.89820E-01 8.40055E-01 8.80834E-01 + 7.95514E-01 8.47479E-01 8.89932E-01 + 7.92479E-01 8.43521E-01 8.85071E-01 + 7.89814E-01 8.40028E-01 8.80778E-01 + 7.95347E-01 8.47270E-01 8.89670E-01 + 7.92350E-01 8.43349E-01 8.84863E-01 + 7.89713E-01 8.39889E-01 8.80613E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.55872E-02 1.57963E-02 1.59453E-02 + 1.57915E-02 1.60247E-02 1.61934E-02 + 1.59857E-02 1.62412E-02 1.64275E-02 + 1.57642E-02 1.59796E-02 1.61350E-02 + 1.59666E-02 1.62070E-02 1.63808E-02 + 1.61588E-02 1.64217E-02 1.66129E-02 + 1.59401E-02 1.61641E-02 1.63241E-02 + 1.61404E-02 1.63881E-02 1.65678E-02 + 1.63305E-02 1.66004E-02 1.67974E-02 +* GROUP 2 + 1.44279E-01 1.45378E-01 1.46358E-01 + 1.52433E-01 1.54339E-01 1.55992E-01 + 1.60420E-01 1.63102E-01 1.65400E-01 + 1.44188E-01 1.45268E-01 1.46235E-01 + 1.52338E-01 1.54227E-01 1.55865E-01 + 1.60324E-01 1.62991E-01 1.65270E-01 + 1.44233E-01 1.45303E-01 1.46252E-01 + 1.52377E-01 1.54250E-01 1.55876E-01 + 1.60355E-01 1.63007E-01 1.65275E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.19492E-03 6.27129E-03 6.32599E-03 + 6.20671E-03 6.28538E-03 6.34202E-03 + 6.21716E-03 6.29792E-03 6.35622E-03 + 6.18678E-03 6.26367E-03 6.31860E-03 + 6.19854E-03 6.27763E-03 6.33452E-03 + 6.20896E-03 6.29013E-03 6.34874E-03 + 6.17732E-03 6.25452E-03 6.30983E-03 + 6.18897E-03 6.26848E-03 6.32569E-03 + 6.19935E-03 6.28092E-03 6.33986E-03 +* GROUP 2 + 1.73502E-01 1.75095E-01 1.76497E-01 + 1.72591E-01 1.74105E-01 1.75430E-01 + 1.71725E-01 1.73167E-01 1.74423E-01 + 1.73335E-01 1.74899E-01 1.76273E-01 + 1.72437E-01 1.73926E-01 1.75224E-01 + 1.71586E-01 1.73003E-01 1.74234E-01 + 1.73413E-01 1.74955E-01 1.76305E-01 + 1.72529E-01 1.73996E-01 1.75272E-01 + 1.71688E-01 1.73086E-01 1.74296E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.83788E-14 7.93327E-14 8.00154E-14 + 7.85182E-14 7.94999E-14 8.02061E-14 + 7.86382E-14 7.96443E-14 8.03700E-14 + 7.82690E-14 7.92295E-14 7.99154E-14 + 7.84074E-14 7.93944E-14 8.01038E-14 + 7.85264E-14 7.95376E-14 8.02672E-14 + 7.81418E-14 7.91066E-14 7.97974E-14 + 7.82781E-14 7.92707E-14 7.99844E-14 + 7.83960E-14 7.94125E-14 8.01462E-14 +* GROUP 2 + 2.19784E-12 2.21969E-12 2.23899E-12 + 2.18535E-12 2.20611E-12 2.22434E-12 + 2.17350E-12 2.19326E-12 2.21053E-12 + 2.19504E-12 2.21652E-12 2.23546E-12 + 2.18275E-12 2.20317E-12 2.22107E-12 + 2.17109E-12 2.19053E-12 2.20748E-12 + 2.19523E-12 2.21643E-12 2.23506E-12 + 2.18312E-12 2.20328E-12 2.22088E-12 + 2.17161E-12 2.19080E-12 2.20750E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77058E-01 5.00810E-01 5.19567E-01 + 4.77632E-01 5.01425E-01 5.20250E-01 + 4.78107E-01 5.01970E-01 5.20827E-01 + 4.77268E-01 5.01004E-01 5.19776E-01 + 4.77823E-01 5.01615E-01 5.20424E-01 + 4.78279E-01 5.02137E-01 5.20982E-01 + 4.77457E-01 5.01180E-01 5.19966E-01 + 4.77994E-01 5.01788E-01 5.20598E-01 + 4.78431E-01 5.02293E-01 5.21143E-01 +* GROUP 1 -> 2 + 1.11207E-02 1.23411E-02 1.33184E-02 + 1.11054E-02 1.23316E-02 1.33148E-02 + 1.10781E-02 1.23065E-02 1.32922E-02 + 1.10190E-02 1.22354E-02 1.32084E-02 + 1.10024E-02 1.22236E-02 1.32027E-02 + 1.09740E-02 1.21963E-02 1.31785E-02 + 1.09144E-02 1.21247E-02 1.30945E-02 + 1.08964E-02 1.21119E-02 1.30870E-02 + 1.08667E-02 1.20836E-02 1.30606E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15297E+00 1.24233E+00 1.31519E+00 + 1.14611E+00 1.23428E+00 1.30604E+00 + 1.13961E+00 1.22667E+00 1.29743E+00 + 1.15239E+00 1.24172E+00 1.31456E+00 + 1.14555E+00 1.23370E+00 1.30544E+00 + 1.13908E+00 1.22612E+00 1.29686E+00 + 1.15168E+00 1.24097E+00 1.31377E+00 + 1.14489E+00 1.23301E+00 1.30471E+00 + 1.13844E+00 1.22547E+00 1.29618E+00 +* +* ADF Table +* +* GROUP 1 + 1.05131 1.05421 1.05649 + 1.05057 1.05348 1.05568 + 1.04996 1.05265 1.05474 + 1.05111 1.05404 1.05634 + 1.05040 1.05323 1.05550 + 1.04979 1.05248 1.05457 + 1.05094 1.05387 1.05617 + 1.05022 1.05317 1.05532 + 1.04961 1.05229 1.05440 +* GROUP 2 + 1.32987 1.33437 1.33795 + 1.32546 1.32937 1.33250 + 1.32151 1.32505 1.32771 + 1.32973 1.33424 1.33786 + 1.32532 1.32936 1.33240 + 1.32138 1.32488 1.32761 + 1.32956 1.33406 1.33772 + 1.32517 1.32940 1.33225 + 1.32123 1.32480 1.32749 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.43579E-08 2.42353E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33558E-02 3.21343E-02 1.20008E-01 3.05440E-01 8.64962E-01 2.89512E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.85511E-04 1.06493E-03 9.93078E-04 2.27909E-03 1.07543E-03 4.29815E-04 +* +* ---------------------------------------------------------- +* BURNUP 22.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.26567E-01 2.34929E-01 2.41539E-01 + 2.25385E-01 2.33507E-01 2.39909E-01 + 2.24248E-01 2.32152E-01 2.38365E-01 + 2.26387E-01 2.34727E-01 2.41338E-01 + 2.25190E-01 2.33296E-01 2.39695E-01 + 2.24042E-01 2.31929E-01 2.38135E-01 + 2.26214E-01 2.34548E-01 2.41139E-01 + 2.25003E-01 2.33105E-01 2.39488E-01 + 2.23850E-01 2.31725E-01 2.37921E-01 +* GROUP 2 + 8.10245E-01 8.66936E-01 9.13427E-01 + 8.05018E-01 8.60434E-01 9.05693E-01 + 8.00370E-01 8.54646E-01 8.98823E-01 + 8.10130E-01 8.66781E-01 9.13239E-01 + 8.04943E-01 8.60322E-01 9.05557E-01 + 8.00322E-01 8.54574E-01 8.98730E-01 + 8.09883E-01 8.66482E-01 9.12889E-01 + 8.04739E-01 8.60075E-01 9.05270E-01 + 8.00163E-01 8.54378E-01 8.98497E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.01322E-02 1.02526E-02 1.03408E-02 + 1.04163E-02 1.05639E-02 1.06735E-02 + 1.06895E-02 1.08622E-02 1.09919E-02 + 1.03531E-02 1.04785E-02 1.05706E-02 + 1.06371E-02 1.07899E-02 1.09036E-02 + 1.09097E-02 1.10877E-02 1.12216E-02 + 1.05747E-02 1.07058E-02 1.08017E-02 + 1.08585E-02 1.10172E-02 1.11346E-02 + 1.11305E-02 1.13146E-02 1.14524E-02 +* GROUP 2 + 1.06624E-01 1.07835E-01 1.08903E-01 + 1.15426E-01 1.17507E-01 1.19305E-01 + 1.24019E-01 1.26933E-01 1.29424E-01 + 1.06530E-01 1.07725E-01 1.08778E-01 + 1.15328E-01 1.17394E-01 1.19176E-01 + 1.23917E-01 1.26817E-01 1.29293E-01 + 1.06565E-01 1.07747E-01 1.08785E-01 + 1.15354E-01 1.17406E-01 1.19173E-01 + 1.23936E-01 1.26822E-01 1.29284E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.25474E-03 6.30816E-03 6.34689E-03 + 6.27753E-03 6.33373E-03 6.37475E-03 + 6.29713E-03 6.35574E-03 6.39859E-03 + 6.24653E-03 6.30023E-03 6.33918E-03 + 6.26906E-03 6.32554E-03 6.36682E-03 + 6.28836E-03 6.34725E-03 6.39037E-03 + 6.23703E-03 6.29119E-03 6.33037E-03 + 6.25923E-03 6.31621E-03 6.35755E-03 + 6.27830E-03 6.33762E-03 6.38095E-03 +* GROUP 2 + 1.63490E-01 1.64601E-01 1.65612E-01 + 1.62660E-01 1.63713E-01 1.64669E-01 + 1.61867E-01 1.62870E-01 1.63772E-01 + 1.63351E-01 1.64433E-01 1.65418E-01 + 1.62535E-01 1.63564E-01 1.64493E-01 + 1.61756E-01 1.62734E-01 1.63613E-01 + 1.63455E-01 1.64515E-01 1.65476E-01 + 1.62651E-01 1.63658E-01 1.64564E-01 + 1.61883E-01 1.62842E-01 1.63699E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.90128E-14 7.96698E-14 8.01457E-14 + 7.93122E-14 8.00050E-14 8.05102E-14 + 7.95673E-14 8.02902E-14 8.08182E-14 + 7.89059E-14 7.95666E-14 8.00452E-14 + 7.92015E-14 7.98977E-14 8.04062E-14 + 7.94524E-14 8.01785E-14 8.07102E-14 + 7.87824E-14 7.94487E-14 7.99303E-14 + 7.90729E-14 7.97756E-14 8.02850E-14 + 7.93204E-14 8.00522E-14 8.05863E-14 +* GROUP 2 + 2.06542E-12 2.08102E-12 2.09527E-12 + 2.05388E-12 2.06867E-12 2.08212E-12 + 2.04288E-12 2.05693E-12 2.06964E-12 + 2.06297E-12 2.07822E-12 2.09213E-12 + 2.05164E-12 2.06612E-12 2.07923E-12 + 2.04082E-12 2.05458E-12 2.06698E-12 + 2.06350E-12 2.07847E-12 2.09206E-12 + 2.05232E-12 2.06653E-12 2.07936E-12 + 2.04167E-12 2.05517E-12 2.06730E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.83169E-01 5.08266E-01 5.28138E-01 + 4.84873E-01 5.10197E-01 5.30248E-01 + 4.86253E-01 5.11757E-01 5.31916E-01 + 4.83506E-01 5.08592E-01 5.28455E-01 + 4.85166E-01 5.10477E-01 5.30545E-01 + 4.86541E-01 5.12023E-01 5.32191E-01 + 4.83833E-01 5.08928E-01 5.28785E-01 + 4.85443E-01 5.10775E-01 5.30836E-01 + 4.86840E-01 5.12287E-01 5.32469E-01 +* GROUP 1 -> 2 + 1.43233E-02 1.56610E-02 1.67285E-02 + 1.44332E-02 1.58013E-02 1.68940E-02 + 1.45106E-02 1.58980E-02 1.70089E-02 + 1.42113E-02 1.55451E-02 1.66091E-02 + 1.43173E-02 1.56809E-02 1.67701E-02 + 1.43918E-02 1.57735E-02 1.68811E-02 + 1.40940E-02 1.54240E-02 1.64853E-02 + 1.41968E-02 1.55554E-02 1.66412E-02 + 1.42676E-02 1.56452E-02 1.67478E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.20987E+00 1.30491E+00 1.38268E+00 + 1.20118E+00 1.29481E+00 1.37120E+00 + 1.19301E+00 1.28528E+00 1.36047E+00 + 1.20926E+00 1.30428E+00 1.38202E+00 + 1.20061E+00 1.29421E+00 1.37058E+00 + 1.19247E+00 1.28473E+00 1.35990E+00 + 1.20853E+00 1.30352E+00 1.38123E+00 + 1.19991E+00 1.29349E+00 1.36985E+00 + 1.19181E+00 1.28407E+00 1.35922E+00 +* +* ADF Table +* +* GROUP 1 + 1.00088 1.00112 1.00123 + 1.00157 1.00180 1.00209 + 1.00208 1.00251 1.00287 + 1.00079 1.00097 1.00115 + 1.00148 1.00173 1.00201 + 1.00199 1.00241 1.00277 + 1.00070 1.00090 1.00108 + 1.00138 1.00172 1.00190 + 1.00188 1.00232 1.00268 +* GROUP 2 + 0.93820 0.93788 0.93760 + 0.94263 0.94267 0.94318 + 0.94631 0.94704 0.94782 + 0.93782 0.93741 0.93728 + 0.94224 0.94252 0.94280 + 0.94591 0.94665 0.94742 + 0.93740 0.93705 0.93691 + 0.94181 0.94214 0.94227 + 0.94544 0.94621 0.94699 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.18845E-01 2.26236E-01 2.32107E-01 + 2.17806E-01 2.24984E-01 2.30675E-01 + 2.16810E-01 2.23787E-01 2.29303E-01 + 2.18593E-01 2.25971E-01 2.31832E-01 + 2.17546E-01 2.24710E-01 2.30389E-01 + 2.16539E-01 2.23501E-01 2.29006E-01 + 2.18355E-01 2.25720E-01 2.31575E-01 + 2.17301E-01 2.24452E-01 2.30122E-01 + 2.16288E-01 2.23237E-01 2.28729E-01 +* GROUP 2 + 7.97078E-01 8.49210E-01 8.91803E-01 + 7.93967E-01 8.45156E-01 8.86841E-01 + 7.91232E-01 8.41580E-01 8.82449E-01 + 7.97017E-01 8.49109E-01 8.91677E-01 + 7.93934E-01 8.45091E-01 8.86753E-01 + 7.91224E-01 8.41550E-01 8.82402E-01 + 7.96852E-01 8.48899E-01 8.91418E-01 + 7.93807E-01 8.44923E-01 8.86541E-01 + 7.91133E-01 8.41416E-01 8.82236E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.56521E-02 1.58646E-02 1.60160E-02 + 1.58546E-02 1.60911E-02 1.62622E-02 + 1.60475E-02 1.63058E-02 1.64943E-02 + 1.58307E-02 1.60496E-02 1.62075E-02 + 1.60314E-02 1.62752E-02 1.64515E-02 + 1.62218E-02 1.64881E-02 1.66814E-02 + 1.60087E-02 1.62362E-02 1.63990E-02 + 1.62073E-02 1.64584E-02 1.66406E-02 + 1.63956E-02 1.66686E-02 1.68681E-02 +* GROUP 2 + 1.43703E-01 1.44733E-01 1.45652E-01 + 1.51908E-01 1.53750E-01 1.55346E-01 + 1.59943E-01 1.62566E-01 1.64809E-01 + 1.43636E-01 1.44649E-01 1.45553E-01 + 1.51837E-01 1.53662E-01 1.55244E-01 + 1.59869E-01 1.62478E-01 1.64704E-01 + 1.43709E-01 1.44711E-01 1.45600E-01 + 1.51902E-01 1.53712E-01 1.55281E-01 + 1.59928E-01 1.62520E-01 1.64734E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 6.04494E-03 6.11968E-03 6.17322E-03 + 6.05662E-03 6.13359E-03 6.18909E-03 + 6.06718E-03 6.14622E-03 6.20334E-03 + 6.03645E-03 6.11158E-03 6.16535E-03 + 6.04812E-03 6.12550E-03 6.18123E-03 + 6.05863E-03 6.13812E-03 6.19550E-03 + 6.02675E-03 6.10225E-03 6.15637E-03 + 6.03839E-03 6.11613E-03 6.17216E-03 + 6.04891E-03 6.12871E-03 6.18643E-03 +* GROUP 2 + 1.71056E-01 1.72517E-01 1.73798E-01 + 1.70213E-01 1.71603E-01 1.72815E-01 + 1.69413E-01 1.70738E-01 1.71884E-01 + 1.70935E-01 1.72369E-01 1.73623E-01 + 1.70107E-01 1.71471E-01 1.72657E-01 + 1.69320E-01 1.70620E-01 1.71743E-01 + 1.71067E-01 1.72479E-01 1.73709E-01 + 1.70250E-01 1.71593E-01 1.72756E-01 + 1.69474E-01 1.70754E-01 1.71857E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.62628E-14 7.71935E-14 7.78600E-14 + 7.63994E-14 7.73567E-14 7.80464E-14 + 7.65192E-14 7.75005E-14 7.82090E-14 + 7.61486E-14 7.70845E-14 7.77539E-14 + 7.62843E-14 7.72468E-14 7.79397E-14 + 7.64028E-14 7.73897E-14 7.81017E-14 + 7.60188E-14 7.69593E-14 7.76333E-14 + 7.61532E-14 7.71205E-14 7.78171E-14 + 7.62713E-14 7.72621E-14 7.79782E-14 +* GROUP 2 + 2.15818E-12 2.17828E-12 2.19596E-12 + 2.14662E-12 2.16571E-12 2.18243E-12 + 2.13563E-12 2.15382E-12 2.16964E-12 + 2.15598E-12 2.17572E-12 2.19306E-12 + 2.14461E-12 2.16337E-12 2.17976E-12 + 2.13380E-12 2.15167E-12 2.16720E-12 + 2.15684E-12 2.17630E-12 2.19334E-12 + 2.14563E-12 2.16413E-12 2.18023E-12 + 2.13498E-12 2.15259E-12 2.16786E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77207E-01 5.00934E-01 5.19733E-01 + 4.77766E-01 5.01554E-01 5.20386E-01 + 4.78213E-01 5.02066E-01 5.20929E-01 + 4.77406E-01 5.01118E-01 5.19919E-01 + 4.77943E-01 5.01737E-01 5.20568E-01 + 4.78375E-01 5.02225E-01 5.21075E-01 + 4.77598E-01 5.01310E-01 5.20082E-01 + 4.78122E-01 5.01915E-01 5.20740E-01 + 4.78533E-01 5.02376E-01 5.21226E-01 +* GROUP 1 -> 2 + 1.11016E-02 1.23214E-02 1.32988E-02 + 1.10849E-02 1.23103E-02 1.32934E-02 + 1.10562E-02 1.22834E-02 1.32683E-02 + 1.09979E-02 1.22132E-02 1.31860E-02 + 1.09798E-02 1.21999E-02 1.31787E-02 + 1.09498E-02 1.21709E-02 1.31520E-02 + 1.08908E-02 1.21000E-02 1.30697E-02 + 1.08712E-02 1.20854E-02 1.30600E-02 + 1.08402E-02 1.20554E-02 1.30315E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15387E+00 1.24329E+00 1.31622E+00 + 1.14696E+00 1.23519E+00 1.30700E+00 + 1.14042E+00 1.22754E+00 1.29832E+00 + 1.15329E+00 1.24268E+00 1.31557E+00 + 1.14641E+00 1.23460E+00 1.30639E+00 + 1.13989E+00 1.22698E+00 1.29775E+00 + 1.15257E+00 1.24193E+00 1.31478E+00 + 1.14573E+00 1.23389E+00 1.30565E+00 + 1.13926E+00 1.22631E+00 1.29705E+00 +* +* ADF Table +* +* GROUP 1 + 1.05124 1.05415 1.05643 + 1.05051 1.05341 1.05561 + 1.04990 1.05258 1.05466 + 1.05106 1.05397 1.05627 + 1.05033 1.05316 1.05543 + 1.04972 1.05240 1.05449 + 1.05087 1.05380 1.05610 + 1.05016 1.05309 1.05525 + 1.04955 1.05222 1.05432 +* GROUP 2 + 1.32916 1.33365 1.33722 + 1.32472 1.32862 1.33175 + 1.32075 1.32428 1.32691 + 1.32901 1.33350 1.33712 + 1.32457 1.32860 1.33163 + 1.32061 1.32409 1.32680 + 1.32881 1.33331 1.33697 + 1.32439 1.32862 1.33145 + 1.32045 1.32399 1.32668 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.43726E-08 2.42961E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33573E-02 3.20732E-02 1.19900E-01 3.05495E-01 8.65560E-01 2.89683E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.79091E-04 1.04004E-03 9.64106E-04 2.21286E-03 1.05242E-03 4.18716E-04 +* +* ---------------------------------------------------------- +* BURNUP 32.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.25018E-01 2.33266E-01 2.39789E-01 + 2.23718E-01 2.31710E-01 2.38011E-01 + 2.22491E-01 2.30244E-01 2.36338E-01 + 2.24815E-01 2.33053E-01 2.39560E-01 + 2.23507E-01 2.31483E-01 2.37768E-01 + 2.22266E-01 2.30003E-01 2.36084E-01 + 2.24620E-01 2.32845E-01 2.39347E-01 + 2.23298E-01 2.31262E-01 2.37540E-01 + 2.22056E-01 2.29779E-01 2.35843E-01 +* GROUP 2 + 8.15846E-01 8.73040E-01 9.20009E-01 + 8.10331E-01 8.66198E-01 9.11882E-01 + 8.05420E-01 8.60114E-01 9.04670E-01 + 8.15681E-01 8.72836E-01 9.19761E-01 + 8.10207E-01 8.66042E-01 9.11696E-01 + 8.05337E-01 8.60004E-01 9.04533E-01 + 8.15397E-01 8.72495E-01 9.19365E-01 + 8.09979E-01 8.65763E-01 9.11373E-01 + 8.05158E-01 8.59777E-01 9.04273E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.04160E-02 1.05450E-02 1.06392E-02 + 1.07022E-02 1.08588E-02 1.09752E-02 + 1.09761E-02 1.11578E-02 1.12943E-02 + 1.06451E-02 1.07796E-02 1.08781E-02 + 1.09311E-02 1.10933E-02 1.12140E-02 + 1.12042E-02 1.13917E-02 1.15324E-02 + 1.08765E-02 1.10170E-02 1.11200E-02 + 1.11621E-02 1.13302E-02 1.14556E-02 + 1.14342E-02 1.16278E-02 1.17731E-02 +* GROUP 2 + 1.03160E-01 1.04168E-01 1.05052E-01 + 1.12150E-01 1.14042E-01 1.15670E-01 + 1.20917E-01 1.23657E-01 1.25989E-01 + 1.03135E-01 1.04128E-01 1.04998E-01 + 1.12119E-01 1.13997E-01 1.15608E-01 + 1.20881E-01 1.23606E-01 1.25922E-01 + 1.03248E-01 1.04227E-01 1.05082E-01 + 1.12220E-01 1.14084E-01 1.15681E-01 + 1.20972E-01 1.23682E-01 1.25985E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.66066E-03 5.71083E-03 5.74715E-03 + 5.67950E-03 5.73211E-03 5.77059E-03 + 5.69609E-03 5.75078E-03 5.79093E-03 + 5.65131E-03 5.70173E-03 5.73831E-03 + 5.67006E-03 5.72289E-03 5.76153E-03 + 5.68645E-03 5.74140E-03 5.78175E-03 + 5.64115E-03 5.69175E-03 5.72866E-03 + 5.65956E-03 5.71265E-03 5.75158E-03 + 5.67574E-03 5.73099E-03 5.77162E-03 +* GROUP 2 + 1.51595E-01 1.52284E-01 1.52904E-01 + 1.51030E-01 1.51686E-01 1.52273E-01 + 1.50489E-01 1.51116E-01 1.51670E-01 + 1.51611E-01 1.52275E-01 1.52870E-01 + 1.51058E-01 1.51692E-01 1.52253E-01 + 1.50528E-01 1.51133E-01 1.51663E-01 + 1.51882E-01 1.52524E-01 1.53096E-01 + 1.51337E-01 1.51949E-01 1.52489E-01 + 1.50815E-01 1.51399E-01 1.51910E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 7.07275E-14 7.13389E-14 7.17811E-14 + 7.09680E-14 7.16098E-14 7.20788E-14 + 7.11768E-14 7.18437E-14 7.23331E-14 + 7.06069E-14 7.12214E-14 7.16669E-14 + 7.08457E-14 7.14901E-14 7.19612E-14 + 7.10515E-14 7.17215E-14 7.22132E-14 + 7.04762E-14 7.10929E-14 7.15423E-14 + 7.07102E-14 7.13578E-14 7.18324E-14 + 7.09128E-14 7.15867E-14 7.20815E-14 +* GROUP 2 + 1.88754E-12 1.89751E-12 1.90654E-12 + 1.87957E-12 1.88903E-12 1.89758E-12 + 1.87194E-12 1.88098E-12 1.88903E-12 + 1.88712E-12 1.89677E-12 1.90548E-12 + 1.87930E-12 1.88849E-12 1.89671E-12 + 1.87182E-12 1.88058E-12 1.88834E-12 + 1.88977E-12 1.89914E-12 1.90757E-12 + 1.88206E-12 1.89098E-12 1.89893E-12 + 1.87470E-12 1.88320E-12 1.89072E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.84461E-01 5.09611E-01 5.29532E-01 + 4.86066E-01 5.11419E-01 5.31479E-01 + 4.87411E-01 5.12969E-01 5.33175E-01 + 4.84760E-01 5.09910E-01 5.29815E-01 + 4.86373E-01 5.11703E-01 5.31753E-01 + 4.87698E-01 5.13227E-01 5.33413E-01 + 4.85071E-01 5.10201E-01 5.30100E-01 + 4.86650E-01 5.11994E-01 5.32046E-01 + 4.87964E-01 5.13483E-01 5.33650E-01 +* GROUP 1 -> 2 + 1.43283E-02 1.56739E-02 1.67477E-02 + 1.44369E-02 1.58108E-02 1.69098E-02 + 1.45078E-02 1.59013E-02 1.70166E-02 + 1.42072E-02 1.55480E-02 1.66181E-02 + 1.43118E-02 1.56806E-02 1.67755E-02 + 1.43793E-02 1.57672E-02 1.68779E-02 + 1.40802E-02 1.54153E-02 1.64823E-02 + 1.41805E-02 1.55434E-02 1.66341E-02 + 1.42443E-02 1.56261E-02 1.67326E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21332E+00 1.30850E+00 1.38637E+00 + 1.20441E+00 1.29814E+00 1.37467E+00 + 1.19602E+00 1.28840E+00 1.36365E+00 + 1.21266E+00 1.30781E+00 1.38565E+00 + 1.20380E+00 1.29749E+00 1.37400E+00 + 1.19545E+00 1.28780E+00 1.36304E+00 + 1.21189E+00 1.30701E+00 1.38481E+00 + 1.20306E+00 1.29675E+00 1.37323E+00 + 1.19477E+00 1.28710E+00 1.36232E+00 +* +* ADF Table +* +* GROUP 1 + 1.00071 1.00095 1.00105 + 1.00140 1.00164 1.00192 + 1.00193 1.00235 1.00272 + 1.00062 1.00081 1.00096 + 1.00131 1.00156 1.00184 + 1.00184 1.00226 1.00262 + 1.00054 1.00073 1.00090 + 1.00122 1.00153 1.00174 + 1.00174 1.00215 1.00252 +* GROUP 2 + 0.93611 0.93567 0.93536 + 0.94057 0.94053 0.94103 + 0.94426 0.94493 0.94566 + 0.93570 0.93521 0.93503 + 0.94015 0.94035 0.94059 + 0.94384 0.94452 0.94522 + 0.93524 0.93480 0.93461 + 0.93968 0.93986 0.94001 + 0.94336 0.94403 0.94475 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.16781E-01 2.24035E-01 2.29797E-01 + 2.15645E-01 2.22665E-01 2.28229E-01 + 2.14546E-01 2.21347E-01 2.26721E-01 + 2.16502E-01 2.23744E-01 2.29498E-01 + 2.15356E-01 2.22363E-01 2.27914E-01 + 2.14249E-01 2.21034E-01 2.26394E-01 + 2.16242E-01 2.23465E-01 2.29210E-01 + 2.15084E-01 2.22074E-01 2.27615E-01 + 2.13971E-01 2.20738E-01 2.26086E-01 +* GROUP 2 + 8.01949E-01 8.54546E-01 8.97571E-01 + 7.98632E-01 8.50246E-01 8.92320E-01 + 7.95710E-01 8.46450E-01 8.87680E-01 + 8.01857E-01 8.54405E-01 8.97401E-01 + 7.98575E-01 8.50152E-01 8.92195E-01 + 7.95685E-01 8.46399E-01 8.87598E-01 + 8.01673E-01 8.54172E-01 8.97113E-01 + 7.98434E-01 8.49968E-01 8.91969E-01 + 7.95584E-01 8.46252E-01 8.87423E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.58838E-02 1.61075E-02 1.62677E-02 + 1.60801E-02 1.63273E-02 1.65065E-02 + 1.62654E-02 1.65336E-02 1.67295E-02 + 1.60661E-02 1.62969E-02 1.64640E-02 + 1.62600E-02 1.65153E-02 1.67003E-02 + 1.64430E-02 1.67195E-02 1.69206E-02 + 1.62489E-02 1.64893E-02 1.66614E-02 + 1.64403E-02 1.67035E-02 1.68948E-02 + 1.66208E-02 1.69047E-02 1.71125E-02 +* GROUP 2 + 1.40332E-01 1.41133E-01 1.41847E-01 + 1.48715E-01 1.50345E-01 1.51750E-01 + 1.56916E-01 1.59340E-01 1.61407E-01 + 1.40338E-01 1.41121E-01 1.41823E-01 + 1.48715E-01 1.50328E-01 1.51720E-01 + 1.56911E-01 1.59322E-01 1.61371E-01 + 1.40493E-01 1.41267E-01 1.41951E-01 + 1.48859E-01 1.50457E-01 1.51837E-01 + 1.57046E-01 1.59441E-01 1.61479E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.48482E-03 5.55367E-03 5.60317E-03 + 5.49692E-03 5.56798E-03 5.61937E-03 + 5.50818E-03 5.58142E-03 5.63456E-03 + 5.47601E-03 5.54522E-03 5.59489E-03 + 5.48816E-03 5.55959E-03 5.61118E-03 + 5.49955E-03 5.57316E-03 5.62654E-03 + 5.46641E-03 5.53585E-03 5.58577E-03 + 5.47855E-03 5.55033E-03 5.60214E-03 + 5.49007E-03 5.56400E-03 5.61766E-03 +* GROUP 2 + 1.59139E-01 1.60140E-01 1.61001E-01 + 1.58538E-01 1.59493E-01 1.60307E-01 + 1.57968E-01 1.58881E-01 1.59652E-01 + 1.59176E-01 1.60153E-01 1.60989E-01 + 1.58587E-01 1.59518E-01 1.60309E-01 + 1.58026E-01 1.58916E-01 1.59666E-01 + 1.59476E-01 1.60431E-01 1.61245E-01 + 1.58894E-01 1.59807E-01 1.60576E-01 + 1.58341E-01 1.59214E-01 1.59944E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.84245E-14 6.92722E-14 6.98814E-14 + 6.85593E-14 6.94325E-14 7.00634E-14 + 6.86814E-14 6.95789E-14 7.02292E-14 + 6.83067E-14 6.91590E-14 6.97705E-14 + 6.84414E-14 6.93192E-14 6.99528E-14 + 6.85644E-14 6.94664E-14 7.01196E-14 + 6.81788E-14 6.90343E-14 6.96489E-14 + 6.83129E-14 6.91948E-14 6.98312E-14 + 6.84366E-14 6.93423E-14 6.99993E-14 +* GROUP 2 + 1.97900E-12 1.99290E-12 2.00497E-12 + 1.97069E-12 1.98393E-12 1.99533E-12 + 1.96280E-12 1.97544E-12 1.98624E-12 + 1.97883E-12 1.99243E-12 2.00417E-12 + 1.97067E-12 1.98362E-12 1.99472E-12 + 1.96292E-12 1.97528E-12 1.98580E-12 + 1.98183E-12 1.99515E-12 2.00663E-12 + 1.97379E-12 1.98649E-12 1.99733E-12 + 1.96614E-12 1.97827E-12 1.98856E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77706E-01 5.01447E-01 5.20217E-01 + 4.78151E-01 5.01949E-01 5.20777E-01 + 4.78495E-01 5.02301E-01 5.21140E-01 + 4.77879E-01 5.01632E-01 5.20398E-01 + 4.78308E-01 5.02108E-01 5.20921E-01 + 4.78633E-01 5.02459E-01 5.21269E-01 + 4.78063E-01 5.01790E-01 5.20567E-01 + 4.78462E-01 5.02244E-01 5.21062E-01 + 4.78781E-01 5.02582E-01 5.21391E-01 +* GROUP 1 -> 2 + 1.10532E-02 1.22737E-02 1.32524E-02 + 1.10299E-02 1.22541E-02 1.32371E-02 + 1.09944E-02 1.22190E-02 1.32020E-02 + 1.09420E-02 1.21576E-02 1.31312E-02 + 1.09173E-02 1.21357E-02 1.31139E-02 + 1.08808E-02 1.20982E-02 1.30771E-02 + 1.08268E-02 1.20356E-02 1.30052E-02 + 1.08006E-02 1.20124E-02 1.29858E-02 + 1.07631E-02 1.19739E-02 1.29475E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15707E+00 1.24665E+00 1.31973E+00 + 1.14993E+00 1.23831E+00 1.31027E+00 + 1.14320E+00 1.23046E+00 1.30136E+00 + 1.15644E+00 1.24599E+00 1.31903E+00 + 1.14934E+00 1.23769E+00 1.30961E+00 + 1.14264E+00 1.22986E+00 1.30075E+00 + 1.15569E+00 1.24519E+00 1.31820E+00 + 1.14862E+00 1.23695E+00 1.30884E+00 + 1.14196E+00 1.22916E+00 1.30002E+00 +* +* ADF Table +* +* GROUP 1 + 1.05134 1.05425 1.05656 + 1.05057 1.05347 1.05568 + 1.04993 1.05259 1.05469 + 1.05115 1.05410 1.05639 + 1.05038 1.05321 1.05549 + 1.04974 1.05241 1.05451 + 1.05096 1.05386 1.05620 + 1.05018 1.05313 1.05529 + 1.04956 1.05221 1.05433 +* GROUP 2 + 1.32856 1.33306 1.33666 + 1.32386 1.32775 1.33086 + 1.31970 1.32317 1.32580 + 1.32835 1.33295 1.33652 + 1.32367 1.32770 1.33071 + 1.31952 1.32296 1.32566 + 1.32810 1.33257 1.33630 + 1.32344 1.32768 1.33049 + 1.31931 1.32281 1.32549 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.45369E-08 2.45271E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33648E-02 3.18259E-02 1.19482E-01 3.05782E-01 8.67989E-01 2.90485E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.55698E-04 9.50751E-04 8.59655E-04 1.97675E-03 9.70807E-04 3.79454E-04 +* +* ---------------------------------------------------------- +* BURNUP 35.00 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.24623E-01 2.32840E-01 2.39336E-01 + 2.23293E-01 2.31251E-01 2.37519E-01 + 2.22045E-01 2.29755E-01 2.35814E-01 + 2.24415E-01 2.32625E-01 2.39110E-01 + 2.23076E-01 2.31019E-01 2.37273E-01 + 2.21809E-01 2.29510E-01 2.35554E-01 + 2.24215E-01 2.32413E-01 2.38892E-01 + 2.22861E-01 2.30794E-01 2.37039E-01 + 2.21590E-01 2.29276E-01 2.35314E-01 +* GROUP 2 + 8.17039E-01 8.74352E-01 9.21432E-01 + 8.11449E-01 8.67422E-01 9.13205E-01 + 8.06474E-01 8.61258E-01 9.05908E-01 + 8.16859E-01 8.74127E-01 9.21158E-01 + 8.11315E-01 8.67247E-01 9.12999E-01 + 8.06378E-01 8.61135E-01 9.05750E-01 + 8.16561E-01 8.73770E-01 9.20746E-01 + 8.11071E-01 8.66959E-01 9.12661E-01 + 8.06186E-01 8.60903E-01 9.05481E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.04803E-02 1.06110E-02 1.07067E-02 + 1.07672E-02 1.09257E-02 1.10434E-02 + 1.10412E-02 1.12247E-02 1.13628E-02 + 1.07108E-02 1.08474E-02 1.09473E-02 + 1.09975E-02 1.11616E-02 1.12838E-02 + 1.12705E-02 1.14601E-02 1.16024E-02 + 1.09439E-02 1.10866E-02 1.11913E-02 + 1.12302E-02 1.14003E-02 1.15272E-02 + 1.15020E-02 1.16976E-02 1.18449E-02 +* GROUP 2 + 1.02135E-01 1.03102E-01 1.03949E-01 + 1.11167E-01 1.13020E-01 1.14612E-01 + 1.19972E-01 1.22675E-01 1.24975E-01 + 1.02125E-01 1.03075E-01 1.03908E-01 + 1.11148E-01 1.12988E-01 1.14564E-01 + 1.19947E-01 1.22635E-01 1.24920E-01 + 1.02251E-01 1.03189E-01 1.04007E-01 + 1.11263E-01 1.13088E-01 1.14650E-01 + 1.20052E-01 1.22726E-01 1.24996E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.52233E-03 5.57174E-03 5.60766E-03 + 5.54041E-03 5.59226E-03 5.63011E-03 + 5.55635E-03 5.61022E-03 5.64991E-03 + 5.51295E-03 5.56267E-03 5.59878E-03 + 5.53094E-03 5.58296E-03 5.62106E-03 + 5.54666E-03 5.60086E-03 5.64066E-03 + 5.50278E-03 5.55271E-03 5.58914E-03 + 5.52044E-03 5.57282E-03 5.61110E-03 + 5.53600E-03 5.59047E-03 5.63057E-03 +* GROUP 2 + 1.48344E-01 1.48943E-01 1.49480E-01 + 1.47839E-01 1.48409E-01 1.48916E-01 + 1.47354E-01 1.47899E-01 1.48378E-01 + 1.48395E-01 1.48968E-01 1.49479E-01 + 1.47899E-01 1.48447E-01 1.48929E-01 + 1.47423E-01 1.47948E-01 1.48403E-01 + 1.48698E-01 1.49250E-01 1.49738E-01 + 1.48211E-01 1.48737E-01 1.49198E-01 + 1.47742E-01 1.48247E-01 1.48682E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.88147E-14 6.94156E-14 6.98521E-14 + 6.90438E-14 6.96746E-14 7.01346E-14 + 6.92422E-14 6.98974E-14 7.03799E-14 + 6.86939E-14 6.92985E-14 6.97375E-14 + 6.89212E-14 6.95542E-14 7.00175E-14 + 6.91167E-14 6.97757E-14 7.02594E-14 + 6.85633E-14 6.91707E-14 6.96136E-14 + 6.87860E-14 6.94233E-14 6.98889E-14 + 6.89790E-14 6.96411E-14 7.01285E-14 +* GROUP 2 + 1.84088E-12 1.84963E-12 1.85754E-12 + 1.83371E-12 1.84202E-12 1.84949E-12 + 1.82683E-12 1.83477E-12 1.84182E-12 + 1.84090E-12 1.84933E-12 1.85692E-12 + 1.83386E-12 1.84190E-12 1.84905E-12 + 1.82712E-12 1.83479E-12 1.84155E-12 + 1.84397E-12 1.85214E-12 1.85944E-12 + 1.83704E-12 1.84482E-12 1.85170E-12 + 1.83040E-12 1.83783E-12 1.84434E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.84737E-01 5.09901E-01 5.29835E-01 + 4.86381E-01 5.11713E-01 5.31795E-01 + 4.87717E-01 5.13229E-01 5.33412E-01 + 4.85062E-01 5.10219E-01 5.30133E-01 + 4.86665E-01 5.12007E-01 5.32061E-01 + 4.87974E-01 5.13482E-01 5.33644E-01 + 4.85361E-01 5.10525E-01 5.30433E-01 + 4.86942E-01 5.12286E-01 5.32318E-01 + 4.88222E-01 5.13720E-01 5.33887E-01 +* GROUP 1 -> 2 + 1.43366E-02 1.56841E-02 1.67602E-02 + 1.44445E-02 1.58202E-02 1.69207E-02 + 1.45149E-02 1.59090E-02 1.70258E-02 + 1.42136E-02 1.55565E-02 1.66289E-02 + 1.43173E-02 1.56871E-02 1.67837E-02 + 1.43842E-02 1.57725E-02 1.68847E-02 + 1.40843E-02 1.54215E-02 1.64911E-02 + 1.41832E-02 1.55472E-02 1.66398E-02 + 1.42468E-02 1.56287E-02 1.67363E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21408E+00 1.30930E+00 1.38720E+00 + 1.20513E+00 1.29889E+00 1.37540E+00 + 1.19669E+00 1.28905E+00 1.36433E+00 + 1.21342E+00 1.30858E+00 1.38645E+00 + 1.20451E+00 1.29822E+00 1.37473E+00 + 1.19610E+00 1.28844E+00 1.36369E+00 + 1.21264E+00 1.30776E+00 1.38560E+00 + 1.20377E+00 1.29746E+00 1.37393E+00 + 1.19540E+00 1.28773E+00 1.36296E+00 +* +* ADF Table +* +* GROUP 1 + 1.00071 1.00094 1.00105 + 1.00140 1.00165 1.00191 + 1.00192 1.00235 1.00273 + 1.00062 1.00080 1.00096 + 1.00131 1.00156 1.00184 + 1.00183 1.00226 1.00262 + 1.00052 1.00073 1.00090 + 1.00121 1.00154 1.00173 + 1.00173 1.00215 1.00251 +* GROUP 2 + 0.93592 0.93548 0.93515 + 0.94038 0.94033 0.94081 + 0.94406 0.94472 0.94543 + 0.93551 0.93500 0.93481 + 0.93995 0.94014 0.94037 + 0.94363 0.94429 0.94499 + 0.93504 0.93458 0.93439 + 0.93947 0.93964 0.93978 + 0.94315 0.94380 0.94451 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.16242E-01 2.23461E-01 2.29195E-01 + 2.15078E-01 2.22056E-01 2.27585E-01 + 2.13953E-01 2.20705E-01 2.26042E-01 + 2.15960E-01 2.23163E-01 2.28885E-01 + 2.14783E-01 2.21746E-01 2.27265E-01 + 2.13648E-01 2.20384E-01 2.25705E-01 + 2.15691E-01 2.22880E-01 2.28593E-01 + 2.14504E-01 2.21454E-01 2.26958E-01 + 2.13361E-01 2.20081E-01 2.25387E-01 +* GROUP 2 + 8.02950E-01 8.55655E-01 8.98781E-01 + 7.99579E-01 8.51292E-01 8.93455E-01 + 7.96615E-01 8.47436E-01 8.88750E-01 + 8.02844E-01 8.55504E-01 8.98596E-01 + 7.99511E-01 8.51185E-01 8.93318E-01 + 7.96579E-01 8.47374E-01 8.88659E-01 + 8.02653E-01 8.55260E-01 8.98291E-01 + 7.99362E-01 8.50990E-01 8.93079E-01 + 7.96469E-01 8.47222E-01 8.88473E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.59356E-02 1.61621E-02 1.63240E-02 + 1.61302E-02 1.63797E-02 1.65607E-02 + 1.63135E-02 1.65838E-02 1.67814E-02 + 1.61185E-02 1.63519E-02 1.65207E-02 + 1.63105E-02 1.65681E-02 1.67550E-02 + 1.64913E-02 1.67701E-02 1.69727E-02 + 1.63018E-02 1.65450E-02 1.67191E-02 + 1.64914E-02 1.67572E-02 1.69503E-02 + 1.66696E-02 1.69561E-02 1.71652E-02 +* GROUP 2 + 1.39287E-01 1.40040E-01 1.40711E-01 + 1.47710E-01 1.49294E-01 1.50660E-01 + 1.55948E-01 1.58329E-01 1.60359E-01 + 1.39308E-01 1.40043E-01 1.40701E-01 + 1.47723E-01 1.49291E-01 1.50642E-01 + 1.55956E-01 1.58323E-01 1.60336E-01 + 1.39477E-01 1.40202E-01 1.40844E-01 + 1.47882E-01 1.49435E-01 1.50774E-01 + 1.56104E-01 1.58457E-01 1.60458E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.35507E-03 5.42268E-03 5.47126E-03 + 5.36742E-03 5.43725E-03 5.48775E-03 + 5.37906E-03 5.45110E-03 5.50348E-03 + 5.34645E-03 5.41432E-03 5.46303E-03 + 5.35884E-03 5.42899E-03 5.47974E-03 + 5.37063E-03 5.44304E-03 5.49561E-03 + 5.33700E-03 5.40517E-03 5.45411E-03 + 5.34948E-03 5.41998E-03 5.47088E-03 + 5.36138E-03 5.43413E-03 5.48693E-03 +* GROUP 2 + 1.55842E-01 1.56743E-01 1.57512E-01 + 1.55296E-01 1.56156E-01 1.56883E-01 + 1.54777E-01 1.55598E-01 1.56288E-01 + 1.55913E-01 1.56790E-01 1.57534E-01 + 1.55376E-01 1.56213E-01 1.56917E-01 + 1.54866E-01 1.55666E-01 1.56334E-01 + 1.56245E-01 1.57102E-01 1.57824E-01 + 1.55717E-01 1.56534E-01 1.57218E-01 + 1.55213E-01 1.55996E-01 1.56645E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.66225E-14 6.74528E-14 6.80489E-14 + 6.67587E-14 6.76142E-14 6.82325E-14 + 6.68839E-14 6.77637E-14 6.84027E-14 + 6.65073E-14 6.73409E-14 6.79389E-14 + 6.66432E-14 6.75026E-14 6.81242E-14 + 6.67695E-14 6.76540E-14 6.82951E-14 + 6.63816E-14 6.72192E-14 6.78203E-14 + 6.65180E-14 6.73819E-14 6.80050E-14 + 6.66448E-14 6.75333E-14 6.81774E-14 +* GROUP 2 + 1.93157E-12 1.94412E-12 1.95494E-12 + 1.92399E-12 1.93595E-12 1.94618E-12 + 1.91680E-12 1.92821E-12 1.93790E-12 + 1.93183E-12 1.94408E-12 1.95459E-12 + 1.92439E-12 1.93606E-12 1.94600E-12 + 1.91732E-12 1.92846E-12 1.93789E-12 + 1.93526E-12 1.94725E-12 1.95749E-12 + 1.92793E-12 1.93936E-12 1.94904E-12 + 1.92095E-12 1.93187E-12 1.94107E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77789E-01 5.01548E-01 5.20324E-01 + 4.78215E-01 5.01997E-01 5.20815E-01 + 4.78522E-01 5.02320E-01 5.21161E-01 + 4.77965E-01 5.01717E-01 5.20496E-01 + 4.78367E-01 5.02152E-01 5.20964E-01 + 4.78657E-01 5.02446E-01 5.21271E-01 + 4.78135E-01 5.01876E-01 5.20653E-01 + 4.78516E-01 5.02301E-01 5.21095E-01 + 4.78790E-01 5.02564E-01 5.21377E-01 +* GROUP 1 -> 2 + 1.10452E-02 1.22664E-02 1.32453E-02 + 1.10202E-02 1.22447E-02 1.32280E-02 + 1.09829E-02 1.22069E-02 1.31901E-02 + 1.09327E-02 1.21487E-02 1.31223E-02 + 1.09061E-02 1.21242E-02 1.31029E-02 + 1.08678E-02 1.20847E-02 1.30631E-02 + 1.08157E-02 1.20246E-02 1.29944E-02 + 1.07876E-02 1.19992E-02 1.29725E-02 + 1.07485E-02 1.19586E-02 1.29312E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15777E+00 1.24740E+00 1.32052E+00 + 1.15061E+00 1.23900E+00 1.31099E+00 + 1.14382E+00 1.23108E+00 1.30201E+00 + 1.15713E+00 1.24673E+00 1.31980E+00 + 1.14999E+00 1.23837E+00 1.31032E+00 + 1.14325E+00 1.23048E+00 1.30139E+00 + 1.15637E+00 1.24592E+00 1.31896E+00 + 1.14927E+00 1.23761E+00 1.30953E+00 + 1.14256E+00 1.22977E+00 1.30066E+00 +* +* ADF Table +* +* GROUP 1 + 1.05139 1.05434 1.05663 + 1.05061 1.05353 1.05574 + 1.04997 1.05263 1.05474 + 1.05122 1.05416 1.05645 + 1.05042 1.05325 1.05555 + 1.04978 1.05245 1.05456 + 1.05102 1.05395 1.05626 + 1.05023 1.05319 1.05534 + 1.04958 1.05225 1.05436 +* GROUP 2 + 1.32869 1.33319 1.33681 + 1.32391 1.32780 1.33091 + 1.31969 1.32314 1.32577 + 1.32848 1.33308 1.33666 + 1.32371 1.32774 1.33076 + 1.31949 1.32293 1.32562 + 1.32821 1.33274 1.33643 + 1.32347 1.32771 1.33052 + 1.31927 1.32277 1.32544 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.45941E-08 2.45830E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33671E-02 3.17639E-02 1.19379E-01 3.05867E-01 8.68603E-01 2.90708E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.50350E-04 9.30450E-04 8.35921E-04 1.92355E-03 9.52429E-04 3.70655E-04 +* +* ---------------------------------------------------------- +* BURNUP 37.50 +* ---------------------------------------------------------- +* +* Transport XSEC Table +* +* GROUP 1 + 2.24223E-01 2.32414E-01 2.38888E-01 + 2.22865E-01 2.30785E-01 2.37023E-01 + 2.21584E-01 2.29257E-01 2.35284E-01 + 2.24010E-01 2.32192E-01 2.38654E-01 + 2.22637E-01 2.30548E-01 2.36778E-01 + 2.21350E-01 2.29010E-01 2.35022E-01 + 2.23804E-01 2.31978E-01 2.38432E-01 + 2.22424E-01 2.30322E-01 2.36538E-01 + 2.21126E-01 2.28770E-01 2.34776E-01 +* GROUP 2 + 8.18169E-01 8.75593E-01 9.22776E-01 + 8.12500E-01 8.68578E-01 9.14453E-01 + 8.07458E-01 8.62337E-01 9.07064E-01 + 8.17969E-01 8.75352E-01 9.22490E-01 + 8.12351E-01 8.68387E-01 9.14229E-01 + 8.07350E-01 8.62196E-01 9.06897E-01 + 8.17658E-01 8.74976E-01 9.22055E-01 + 8.12098E-01 8.68081E-01 9.13876E-01 + 8.07148E-01 8.61954E-01 9.06613E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.05424E-02 1.06748E-02 1.07720E-02 + 1.08301E-02 1.09902E-02 1.11095E-02 + 1.11040E-02 1.12895E-02 1.14288E-02 + 1.07741E-02 1.09125E-02 1.10140E-02 + 1.10613E-02 1.12274E-02 1.13514E-02 + 1.13345E-02 1.15259E-02 1.16697E-02 + 1.10088E-02 1.11535E-02 1.12596E-02 + 1.12956E-02 1.14678E-02 1.15965E-02 + 1.15674E-02 1.17650E-02 1.19138E-02 +* GROUP 2 + 1.01068E-01 1.01995E-01 1.02807E-01 + 1.10138E-01 1.11955E-01 1.13515E-01 + 1.18979E-01 1.21648E-01 1.23918E-01 + 1.01069E-01 1.01982E-01 1.02779E-01 + 1.10131E-01 1.11935E-01 1.13478E-01 + 1.18965E-01 1.21620E-01 1.23875E-01 + 1.01208E-01 1.02107E-01 1.02890E-01 + 1.10258E-01 1.12047E-01 1.13576E-01 + 1.19081E-01 1.21722E-01 1.23962E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.38836E-03 5.43715E-03 5.47263E-03 + 5.40572E-03 5.45682E-03 5.49420E-03 + 5.42106E-03 5.47421E-03 5.51335E-03 + 5.37900E-03 5.42806E-03 5.46371E-03 + 5.39618E-03 5.44756E-03 5.48519E-03 + 5.41145E-03 5.46489E-03 5.50419E-03 + 5.36888E-03 5.41819E-03 5.45411E-03 + 5.38588E-03 5.43747E-03 5.47531E-03 + 5.40090E-03 5.45460E-03 5.49419E-03 +* GROUP 2 + 1.45048E-01 1.45561E-01 1.46017E-01 + 1.44598E-01 1.45087E-01 1.45519E-01 + 1.44166E-01 1.44635E-01 1.45043E-01 + 1.45128E-01 1.45617E-01 1.46049E-01 + 1.44689E-01 1.45156E-01 1.45563E-01 + 1.44265E-01 1.44713E-01 1.45098E-01 + 1.45463E-01 1.45930E-01 1.46339E-01 + 1.45030E-01 1.45476E-01 1.45862E-01 + 1.44612E-01 1.45041E-01 1.45407E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.69679E-14 6.75600E-14 6.79903E-14 + 6.71857E-14 6.78059E-14 6.82594E-14 + 6.73749E-14 6.80196E-14 6.84941E-14 + 6.68477E-14 6.74430E-14 6.78756E-14 + 6.70625E-14 6.76865E-14 6.81431E-14 + 6.72506E-14 6.78989E-14 6.83750E-14 + 6.67180E-14 6.73166E-14 6.77525E-14 + 6.69302E-14 6.75566E-14 6.80159E-14 + 6.71145E-14 6.77659E-14 6.82458E-14 +* GROUP 2 + 1.79409E-12 1.80169E-12 1.80851E-12 + 1.78767E-12 1.79490E-12 1.80135E-12 + 1.78151E-12 1.78842E-12 1.79451E-12 + 1.79451E-12 1.80180E-12 1.80832E-12 + 1.78822E-12 1.79518E-12 1.80133E-12 + 1.78219E-12 1.78883E-12 1.79464E-12 + 1.79798E-12 1.80501E-12 1.81124E-12 + 1.79179E-12 1.79849E-12 1.80437E-12 + 1.78585E-12 1.79226E-12 1.79782E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.85021E-01 5.10207E-01 5.30135E-01 + 4.86627E-01 5.12001E-01 5.32098E-01 + 4.87951E-01 5.13443E-01 5.33667E-01 + 4.85315E-01 5.10497E-01 5.30421E-01 + 4.86894E-01 5.12271E-01 5.32378E-01 + 4.88198E-01 5.13701E-01 5.33912E-01 + 4.85610E-01 5.10792E-01 5.30719E-01 + 4.87172E-01 5.12540E-01 5.32639E-01 + 4.88451E-01 5.13965E-01 5.34138E-01 +* GROUP 1 -> 2 + 1.43475E-02 1.56976E-02 1.67749E-02 + 1.44532E-02 1.58313E-02 1.69338E-02 + 1.45229E-02 1.59178E-02 1.70372E-02 + 1.42220E-02 1.55671E-02 1.66412E-02 + 1.43239E-02 1.56965E-02 1.67949E-02 + 1.43905E-02 1.57789E-02 1.68938E-02 + 1.40901E-02 1.54299E-02 1.65009E-02 + 1.41882E-02 1.55541E-02 1.66488E-02 + 1.42504E-02 1.56326E-02 1.67434E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.21484E+00 1.31004E+00 1.38800E+00 + 1.20580E+00 1.29958E+00 1.37613E+00 + 1.19731E+00 1.28968E+00 1.36498E+00 + 1.21415E+00 1.30933E+00 1.38724E+00 + 1.20517E+00 1.29891E+00 1.37543E+00 + 1.19671E+00 1.28906E+00 1.36433E+00 + 1.21335E+00 1.30849E+00 1.38637E+00 + 1.20442E+00 1.29813E+00 1.37462E+00 + 1.19600E+00 1.28833E+00 1.36358E+00 +* +* ADF Table +* +* GROUP 1 + 1.00073 1.00094 1.00106 + 1.00141 1.00165 1.00193 + 1.00192 1.00235 1.00274 + 1.00062 1.00081 1.00096 + 1.00131 1.00155 1.00185 + 1.00183 1.00226 1.00263 + 1.00052 1.00073 1.00090 + 1.00121 1.00154 1.00174 + 1.00173 1.00215 1.00252 +* GROUP 2 + 0.93580 0.93534 0.93501 + 0.94025 0.94019 0.94066 + 0.94392 0.94456 0.94527 + 0.93538 0.93487 0.93467 + 0.93982 0.93999 0.94022 + 0.94349 0.94414 0.94483 + 0.93490 0.93444 0.93424 + 0.93933 0.93949 0.93962 + 0.94300 0.94364 0.94434 +* +***RODDED XSEC***** +* Transport XSEC Table +* +* GROUP 1 + 2.15699E-01 2.22878E-01 2.28583E-01 + 2.14501E-01 2.21436E-01 2.26931E-01 + 2.13345E-01 2.20050E-01 2.25346E-01 + 2.15409E-01 2.22575E-01 2.28268E-01 + 2.14202E-01 2.21121E-01 2.26602E-01 + 2.13036E-01 2.19721E-01 2.25001E-01 + 2.15135E-01 2.22283E-01 2.27967E-01 + 2.13917E-01 2.20820E-01 2.26292E-01 + 2.12743E-01 2.19412E-01 2.24676E-01 +* GROUP 2 + 8.03883E-01 8.56691E-01 8.99916E-01 + 8.00459E-01 8.52263E-01 8.94518E-01 + 7.97443E-01 8.48354E-01 8.89747E-01 + 8.03759E-01 8.56523E-01 8.99712E-01 + 8.00377E-01 8.52145E-01 8.94367E-01 + 7.97401E-01 8.48280E-01 8.89639E-01 + 8.03559E-01 8.56267E-01 8.99397E-01 + 8.00219E-01 8.51943E-01 8.94112E-01 + 7.97282E-01 8.48120E-01 8.89448E-01 +* +* Absorption XSEC Table +* +* GROUP 1 + 1.59855E-02 1.62142E-02 1.63781E-02 + 1.61780E-02 1.64298E-02 1.66123E-02 + 1.63593E-02 1.66315E-02 1.68306E-02 + 1.61685E-02 1.64045E-02 1.65757E-02 + 1.63587E-02 1.66186E-02 1.68071E-02 + 1.65373E-02 1.68180E-02 1.70222E-02 + 1.63526E-02 1.65983E-02 1.67744E-02 + 1.65400E-02 1.68082E-02 1.70029E-02 + 1.67159E-02 1.70045E-02 1.72151E-02 +* GROUP 2 + 1.38189E-01 1.38896E-01 1.39526E-01 + 1.46650E-01 1.48191E-01 1.49519E-01 + 1.54923E-01 1.57265E-01 1.59259E-01 + 1.38222E-01 1.38912E-01 1.39529E-01 + 1.46675E-01 1.48201E-01 1.49515E-01 + 1.54942E-01 1.57270E-01 1.59248E-01 + 1.38405E-01 1.39084E-01 1.39686E-01 + 1.46846E-01 1.48357E-01 1.49659E-01 + 1.55103E-01 1.57416E-01 1.59382E-01 +* +* Nu-Fission XSEC Table +* +* GROUP 1 + 5.22978E-03 5.29614E-03 5.34386E-03 + 5.24239E-03 5.31106E-03 5.36073E-03 + 5.25449E-03 5.32542E-03 5.37705E-03 + 5.22129E-03 5.28796E-03 5.33588E-03 + 5.23406E-03 5.30303E-03 5.35293E-03 + 5.24631E-03 5.31762E-03 5.36943E-03 + 5.21212E-03 5.27904E-03 5.32714E-03 + 5.22501E-03 5.29428E-03 5.34435E-03 + 5.23739E-03 5.30902E-03 5.36104E-03 +* GROUP 2 + 1.52488E-01 1.53293E-01 1.53975E-01 + 1.51993E-01 1.52762E-01 1.53407E-01 + 1.51522E-01 1.52259E-01 1.52870E-01 + 1.52588E-01 1.53371E-01 1.54028E-01 + 1.52103E-01 1.52851E-01 1.53473E-01 + 1.51641E-01 1.52356E-01 1.52947E-01 + 1.52952E-01 1.53714E-01 1.54350E-01 + 1.52473E-01 1.53202E-01 1.53804E-01 + 1.52017E-01 1.52715E-01 1.53288E-01 +* +* Kappa-Fission XSEC Table +* +* GROUP 1 + 6.48869E-14 6.56998E-14 6.62841E-14 + 6.50247E-14 6.58635E-14 6.64699E-14 + 6.51537E-14 6.60173E-14 6.66450E-14 + 6.47737E-14 6.55904E-14 6.61774E-14 + 6.49125E-14 6.57550E-14 6.63643E-14 + 6.50427E-14 6.59106E-14 6.65407E-14 + 6.46519E-14 6.54719E-14 6.60610E-14 + 6.47913E-14 6.56376E-14 6.62492E-14 + 6.49225E-14 6.57945E-14 6.64268E-14 +* GROUP 2 + 1.88389E-12 1.89515E-12 1.90480E-12 + 1.87701E-12 1.88775E-12 1.89687E-12 + 1.87047E-12 1.88074E-12 1.88938E-12 + 1.88455E-12 1.89552E-12 1.90486E-12 + 1.87780E-12 1.88826E-12 1.89710E-12 + 1.87138E-12 1.88137E-12 1.88975E-12 + 1.88838E-12 1.89909E-12 1.90817E-12 + 1.88172E-12 1.89195E-12 1.90054E-12 + 1.87539E-12 1.88517E-12 1.89332E-12 +* +* Scattering XSEC Table +* +* GROUP 1 -> 1 + 4.77870E-01 5.01633E-01 5.20417E-01 + 4.78268E-01 5.02046E-01 5.20858E-01 + 4.78528E-01 5.02320E-01 5.21158E-01 + 4.78026E-01 5.01797E-01 5.20581E-01 + 4.78412E-01 5.02191E-01 5.20993E-01 + 4.78659E-01 5.02436E-01 5.21265E-01 + 4.78195E-01 5.01937E-01 5.20716E-01 + 4.78563E-01 5.02322E-01 5.21117E-01 + 4.78788E-01 5.02552E-01 5.21365E-01 +* GROUP 1 -> 2 + 1.10382E-02 1.22599E-02 1.32396E-02 + 1.10113E-02 1.22361E-02 1.32191E-02 + 1.09726E-02 1.21959E-02 1.31787E-02 + 1.09242E-02 1.21405E-02 1.31150E-02 + 1.08959E-02 1.21139E-02 1.30926E-02 + 1.08558E-02 1.20720E-02 1.30499E-02 + 1.08056E-02 1.20148E-02 1.29851E-02 + 1.07757E-02 1.19872E-02 1.29603E-02 + 1.07348E-02 1.19441E-02 1.29162E-02 +* GROUP 2 -> 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 +* GROUP 2 -> 2 + 1.15847E+00 1.24812E+00 1.32128E+00 + 1.15123E+00 1.23966E+00 1.31168E+00 + 1.14441E+00 1.23169E+00 1.30265E+00 + 1.15781E+00 1.24744E+00 1.32055E+00 + 1.15061E+00 1.23901E+00 1.31100E+00 + 1.14382E+00 1.23108E+00 1.30202E+00 + 1.15704E+00 1.24662E+00 1.31969E+00 + 1.14988E+00 1.23825E+00 1.31019E+00 + 1.14312E+00 1.23035E+00 1.30127E+00 +* +* ADF Table +* +* GROUP 1 + 1.05147 1.05441 1.05672 + 1.05067 1.05360 1.05580 + 1.05001 1.05267 1.05479 + 1.05128 1.05424 1.05655 + 1.05047 1.05332 1.05561 + 1.04982 1.05249 1.05460 + 1.05108 1.05402 1.05634 + 1.05028 1.05320 1.05540 + 1.04962 1.05229 1.05440 +* GROUP 2 + 1.32887 1.33339 1.33703 + 1.32401 1.32795 1.33102 + 1.31971 1.32316 1.32578 + 1.32864 1.33327 1.33687 + 1.32380 1.32785 1.33087 + 1.31951 1.32294 1.32562 + 1.32838 1.33291 1.33663 + 1.32355 1.32777 1.33061 + 1.31928 1.32277 1.32544 +* +* Fission Spectrum +* +* GROUP 1 2 + 1.00000E+00 0.00000E+00 +* +* Inverse Velocity +* +* GROUP 1 2 + 5.46559E-08 2.46381E-06 +* +* Delay Neutron Decay Constant (Lambda) +* +* GROUP 1 2 3 4 5 6 + 1.33694E-02 3.17020E-02 1.19276E-01 3.05957E-01 8.69217E-01 2.90936E+00 +* +* Delay Neutron Fraction (Beta) +* +* GROUP 1 2 3 4 5 6 + 1.45180E-04 9.10783E-04 8.12987E-04 1.87226E-03 9.34672E-04 3.62180E-04 +* +END diff --git a/smpl/xsec/SERPENT_CMM/m40.tab b/smpl/xsec/SERPENT_CMM/m40.tab new file mode 100644 index 0000000..90f84ed --- /dev/null +++ b/smpl/xsec/SERPENT_CMM/m40.tab @@ -0,0 +1,1281 @@ + * INPUT CONTROL + 1 0 * ADF and CR + * Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 + * + * -------------------------------------------------------- + * BURNUP 0.15 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20719E-01 2.28210E-01 2.33971E-01 + 2.20664E-01 2.28313E-01 2.34297E-01 + 2.20771E-01 2.28298E-01 2.34046E-01 + 2.20402E-01 2.28093E-01 2.34057E-01 + 2.20425E-01 2.28327E-01 2.34103E-01 + 2.20535E-01 2.28043E-01 2.33989E-01 + 2.20368E-01 2.27868E-01 2.34017E-01 + 2.20484E-01 2.27944E-01 2.33725E-01 + 2.20393E-01 2.27938E-01 2.33916E-01 + * GROUP 2 + 8.20235E-01 8.72093E-01 9.09855E-01 + 8.18494E-01 8.64595E-01 9.07557E-01 + 8.16155E-01 8.63676E-01 9.04946E-01 + 8.12309E-01 8.68204E-01 9.08109E-01 + 8.17984E-01 8.65945E-01 9.08931E-01 + 8.15159E-01 8.59949E-01 9.01466E-01 + 8.13119E-01 8.69677E-01 9.10982E-01 + 8.10471E-01 8.69656E-01 9.05262E-01 + 8.16651E-01 8.64442E-01 8.99935E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.12262E-02 1.13751E-02 1.14811E-02 + 1.14288E-02 1.16084E-02 1.17344E-02 + 1.16453E-02 1.18344E-02 1.19756E-02 + 1.14472E-02 1.16050E-02 1.17172E-02 + 1.16597E-02 1.18435E-02 1.19603E-02 + 1.18752E-02 1.20680E-02 1.22164E-02 + 1.16878E-02 1.18484E-02 1.19732E-02 + 1.18972E-02 1.20765E-02 1.22133E-02 + 1.21023E-02 1.22967E-02 1.24578E-02 + * GROUP 2 + 2.38210E-01 2.39085E-01 2.39835E-01 + 2.46988E-01 2.48665E-01 2.50064E-01 + 2.55709E-01 2.58167E-01 2.60081E-01 + 2.39046E-01 2.40017E-01 2.40777E-01 + 2.47844E-01 2.49486E-01 2.50805E-01 + 2.56093E-01 2.59006E-01 2.61002E-01 + 2.40173E-01 2.40982E-01 2.41690E-01 + 2.48968E-01 2.50675E-01 2.52052E-01 + 2.57286E-01 2.60034E-01 2.62191E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 8.16248E-03 8.24595E-03 8.30377E-03 + 8.16966E-03 8.25828E-03 8.31627E-03 + 8.17810E-03 8.26100E-03 8.32636E-03 + 8.18475E-03 8.26886E-03 8.33114E-03 + 8.19226E-03 8.28067E-03 8.33998E-03 + 8.20436E-03 8.29044E-03 8.35101E-03 + 8.20248E-03 8.29076E-03 8.35548E-03 + 8.21455E-03 8.29550E-03 8.36517E-03 + 8.22221E-03 8.31101E-03 8.37176E-03 + * GROUP 2 + 3.63796E-01 3.64466E-01 3.65046E-01 + 3.64033E-01 3.64435E-01 3.64904E-01 + 3.64330E-01 3.64576E-01 3.64811E-01 + 3.65131E-01 3.65843E-01 3.66574E-01 + 3.65347E-01 3.65800E-01 3.66072E-01 + 3.64984E-01 3.66031E-01 3.66326E-01 + 3.66975E-01 3.67451E-01 3.67937E-01 + 3.67198E-01 3.67701E-01 3.68097E-01 + 3.66966E-01 3.67813E-01 3.68330E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 9.51892E-14 9.61586E-14 9.68260E-14 + 9.52778E-14 9.63011E-14 9.69696E-14 + 9.53770E-14 9.63324E-14 9.70855E-14 + 9.54485E-14 9.64184E-14 9.71403E-14 + 9.55336E-14 9.65583E-14 9.72372E-14 + 9.56733E-14 9.66669E-14 9.73688E-14 + 9.56427E-14 9.66683E-14 9.74149E-14 + 9.57850E-14 9.67232E-14 9.75252E-14 + 9.58732E-14 9.69024E-14 9.76007E-14 + * GROUP 2 + 4.25295E-12 4.26057E-12 4.26722E-12 + 4.25577E-12 4.26031E-12 4.26563E-12 + 4.25936E-12 4.26207E-12 4.26467E-12 + 4.26854E-12 4.27671E-12 4.28509E-12 + 4.27117E-12 4.27628E-12 4.27933E-12 + 4.26700E-12 4.27907E-12 4.28237E-12 + 4.29012E-12 4.29551E-12 4.30102E-12 + 4.29282E-12 4.29853E-12 4.30298E-12 + 4.29019E-12 4.29992E-12 4.30583E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.75578E-01 4.99262E-01 5.18279E-01 + 4.76299E-01 5.00268E-01 5.19237E-01 + 4.77052E-01 5.01067E-01 5.20120E-01 + 4.75839E-01 4.99629E-01 5.18432E-01 + 4.76562E-01 5.00556E-01 5.19436E-01 + 4.77243E-01 5.01326E-01 5.20332E-01 + 4.76158E-01 4.99932E-01 5.18754E-01 + 4.76883E-01 5.00791E-01 5.19656E-01 + 4.77583E-01 5.01564E-01 5.20540E-01 + * GROUP 1 -> 2 + 1.29413E-02 1.41785E-02 1.51731E-02 + 1.29271E-02 1.41787E-02 1.51764E-02 + 1.29017E-02 1.41613E-02 1.51677E-02 + 1.28466E-02 1.40784E-02 1.50654E-02 + 1.28273E-02 1.40682E-02 1.50694E-02 + 1.28006E-02 1.40529E-02 1.50421E-02 + 1.27365E-02 1.39771E-02 1.49490E-02 + 1.27173E-02 1.39637E-02 1.49490E-02 + 1.26856E-02 1.39401E-02 1.49305E-02 + * GROUP 2 -> 1 + 3.86966E-03 3.65670E-03 3.43868E-03 + 3.96159E-03 3.77220E-03 3.61004E-03 + 4.09213E-03 3.86595E-03 3.69110E-03 + 4.29962E-03 4.05601E-03 3.84535E-03 + 4.41958E-03 4.18979E-03 3.99670E-03 + 4.54137E-03 4.31103E-03 4.09501E-03 + 4.74989E-03 4.53091E-03 4.29004E-03 + 4.90457E-03 4.66471E-03 4.43642E-03 + 5.03721E-03 4.80410E-03 4.59997E-03 + * GROUP 2 -> 2 + 1.15851E+00 1.24980E+00 1.32426E+00 + 1.15246E+00 1.24353E+00 1.31659E+00 + 1.14750E+00 1.23705E+00 1.31005E+00 + 1.15861E+00 1.24978E+00 1.32396E+00 + 1.15220E+00 1.24299E+00 1.31745E+00 + 1.14704E+00 1.23667E+00 1.30949E+00 + 1.15843E+00 1.25012E+00 1.32413E+00 + 1.15239E+00 1.24322E+00 1.31646E+00 + 1.14706E+00 1.23656E+00 1.30913E+00 + * + * ADF Table + * + * GROUP 1 + 1.00165E+00 1.00168E+00 1.00115E+00 + 1.00040E+00 1.00058E+00 1.00099E+00 + 9.99950E-01 9.99453E-01 9.99877E-01 + 1.00146E+00 1.00118E+00 1.00151E+00 + 1.00074E+00 1.00025E+00 1.00042E+00 + 9.99449E-01 9.99601E-01 9.99193E-01 + 1.00149E+00 1.00101E+00 1.00144E+00 + 1.00133E+00 1.00003E+00 9.99888E-01 + 9.99873E-01 1.00078E+00 1.00041E+00 + * GROUP 2 + 1.33226E+00 1.33609E+00 1.33932E+00 + 1.32452E+00 1.32860E+00 1.33012E+00 + 1.31454E+00 1.32130E+00 1.32041E+00 + 1.32725E+00 1.33158E+00 1.33694E+00 + 1.32299E+00 1.32697E+00 1.32870E+00 + 1.31496E+00 1.32127E+00 1.32458E+00 + 1.33035E+00 1.33353E+00 1.33969E+00 + 1.32457E+00 1.32915E+00 1.33102E+00 + 1.31931E+00 1.32437E+00 1.32441E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.11600E-08 2.21311E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33229E-02 3.10230E-02 1.16408E-01 3.04479E-01 8.77645E-01 2.89773E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 8.82928E-05 5.89735E-04 5.15773E-04 1.08877E-03 6.13172E-04 2.16079E-04 + * + * -------------------------------------------------------- + * BURNUP 17.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.21645E-01 2.29327E-01 2.35117E-01 + 2.21666E-01 2.29332E-01 2.35307E-01 + 2.21546E-01 2.29442E-01 2.35363E-01 + 2.21615E-01 2.29325E-01 2.35210E-01 + 2.21645E-01 2.29146E-01 2.35170E-01 + 2.21737E-01 2.29011E-01 2.35205E-01 + 2.21703E-01 2.29234E-01 2.35050E-01 + 2.21653E-01 2.29144E-01 2.34991E-01 + 2.21479E-01 2.29198E-01 2.34989E-01 + * GROUP 2 + 8.16546E-01 8.59642E-01 8.97161E-01 + 8.10635E-01 8.58523E-01 8.99276E-01 + 8.11334E-01 8.54891E-01 9.01639E-01 + 8.11552E-01 8.59941E-01 9.05098E-01 + 8.11040E-01 8.61319E-01 8.98358E-01 + 8.09424E-01 8.55794E-01 8.98691E-01 + 8.13471E-01 8.63540E-01 9.05363E-01 + 8.14299E-01 8.56200E-01 9.02404E-01 + 8.08219E-01 8.60583E-01 8.92392E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.16978E-02 1.18599E-02 1.19901E-02 + 1.19212E-02 1.21136E-02 1.22549E-02 + 1.21355E-02 1.23546E-02 1.25094E-02 + 1.19143E-02 1.20839E-02 1.22194E-02 + 1.21353E-02 1.23271E-02 1.24682E-02 + 1.23469E-02 1.25738E-02 1.27328E-02 + 1.21437E-02 1.23296E-02 1.24524E-02 + 1.23636E-02 1.25579E-02 1.27163E-02 + 1.25728E-02 1.28061E-02 1.29687E-02 + * GROUP 2 + 1.92805E-01 1.93373E-01 1.93939E-01 + 2.01526E-01 2.03043E-01 2.04232E-01 + 2.10046E-01 2.12423E-01 2.14266E-01 + 1.93389E-01 1.94047E-01 1.94345E-01 + 2.01995E-01 2.03671E-01 2.04892E-01 + 2.10485E-01 2.13107E-01 2.15070E-01 + 1.94351E-01 1.94849E-01 1.95281E-01 + 2.02947E-01 2.04519E-01 2.05671E-01 + 2.11559E-01 2.13915E-01 2.15660E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.13170E-03 7.20080E-03 7.25699E-03 + 7.14243E-03 7.21073E-03 7.26963E-03 + 7.15058E-03 7.22697E-03 7.27935E-03 + 7.13458E-03 7.20461E-03 7.25346E-03 + 7.14511E-03 7.21514E-03 7.26384E-03 + 7.15204E-03 7.22882E-03 7.28591E-03 + 7.13138E-03 7.20778E-03 7.25837E-03 + 7.13884E-03 7.21738E-03 7.26864E-03 + 7.15071E-03 7.22832E-03 7.28177E-03 + * GROUP 2 + 2.90686E-01 2.90417E-01 2.90485E-01 + 2.90778E-01 2.90742E-01 2.90562E-01 + 2.90783E-01 2.90808E-01 2.90599E-01 + 2.91767E-01 2.91650E-01 2.91189E-01 + 2.91641E-01 2.91823E-01 2.91690E-01 + 2.91656E-01 2.92007E-01 2.91970E-01 + 2.93389E-01 2.93078E-01 2.92783E-01 + 2.93288E-01 2.93318E-01 2.93102E-01 + 2.93520E-01 2.93467E-01 2.93138E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 8.30750E-14 8.38727E-14 8.45203E-14 + 8.31974E-14 8.39837E-14 8.46673E-14 + 8.32919E-14 8.41710E-14 8.47744E-14 + 8.31050E-14 8.39110E-14 8.44769E-14 + 8.32247E-14 8.40337E-14 8.45959E-14 + 8.33045E-14 8.41876E-14 8.48440E-14 + 8.30649E-14 8.39430E-14 8.45282E-14 + 8.31505E-14 8.40542E-14 8.46438E-14 + 8.32831E-14 8.41786E-14 8.47908E-14 + * GROUP 2 + 3.39281E-12 3.38946E-12 3.39005E-12 + 3.39401E-12 3.39336E-12 3.39108E-12 + 3.39416E-12 3.39426E-12 3.39165E-12 + 3.40542E-12 3.40388E-12 3.39829E-12 + 3.40408E-12 3.40602E-12 3.40427E-12 + 3.40438E-12 3.40830E-12 3.40768E-12 + 3.42439E-12 3.42058E-12 3.41693E-12 + 3.42332E-12 3.42349E-12 3.42081E-12 + 3.42617E-12 3.42536E-12 3.42135E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79568E-01 5.03505E-01 5.22453E-01 + 4.80516E-01 5.04598E-01 5.23555E-01 + 4.81256E-01 5.05484E-01 5.24635E-01 + 4.79932E-01 5.03860E-01 5.22726E-01 + 4.80786E-01 5.04780E-01 5.23833E-01 + 4.81516E-01 5.05747E-01 5.24814E-01 + 4.80225E-01 5.04148E-01 5.22984E-01 + 4.81047E-01 5.05075E-01 5.24033E-01 + 4.81805E-01 5.05942E-01 5.25046E-01 + * GROUP 1 -> 2 + 1.28097E-02 1.40528E-02 1.50417E-02 + 1.28086E-02 1.40621E-02 1.50611E-02 + 1.28015E-02 1.40656E-02 1.50741E-02 + 1.27167E-02 1.39579E-02 1.49492E-02 + 1.27131E-02 1.39688E-02 1.49693E-02 + 1.27120E-02 1.39654E-02 1.49626E-02 + 1.26170E-02 1.38488E-02 1.48377E-02 + 1.26145E-02 1.38655E-02 1.48472E-02 + 1.26073E-02 1.38489E-02 1.48508E-02 + * GROUP 2 -> 1 + 3.19496E-03 3.02069E-03 2.86551E-03 + 3.31909E-03 3.15722E-03 2.96631E-03 + 3.41429E-03 3.24825E-03 3.09155E-03 + 3.54378E-03 3.35578E-03 3.17059E-03 + 3.68257E-03 3.50537E-03 3.30736E-03 + 3.81065E-03 3.62613E-03 3.44934E-03 + 3.96822E-03 3.73203E-03 3.57132E-03 + 4.10619E-03 3.90568E-03 3.69096E-03 + 4.25705E-03 4.03916E-03 3.85680E-03 + * GROUP 2 -> 2 + 1.16230E+00 1.25330E+00 1.32778E+00 + 1.15547E+00 1.24581E+00 1.31904E+00 + 1.14959E+00 1.23879E+00 1.31037E+00 + 1.16157E+00 1.25343E+00 1.32731E+00 + 1.15505E+00 1.24548E+00 1.31852E+00 + 1.14914E+00 1.23835E+00 1.31033E+00 + 1.16146E+00 1.25326E+00 1.32694E+00 + 1.15543E+00 1.24536E+00 1.31880E+00 + 1.14876E+00 1.23823E+00 1.30979E+00 + * + * ADF Table + * + * GROUP 1 + 9.93044E-01 9.91643E-01 9.90848E-01 + 9.91834E-01 9.91024E-01 9.89925E-01 + 9.91884E-01 9.91507E-01 9.88966E-01 + 9.91936E-01 9.91727E-01 9.90955E-01 + 9.91736E-01 9.91321E-01 9.90759E-01 + 9.91415E-01 9.90648E-01 9.88893E-01 + 9.92099E-01 9.91418E-01 9.91041E-01 + 9.91846E-01 9.90862E-01 9.91019E-01 + 9.91984E-01 9.89871E-01 9.89780E-01 + * GROUP 2 + 1.21282E+00 1.21835E+00 1.21736E+00 + 1.20870E+00 1.21271E+00 1.21255E+00 + 1.20340E+00 1.20622E+00 1.20710E+00 + 1.21354E+00 1.21706E+00 1.22287E+00 + 1.21277E+00 1.21374E+00 1.21143E+00 + 1.20751E+00 1.20721E+00 1.20892E+00 + 1.21410E+00 1.21753E+00 1.21905E+00 + 1.20950E+00 1.21060E+00 1.21568E+00 + 1.20472E+00 1.21144E+00 1.20428E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.10875E-08 2.28201E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33621E-02 3.08394E-02 1.16591E-01 3.05515E-01 8.78673E-01 2.91995E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.77439E-05 6.41825E-04 5.38152E-04 1.19937E-03 6.99207E-04 2.49857E-04 + * + * -------------------------------------------------------- + * BURNUP 20.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.21730E-01 2.29355E-01 2.35447E-01 + 2.21975E-01 2.29474E-01 2.35427E-01 + 2.21939E-01 2.29369E-01 2.35234E-01 + 2.21763E-01 2.29190E-01 2.35271E-01 + 2.21661E-01 2.29378E-01 2.35409E-01 + 2.21808E-01 2.29368E-01 2.35357E-01 + 2.21560E-01 2.29124E-01 2.35324E-01 + 2.21675E-01 2.29159E-01 2.35187E-01 + 2.21819E-01 2.29198E-01 2.35193E-01 + * GROUP 2 + 8.16461E-01 8.67855E-01 9.01994E-01 + 8.09907E-01 8.60716E-01 8.97599E-01 + 8.07431E-01 8.61855E-01 8.97114E-01 + 8.11556E-01 8.65460E-01 9.05959E-01 + 8.12009E-01 8.63539E-01 8.90488E-01 + 8.10602E-01 8.59949E-01 8.96941E-01 + 8.11136E-01 8.65691E-01 9.06715E-01 + 8.13653E-01 8.60080E-01 9.02251E-01 + 8.10188E-01 8.60316E-01 8.94661E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.17369E-02 1.19070E-02 1.20397E-02 + 1.19662E-02 1.21616E-02 1.23080E-02 + 1.21849E-02 1.24045E-02 1.25562E-02 + 1.19647E-02 1.21320E-02 1.22741E-02 + 1.21852E-02 1.23829E-02 1.25316E-02 + 1.23961E-02 1.26251E-02 1.27797E-02 + 1.21892E-02 1.23680E-02 1.25057E-02 + 1.23997E-02 1.26128E-02 1.27684E-02 + 1.26260E-02 1.28480E-02 1.30257E-02 + * GROUP 2 + 1.86608E-01 1.87312E-01 1.87647E-01 + 1.95418E-01 1.96857E-01 1.98084E-01 + 2.04069E-01 2.06399E-01 2.08221E-01 + 1.87218E-01 1.87899E-01 1.88129E-01 + 1.95952E-01 1.97457E-01 1.98649E-01 + 2.04589E-01 2.06852E-01 2.08699E-01 + 1.88017E-01 1.88753E-01 1.88988E-01 + 1.96910E-01 1.98277E-01 1.99436E-01 + 2.05291E-01 2.07650E-01 2.09583E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.99821E-03 7.06543E-03 7.11951E-03 + 7.00524E-03 7.07537E-03 7.13067E-03 + 7.01715E-03 7.08867E-03 7.14347E-03 + 6.99742E-03 7.06642E-03 7.11956E-03 + 7.01175E-03 7.08494E-03 7.13191E-03 + 7.01879E-03 7.09734E-03 7.14310E-03 + 6.99625E-03 7.06320E-03 7.11643E-03 + 7.00743E-03 7.08024E-03 7.13786E-03 + 7.01575E-03 7.08581E-03 7.13973E-03 + * GROUP 2 + 2.81191E-01 2.81236E-01 2.80867E-01 + 2.81412E-01 2.81246E-01 2.81139E-01 + 2.81615E-01 2.81587E-01 2.81325E-01 + 2.82259E-01 2.82314E-01 2.81707E-01 + 2.82386E-01 2.82362E-01 2.82159E-01 + 2.82642E-01 2.82445E-01 2.82196E-01 + 2.83671E-01 2.83776E-01 2.83227E-01 + 2.84049E-01 2.83809E-01 2.83577E-01 + 2.83901E-01 2.83893E-01 2.83789E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 8.15049E-14 8.22767E-14 8.28997E-14 + 8.15902E-14 8.23914E-14 8.30285E-14 + 8.17198E-14 8.25437E-14 8.31735E-14 + 8.14901E-14 8.22869E-14 8.28983E-14 + 8.16535E-14 8.24954E-14 8.30417E-14 + 8.17364E-14 8.26407E-14 8.31623E-14 + 8.14737E-14 8.22468E-14 8.28581E-14 + 8.15993E-14 8.24409E-14 8.30992E-14 + 8.16972E-14 8.25014E-14 8.31209E-14 + * GROUP 2 + 3.28099E-12 3.28131E-12 3.27682E-12 + 3.28371E-12 3.28155E-12 3.28014E-12 + 3.28618E-12 3.28567E-12 3.28244E-12 + 3.29347E-12 3.29392E-12 3.28665E-12 + 3.29508E-12 3.29460E-12 3.29206E-12 + 3.29818E-12 3.29570E-12 3.29263E-12 + 3.30999E-12 3.31102E-12 3.30442E-12 + 3.31452E-12 3.31152E-12 3.30865E-12 + 3.31291E-12 3.31263E-12 3.31126E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.80062E-01 5.03974E-01 5.22957E-01 + 4.80991E-01 5.05034E-01 5.24080E-01 + 4.81720E-01 5.05874E-01 5.25103E-01 + 4.80375E-01 5.04300E-01 5.23246E-01 + 4.81185E-01 5.05317E-01 5.24434E-01 + 4.81937E-01 5.06197E-01 5.25275E-01 + 4.80668E-01 5.04586E-01 5.23553E-01 + 4.81455E-01 5.05662E-01 5.24582E-01 + 4.82260E-01 5.06432E-01 5.25627E-01 + * GROUP 1 -> 2 + 1.28049E-02 1.40451E-02 1.50275E-02 + 1.28068E-02 1.40577E-02 1.50586E-02 + 1.27942E-02 1.40557E-02 1.50771E-02 + 1.27148E-02 1.39482E-02 1.49315E-02 + 1.27043E-02 1.39641E-02 1.49594E-02 + 1.26970E-02 1.39529E-02 1.49627E-02 + 1.26108E-02 1.38420E-02 1.48269E-02 + 1.26171E-02 1.38664E-02 1.48453E-02 + 1.26034E-02 1.38463E-02 1.48505E-02 + * GROUP 2 -> 1 + 3.10319E-03 2.92171E-03 2.76731E-03 + 3.21803E-03 3.06285E-03 2.90297E-03 + 3.34655E-03 3.16623E-03 3.05027E-03 + 3.44160E-03 3.24613E-03 3.08101E-03 + 3.58569E-03 3.40494E-03 3.25283E-03 + 3.73238E-03 3.52150E-03 3.36929E-03 + 3.83798E-03 3.63734E-03 3.45381E-03 + 4.00777E-03 3.80736E-03 3.58688E-03 + 4.14937E-03 3.89353E-03 3.74375E-03 + * GROUP 2 -> 2 + 1.16310E+00 1.25445E+00 1.32895E+00 + 1.15605E+00 1.24642E+00 1.31996E+00 + 1.15017E+00 1.23906E+00 1.31128E+00 + 1.16248E+00 1.25396E+00 1.32836E+00 + 1.15573E+00 1.24636E+00 1.31958E+00 + 1.14982E+00 1.23900E+00 1.31155E+00 + 1.16218E+00 1.25378E+00 1.32759E+00 + 1.15563E+00 1.24586E+00 1.31900E+00 + 1.14934E+00 1.23856E+00 1.31073E+00 + * + * ADF Table + * + * GROUP 1 + 9.91762E-01 9.90265E-01 9.90777E-01 + 9.90739E-01 9.90537E-01 9.89981E-01 + 9.90953E-01 9.90326E-01 9.88221E-01 + 9.91530E-01 9.90190E-01 9.90591E-01 + 9.91441E-01 9.90621E-01 9.89780E-01 + 9.90302E-01 9.89138E-01 9.88784E-01 + 9.91866E-01 9.90758E-01 9.90846E-01 + 9.91751E-01 9.90265E-01 9.89682E-01 + 9.91501E-01 9.89257E-01 9.89015E-01 + * GROUP 2 + 1.19540E+00 1.20238E+00 1.20392E+00 + 1.19359E+00 1.19798E+00 1.19774E+00 + 1.19788E+00 1.19170E+00 1.19242E+00 + 1.19647E+00 1.19845E+00 1.20397E+00 + 1.19423E+00 1.19562E+00 1.20056E+00 + 1.18822E+00 1.19137E+00 1.19225E+00 + 1.19979E+00 1.19797E+00 1.20421E+00 + 1.19519E+00 1.19735E+00 1.19944E+00 + 1.19638E+00 1.19394E+00 1.19466E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.10821E-08 2.29295E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33726E-02 3.08247E-02 1.16669E-01 3.06054E-01 8.78391E-01 2.92132E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.04929E-05 6.79514E-04 5.79291E-04 1.23388E-03 6.75713E-04 2.41248E-04 + * + * -------------------------------------------------------- + * BURNUP 22.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.21897E-01 2.29518E-01 2.35329E-01 + 2.22242E-01 2.29719E-01 2.35521E-01 + 2.22031E-01 2.29669E-01 2.35487E-01 + 2.22056E-01 2.29371E-01 2.35488E-01 + 2.21828E-01 2.29497E-01 2.35516E-01 + 2.21943E-01 2.29486E-01 2.35439E-01 + 2.21942E-01 2.29427E-01 2.35401E-01 + 2.21771E-01 2.29306E-01 2.35370E-01 + 2.21758E-01 2.29306E-01 2.35535E-01 + * GROUP 2 + 8.17872E-01 8.61782E-01 9.01568E-01 + 8.11297E-01 8.58858E-01 8.98229E-01 + 8.07293E-01 8.53876E-01 8.98213E-01 + 8.11775E-01 8.66088E-01 9.01240E-01 + 8.08305E-01 8.58624E-01 9.00491E-01 + 8.03255E-01 8.55298E-01 8.98786E-01 + 8.11137E-01 8.65134E-01 9.05317E-01 + 8.12088E-01 8.57632E-01 9.00438E-01 + 8.07558E-01 8.52422E-01 8.97957E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.17924E-02 1.19653E-02 1.20999E-02 + 1.20245E-02 1.22234E-02 1.23542E-02 + 1.22392E-02 1.24588E-02 1.26155E-02 + 1.20110E-02 1.21880E-02 1.23101E-02 + 1.22321E-02 1.24328E-02 1.25722E-02 + 1.24514E-02 1.26705E-02 1.28388E-02 + 1.22440E-02 1.24259E-02 1.25558E-02 + 1.24673E-02 1.26684E-02 1.28261E-02 + 1.26793E-02 1.29068E-02 1.30788E-02 + * GROUP 2 + 1.80988E-01 1.81584E-01 1.81977E-01 + 1.89717E-01 1.91240E-01 1.92322E-01 + 1.98402E-01 2.00653E-01 2.02367E-01 + 1.81571E-01 1.82024E-01 1.82328E-01 + 1.90127E-01 1.91645E-01 1.92786E-01 + 1.98851E-01 2.01091E-01 2.03076E-01 + 1.82245E-01 1.82857E-01 1.83146E-01 + 1.90954E-01 1.92456E-01 1.93489E-01 + 1.99615E-01 2.01905E-01 2.03787E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.86823E-03 6.93389E-03 6.98825E-03 + 6.88073E-03 6.95428E-03 6.99915E-03 + 6.88662E-03 6.96512E-03 7.01497E-03 + 6.86289E-03 6.93701E-03 6.98117E-03 + 6.87705E-03 6.94669E-03 6.99717E-03 + 6.88849E-03 6.95789E-03 7.01010E-03 + 6.85948E-03 6.93296E-03 6.97716E-03 + 6.87781E-03 6.94779E-03 6.99927E-03 + 6.88185E-03 6.95516E-03 7.00669E-03 + * GROUP 2 + 2.72327E-01 2.72233E-01 2.71937E-01 + 2.72386E-01 2.72407E-01 2.72063E-01 + 2.72636E-01 2.72447E-01 2.72125E-01 + 2.73357E-01 2.73051E-01 2.72581E-01 + 2.73150E-01 2.73177E-01 2.72928E-01 + 2.73508E-01 2.73324E-01 2.73373E-01 + 2.74595E-01 2.74529E-01 2.74062E-01 + 2.74623E-01 2.74616E-01 2.74151E-01 + 2.74896E-01 2.74810E-01 2.74622E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.99726E-14 8.07346E-14 8.13613E-14 + 8.01163E-14 8.09654E-14 8.14831E-14 + 8.01812E-14 8.10857E-14 8.16580E-14 + 7.99105E-14 8.07662E-14 8.12711E-14 + 8.00694E-14 8.08744E-14 8.14593E-14 + 8.01998E-14 8.09991E-14 8.16002E-14 + 7.98697E-14 8.07143E-14 8.12210E-14 + 8.00731E-14 8.08817E-14 8.14741E-14 + 8.01163E-14 8.09616E-14 8.15538E-14 + * GROUP 2 + 3.17657E-12 3.17528E-12 3.17164E-12 + 3.17740E-12 3.17744E-12 3.17327E-12 + 3.18044E-12 3.17805E-12 3.17412E-12 + 3.18862E-12 3.18484E-12 3.17919E-12 + 3.18634E-12 3.18645E-12 3.18338E-12 + 3.19063E-12 3.18831E-12 3.18872E-12 + 3.20311E-12 3.20213E-12 3.19648E-12 + 3.20357E-12 3.20327E-12 3.19768E-12 + 3.20687E-12 3.20568E-12 3.20332E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.80567E-01 5.04566E-01 5.23430E-01 + 4.81492E-01 5.05619E-01 5.24624E-01 + 4.82265E-01 5.06491E-01 5.25522E-01 + 4.80842E-01 5.04817E-01 5.23758E-01 + 4.81692E-01 5.05789E-01 5.24878E-01 + 4.82503E-01 5.06664E-01 5.25897E-01 + 4.81263E-01 5.05079E-01 5.24049E-01 + 4.82030E-01 5.06065E-01 5.25175E-01 + 4.82838E-01 5.06988E-01 5.26188E-01 + * GROUP 1 -> 2 + 1.27980E-02 1.40332E-02 1.50195E-02 + 1.28004E-02 1.40621E-02 1.50572E-02 + 1.27987E-02 1.40564E-02 1.50593E-02 + 1.27094E-02 1.39478E-02 1.49323E-02 + 1.27104E-02 1.39606E-02 1.49687E-02 + 1.27011E-02 1.39610E-02 1.49646E-02 + 1.26057E-02 1.38387E-02 1.48207E-02 + 1.26073E-02 1.38439E-02 1.48481E-02 + 1.25956E-02 1.38532E-02 1.48544E-02 + * GROUP 2 -> 1 + 3.02189E-03 2.82368E-03 2.70209E-03 + 3.12637E-03 2.98093E-03 2.81240E-03 + 3.24982E-03 3.09057E-03 2.92583E-03 + 3.37308E-03 3.17300E-03 2.98748E-03 + 3.47741E-03 3.32073E-03 3.13213E-03 + 3.64077E-03 3.43810E-03 3.29613E-03 + 3.76004E-03 3.56183E-03 3.33631E-03 + 3.87350E-03 3.68876E-03 3.50131E-03 + 4.03977E-03 3.81871E-03 3.68196E-03 + * GROUP 2 -> 2 + 1.16352E+00 1.25489E+00 1.32931E+00 + 1.15720E+00 1.24722E+00 1.32071E+00 + 1.15094E+00 1.23985E+00 1.31134E+00 + 1.16390E+00 1.25457E+00 1.32923E+00 + 1.15670E+00 1.24680E+00 1.31991E+00 + 1.15033E+00 1.23921E+00 1.31137E+00 + 1.16347E+00 1.25417E+00 1.32906E+00 + 1.15621E+00 1.24621E+00 1.32044E+00 + 1.14986E+00 1.23908E+00 1.31120E+00 + * + * ADF Table + * + * GROUP 1 + 9.90584E-01 9.89969E-01 9.89379E-01 + 9.90888E-01 9.89351E-01 9.87912E-01 + 9.90711E-01 9.89326E-01 9.88669E-01 + 9.91452E-01 9.90797E-01 9.88952E-01 + 9.91182E-01 9.89219E-01 9.89104E-01 + 9.90645E-01 9.89376E-01 9.88351E-01 + 9.91350E-01 9.90323E-01 9.88557E-01 + 9.91039E-01 9.89506E-01 9.89380E-01 + 9.89880E-01 9.89169E-01 9.88230E-01 + * GROUP 2 + 1.18850E+00 1.18652E+00 1.18343E+00 + 1.18397E+00 1.18344E+00 1.18136E+00 + 1.18188E+00 1.17897E+00 1.17739E+00 + 1.18661E+00 1.18450E+00 1.18684E+00 + 1.18008E+00 1.17979E+00 1.18461E+00 + 1.17740E+00 1.17884E+00 1.17861E+00 + 1.18630E+00 1.18814E+00 1.18984E+00 + 1.18247E+00 1.18638E+00 1.18268E+00 + 1.18020E+00 1.18002E+00 1.17850E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.11168E-08 2.30347E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33745E-02 3.08184E-02 1.16963E-01 3.06165E-01 8.78297E-01 2.92517E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.31617E-05 6.75282E-04 5.52649E-04 1.27608E-03 6.97608E-04 2.47229E-04 + * + * -------------------------------------------------------- + * BURNUP 32.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.22840E-01 2.30093E-01 2.35976E-01 + 2.22553E-01 2.30166E-01 2.36151E-01 + 2.22647E-01 2.30217E-01 2.36006E-01 + 2.22543E-01 2.30038E-01 2.36090E-01 + 2.22424E-01 2.30159E-01 2.35903E-01 + 2.22533E-01 2.29993E-01 2.36216E-01 + 2.22431E-01 2.29937E-01 2.36041E-01 + 2.22373E-01 2.29977E-01 2.36166E-01 + 2.22410E-01 2.30019E-01 2.35989E-01 + * GROUP 2 + 8.08354E-01 8.57229E-01 9.02660E-01 + 8.07245E-01 8.55753E-01 8.94983E-01 + 8.06441E-01 8.52368E-01 8.90602E-01 + 8.14178E-01 8.60929E-01 8.98773E-01 + 8.06786E-01 8.56702E-01 8.97449E-01 + 8.04810E-01 8.50759E-01 8.96870E-01 + 8.10578E-01 8.56352E-01 8.98643E-01 + 8.06384E-01 8.56686E-01 8.97051E-01 + 8.03563E-01 8.50863E-01 8.92064E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.20194E-02 1.21957E-02 1.23240E-02 + 1.22512E-02 1.24516E-02 1.25924E-02 + 1.24722E-02 1.26971E-02 1.28642E-02 + 1.22231E-02 1.24012E-02 1.25354E-02 + 1.24535E-02 1.26735E-02 1.28098E-02 + 1.26810E-02 1.29176E-02 1.30837E-02 + 1.24485E-02 1.26520E-02 1.27808E-02 + 1.26800E-02 1.28965E-02 1.30355E-02 + 1.29049E-02 1.31355E-02 1.33208E-02 + * GROUP 2 + 1.61666E-01 1.62110E-01 1.62417E-01 + 1.70565E-01 1.71983E-01 1.72948E-01 + 1.79250E-01 1.81450E-01 1.83140E-01 + 1.62270E-01 1.62783E-01 1.62911E-01 + 1.70985E-01 1.72420E-01 1.73299E-01 + 1.79671E-01 1.81790E-01 1.83677E-01 + 1.62809E-01 1.63299E-01 1.63614E-01 + 1.71665E-01 1.72982E-01 1.74078E-01 + 1.80142E-01 1.82574E-01 1.84148E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.36726E-03 6.43065E-03 6.48330E-03 + 6.38127E-03 6.44859E-03 6.49461E-03 + 6.39012E-03 6.45794E-03 6.50519E-03 + 6.36321E-03 6.42815E-03 6.47306E-03 + 6.37446E-03 6.44580E-03 6.48750E-03 + 6.38592E-03 6.45203E-03 6.49757E-03 + 6.34804E-03 6.41460E-03 6.46355E-03 + 6.36182E-03 6.43059E-03 6.47880E-03 + 6.37252E-03 6.43875E-03 6.49383E-03 + * GROUP 2 + 2.38919E-01 2.38589E-01 2.38184E-01 + 2.39153E-01 2.39004E-01 2.38484E-01 + 2.39302E-01 2.39119E-01 2.38670E-01 + 2.40007E-01 2.39794E-01 2.39087E-01 + 2.39938E-01 2.39853E-01 2.39187E-01 + 2.40151E-01 2.39796E-01 2.39667E-01 + 2.41031E-01 2.40789E-01 2.40388E-01 + 2.41243E-01 2.40925E-01 2.40602E-01 + 2.41102E-01 2.41262E-01 2.40636E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.40829E-14 7.48102E-14 7.54194E-14 + 7.42396E-14 7.50127E-14 7.55431E-14 + 7.43392E-14 7.51183E-14 7.56577E-14 + 7.40318E-14 7.47784E-14 7.52961E-14 + 7.41567E-14 7.49789E-14 7.54552E-14 + 7.42823E-14 7.50451E-14 7.55702E-14 + 7.38554E-14 7.46201E-14 7.51835E-14 + 7.40097E-14 7.48002E-14 7.53526E-14 + 7.41280E-14 7.48874E-14 7.55206E-14 + * GROUP 2 + 2.78327E-12 2.77922E-12 2.77431E-12 + 2.78615E-12 2.78420E-12 2.77795E-12 + 2.78802E-12 2.78569E-12 2.78028E-12 + 2.79598E-12 2.79328E-12 2.78485E-12 + 2.79532E-12 2.79413E-12 2.78619E-12 + 2.79794E-12 2.79362E-12 2.79195E-12 + 2.80797E-12 2.80493E-12 2.80007E-12 + 2.81058E-12 2.80666E-12 2.80273E-12 + 2.80907E-12 2.81075E-12 2.80327E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.82592E-01 5.06550E-01 5.25401E-01 + 4.83506E-01 5.07638E-01 5.26764E-01 + 4.84358E-01 5.08618E-01 5.27833E-01 + 4.82855E-01 5.06762E-01 5.25806E-01 + 4.83721E-01 5.07891E-01 5.26949E-01 + 4.84544E-01 5.08833E-01 5.28052E-01 + 4.83134E-01 5.07191E-01 5.26140E-01 + 4.84028E-01 5.08208E-01 5.27235E-01 + 4.84875E-01 5.08998E-01 5.28354E-01 + * GROUP 1 -> 2 + 1.27930E-02 1.40342E-02 1.50229E-02 + 1.28072E-02 1.40696E-02 1.50738E-02 + 1.28066E-02 1.40884E-02 1.50913E-02 + 1.26968E-02 1.39433E-02 1.49395E-02 + 1.27178E-02 1.39585E-02 1.49835E-02 + 1.27112E-02 1.39784E-02 1.49917E-02 + 1.26038E-02 1.38395E-02 1.48309E-02 + 1.26087E-02 1.38678E-02 1.48666E-02 + 1.26125E-02 1.38718E-02 1.48866E-02 + * GROUP 2 -> 1 + 2.69996E-03 2.55416E-03 2.41180E-03 + 2.84299E-03 2.70173E-03 2.54699E-03 + 2.96883E-03 2.81734E-03 2.67336E-03 + 3.01109E-03 2.83580E-03 2.68116E-03 + 3.15753E-03 2.97842E-03 2.84492E-03 + 3.29607E-03 3.13481E-03 2.98174E-03 + 3.37387E-03 3.19258E-03 3.02261E-03 + 3.52201E-03 3.33903E-03 3.16621E-03 + 3.68280E-03 3.50667E-03 3.31370E-03 + * GROUP 2 -> 2 + 1.16655E+00 1.25765E+00 1.33247E+00 + 1.15855E+00 1.24907E+00 1.32225E+00 + 1.15305E+00 1.24126E+00 1.31325E+00 + 1.16581E+00 1.25728E+00 1.33168E+00 + 1.15939E+00 1.24861E+00 1.32232E+00 + 1.15200E+00 1.24102E+00 1.31322E+00 + 1.16573E+00 1.25681E+00 1.33097E+00 + 1.15834E+00 1.24855E+00 1.32196E+00 + 1.15163E+00 1.24050E+00 1.31216E+00 + * + * ADF Table + * + * GROUP 1 + 9.90033E-01 9.89423E-01 9.88533E-01 + 9.90170E-01 9.89419E-01 9.87827E-01 + 9.90558E-01 9.88675E-01 9.87510E-01 + 9.90038E-01 9.89698E-01 9.87500E-01 + 9.91524E-01 9.88416E-01 9.88101E-01 + 9.90220E-01 9.89114E-01 9.88379E-01 + 9.91056E-01 9.89573E-01 9.88234E-01 + 9.90504E-01 9.88439E-01 9.88056E-01 + 9.89715E-01 9.88753E-01 9.87849E-01 + * GROUP 2 + 1.14413E+00 1.14240E+00 1.14323E+00 + 1.14323E+00 1.13925E+00 1.14233E+00 + 1.14119E+00 1.14244E+00 1.13517E+00 + 1.14445E+00 1.14318E+00 1.14359E+00 + 1.13841E+00 1.13911E+00 1.14099E+00 + 1.14150E+00 1.13970E+00 1.14171E+00 + 1.14143E+00 1.14581E+00 1.14379E+00 + 1.14123E+00 1.13899E+00 1.14076E+00 + 1.13503E+00 1.14029E+00 1.13842E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.12280E-08 2.33931E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33902E-02 3.07177E-02 1.16900E-01 3.07156E-01 8.79623E-01 2.94095E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.61233E-05 7.44488E-04 6.02280E-04 1.30236E-03 7.47285E-04 2.69857E-04 + * + * -------------------------------------------------------- + * BURNUP 35.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.22678E-01 2.30276E-01 2.36100E-01 + 2.22583E-01 2.30362E-01 2.36304E-01 + 2.22689E-01 2.30247E-01 2.36326E-01 + 2.22687E-01 2.30099E-01 2.36095E-01 + 2.22729E-01 2.30327E-01 2.36260E-01 + 2.22769E-01 2.30540E-01 2.36373E-01 + 2.22666E-01 2.29995E-01 2.36043E-01 + 2.22563E-01 2.30331E-01 2.36058E-01 + 2.22505E-01 2.30101E-01 2.36059E-01 + * GROUP 2 + 8.08788E-01 8.57511E-01 8.99994E-01 + 8.02067E-01 8.55918E-01 8.96678E-01 + 8.04841E-01 8.48915E-01 8.88376E-01 + 8.11806E-01 8.53319E-01 8.96798E-01 + 8.04544E-01 8.55289E-01 8.95002E-01 + 8.02839E-01 8.51910E-01 8.89206E-01 + 8.08137E-01 8.60436E-01 8.99339E-01 + 8.05764E-01 8.59731E-01 8.96503E-01 + 7.99995E-01 8.55285E-01 8.92664E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.20642E-02 1.22498E-02 1.23761E-02 + 1.23077E-02 1.25032E-02 1.26508E-02 + 1.25345E-02 1.27522E-02 1.29195E-02 + 1.22775E-02 1.24650E-02 1.25947E-02 + 1.25056E-02 1.27183E-02 1.28767E-02 + 1.27295E-02 1.29670E-02 1.31447E-02 + 1.25018E-02 1.27031E-02 1.28310E-02 + 1.27411E-02 1.29620E-02 1.31166E-02 + 1.29593E-02 1.31996E-02 1.33818E-02 + * GROUP 2 + 1.57796E-01 1.58240E-01 1.58462E-01 + 1.66519E-01 1.67948E-01 1.69007E-01 + 1.75267E-01 1.77469E-01 1.79176E-01 + 1.58209E-01 1.58572E-01 1.58911E-01 + 1.66912E-01 1.68372E-01 1.69368E-01 + 1.75699E-01 1.77838E-01 1.79470E-01 + 1.58854E-01 1.59184E-01 1.59489E-01 + 1.67603E-01 1.68928E-01 1.69984E-01 + 1.76194E-01 1.78322E-01 1.80091E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.24989E-03 6.31804E-03 6.35918E-03 + 6.26026E-03 6.32299E-03 6.37250E-03 + 6.27386E-03 6.33808E-03 6.39118E-03 + 6.24308E-03 6.30280E-03 6.35154E-03 + 6.25018E-03 6.31469E-03 6.36605E-03 + 6.26164E-03 6.32743E-03 6.38245E-03 + 6.23242E-03 6.29707E-03 6.34353E-03 + 6.24462E-03 6.30680E-03 6.35711E-03 + 6.25293E-03 6.32240E-03 6.36779E-03 + * GROUP 2 + 2.31617E-01 2.31305E-01 2.30720E-01 + 2.31545E-01 2.31409E-01 2.31058E-01 + 2.31825E-01 2.31579E-01 2.31161E-01 + 2.32396E-01 2.31947E-01 2.31583E-01 + 2.32305E-01 2.32238E-01 2.31791E-01 + 2.32660E-01 2.32314E-01 2.31782E-01 + 2.33631E-01 2.33102E-01 2.32665E-01 + 2.33604E-01 2.33299E-01 2.32935E-01 + 2.33651E-01 2.33292E-01 2.32980E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.27018E-14 7.34853E-14 7.39580E-14 + 7.28204E-14 7.35371E-14 7.41080E-14 + 7.29727E-14 7.37108E-14 7.43161E-14 + 7.26209E-14 7.33076E-14 7.38687E-14 + 7.26968E-14 7.34382E-14 7.40291E-14 + 7.28264E-14 7.35785E-14 7.42122E-14 + 7.24933E-14 7.32357E-14 7.37708E-14 + 7.26302E-14 7.33463E-14 7.39228E-14 + 7.27215E-14 7.35204E-14 7.40385E-14 + * GROUP 2 + 2.69731E-12 2.69346E-12 2.68645E-12 + 2.69661E-12 2.69482E-12 2.69057E-12 + 2.70003E-12 2.69696E-12 2.69192E-12 + 2.70642E-12 2.70098E-12 2.69655E-12 + 2.70550E-12 2.70452E-12 2.69913E-12 + 2.70979E-12 2.70555E-12 2.69919E-12 + 2.72087E-12 2.71448E-12 2.70919E-12 + 2.72069E-12 2.71693E-12 2.71251E-12 + 2.72138E-12 2.71698E-12 2.71319E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.83032E-01 5.07026E-01 5.25994E-01 + 4.83972E-01 5.08148E-01 5.27271E-01 + 4.84807E-01 5.09183E-01 5.28346E-01 + 4.83252E-01 5.07335E-01 5.26337E-01 + 4.84316E-01 5.08402E-01 5.27543E-01 + 4.85075E-01 5.09363E-01 5.28607E-01 + 4.83650E-01 5.07674E-01 5.26582E-01 + 4.84559E-01 5.08744E-01 5.27792E-01 + 4.85383E-01 5.09532E-01 5.28866E-01 + * GROUP 1 -> 2 + 1.28065E-02 1.40479E-02 1.50427E-02 + 1.28183E-02 1.40819E-02 1.50822E-02 + 1.28206E-02 1.40972E-02 1.51140E-02 + 1.27043E-02 1.39496E-02 1.49469E-02 + 1.27330E-02 1.39814E-02 1.49852E-02 + 1.27288E-02 1.39918E-02 1.50142E-02 + 1.26099E-02 1.38478E-02 1.48343E-02 + 1.26195E-02 1.38685E-02 1.48693E-02 + 1.26246E-02 1.38730E-02 1.48833E-02 + * GROUP 2 -> 1 + 2.65957E-03 2.49453E-03 2.34923E-03 + 2.77218E-03 2.63786E-03 2.48936E-03 + 2.89087E-03 2.75610E-03 2.64314E-03 + 2.93489E-03 2.78323E-03 2.63374E-03 + 3.06435E-03 2.91589E-03 2.78479E-03 + 3.21068E-03 3.06219E-03 2.92123E-03 + 3.30150E-03 3.10801E-03 2.94205E-03 + 3.43832E-03 3.27935E-03 3.10056E-03 + 3.60464E-03 3.42847E-03 3.24827E-03 + * GROUP 2 -> 2 + 1.16667E+00 1.25831E+00 1.33253E+00 + 1.15960E+00 1.24965E+00 1.32281E+00 + 1.15274E+00 1.24180E+00 1.31328E+00 + 1.16655E+00 1.25770E+00 1.33156E+00 + 1.15956E+00 1.24960E+00 1.32265E+00 + 1.15229E+00 1.24201E+00 1.31329E+00 + 1.16624E+00 1.25718E+00 1.33182E+00 + 1.15847E+00 1.24900E+00 1.32201E+00 + 1.15209E+00 1.24133E+00 1.31270E+00 + * + * ADF Table + * + * GROUP 1 + 9.90518E-01 9.89299E-01 9.88655E-01 + 9.90952E-01 9.88239E-01 9.89114E-01 + 9.90088E-01 9.89856E-01 9.87629E-01 + 9.91735E-01 9.89437E-01 9.87894E-01 + 9.90132E-01 9.90272E-01 9.88878E-01 + 9.90373E-01 9.88521E-01 9.88829E-01 + 9.90157E-01 9.90344E-01 9.89707E-01 + 9.90710E-01 9.89831E-01 9.87781E-01 + 9.89320E-01 9.89131E-01 9.87891E-01 + * GROUP 2 + 1.13318E+00 1.13521E+00 1.13458E+00 + 1.13116E+00 1.13279E+00 1.13427E+00 + 1.12821E+00 1.13041E+00 1.13022E+00 + 1.13589E+00 1.13660E+00 1.13504E+00 + 1.12910E+00 1.12932E+00 1.13376E+00 + 1.12860E+00 1.13133E+00 1.13058E+00 + 1.13534E+00 1.13554E+00 1.13490E+00 + 1.13133E+00 1.13443E+00 1.13112E+00 + 1.12764E+00 1.13093E+00 1.13340E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.12771E-08 2.34655E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.34092E-02 3.07007E-02 1.17225E-01 3.07113E-01 8.78412E-01 2.94187E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.43689E-05 7.47473E-04 5.72987E-04 1.38449E-03 7.88929E-04 2.66594E-04 + * + * -------------------------------------------------------- + * BURNUP 37.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.22945E-01 2.30657E-01 2.36564E-01 + 2.22810E-01 2.30567E-01 2.36316E-01 + 2.22908E-01 2.30459E-01 2.36276E-01 + 2.22616E-01 2.30324E-01 2.36413E-01 + 2.22617E-01 2.30340E-01 2.36448E-01 + 2.22836E-01 2.30383E-01 2.36143E-01 + 2.22671E-01 2.30419E-01 2.36212E-01 + 2.22532E-01 2.30088E-01 2.36013E-01 + 2.22753E-01 2.30494E-01 2.36091E-01 + * GROUP 2 + 8.08917E-01 8.58624E-01 9.01225E-01 + 8.04603E-01 8.57673E-01 8.96383E-01 + 8.02717E-01 8.52399E-01 8.88700E-01 + 8.08378E-01 8.59708E-01 8.97339E-01 + 8.05086E-01 8.54284E-01 8.96443E-01 + 8.00155E-01 8.48001E-01 8.85646E-01 + 8.10132E-01 8.60198E-01 9.02573E-01 + 8.05478E-01 8.54243E-01 8.93422E-01 + 8.01553E-01 8.54115E-01 8.91113E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.21211E-02 1.23064E-02 1.24214E-02 + 1.23484E-02 1.25551E-02 1.26992E-02 + 1.25862E-02 1.28143E-02 1.29744E-02 + 1.23378E-02 1.25218E-02 1.26537E-02 + 1.25739E-02 1.27773E-02 1.29318E-02 + 1.27907E-02 1.30268E-02 1.31897E-02 + 1.25638E-02 1.27465E-02 1.28891E-02 + 1.27890E-02 1.30121E-02 1.31643E-02 + 1.30145E-02 1.32544E-02 1.34308E-02 + * GROUP 2 + 1.53967E-01 1.54318E-01 1.54607E-01 + 1.62808E-01 1.64075E-01 1.65223E-01 + 1.71574E-01 1.73630E-01 1.75374E-01 + 1.54392E-01 1.54795E-01 1.54966E-01 + 1.63250E-01 1.64527E-01 1.65370E-01 + 1.71805E-01 1.73997E-01 1.75652E-01 + 1.54991E-01 1.55460E-01 1.55540E-01 + 1.63861E-01 1.65097E-01 1.66107E-01 + 1.72324E-01 1.74510E-01 1.76296E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.13606E-03 6.20186E-03 6.23785E-03 + 6.14158E-03 6.20362E-03 6.25232E-03 + 6.15765E-03 6.22315E-03 6.27025E-03 + 6.12719E-03 6.18900E-03 6.23429E-03 + 6.13445E-03 6.20151E-03 6.24690E-03 + 6.14557E-03 6.21486E-03 6.26280E-03 + 6.11682E-03 6.17811E-03 6.22717E-03 + 6.12646E-03 6.18934E-03 6.23682E-03 + 6.13674E-03 6.20628E-03 6.25393E-03 + * GROUP 2 + 2.24278E-01 2.23788E-01 2.23334E-01 + 2.24400E-01 2.24002E-01 2.23744E-01 + 2.24663E-01 2.24229E-01 2.23817E-01 + 2.25095E-01 2.24688E-01 2.24053E-01 + 2.25238E-01 2.24894E-01 2.24145E-01 + 2.25210E-01 2.24967E-01 2.24460E-01 + 2.26226E-01 2.25931E-01 2.25159E-01 + 2.26413E-01 2.25976E-01 2.25510E-01 + 2.26259E-01 2.26008E-01 2.25691E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.13634E-14 7.21193E-14 7.25326E-14 + 7.14222E-14 7.21370E-14 7.26936E-14 + 7.16025E-14 7.23524E-14 7.28983E-14 + 7.12555E-14 7.19693E-14 7.24911E-14 + 7.13400E-14 7.21026E-14 7.26301E-14 + 7.14609E-14 7.22529E-14 7.28035E-14 + 7.11332E-14 7.18424E-14 7.24026E-14 + 7.12381E-14 7.19596E-14 7.25072E-14 + 7.13550E-14 7.21513E-14 7.26956E-14 + * GROUP 2 + 2.61097E-12 2.60504E-12 2.59957E-12 + 2.61254E-12 2.60769E-12 2.60452E-12 + 2.61575E-12 2.61051E-12 2.60552E-12 + 2.62053E-12 2.61557E-12 2.60799E-12 + 2.62233E-12 2.61812E-12 2.60921E-12 + 2.62216E-12 2.61914E-12 2.61305E-12 + 2.63375E-12 2.63008E-12 2.62090E-12 + 2.63608E-12 2.63078E-12 2.62516E-12 + 2.63443E-12 2.63131E-12 2.62744E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.83499E-01 5.07578E-01 5.26538E-01 + 4.84416E-01 5.08673E-01 5.27756E-01 + 4.85321E-01 5.09634E-01 5.28812E-01 + 4.83820E-01 5.07860E-01 5.26879E-01 + 4.84802E-01 5.08897E-01 5.28093E-01 + 4.85603E-01 5.09890E-01 5.29106E-01 + 4.84064E-01 5.08171E-01 5.27120E-01 + 4.85004E-01 5.09254E-01 5.28281E-01 + 4.85790E-01 5.10221E-01 5.29336E-01 + * GROUP 1 -> 2 + 1.28062E-02 1.40596E-02 1.50554E-02 + 1.28271E-02 1.40913E-02 1.51017E-02 + 1.28259E-02 1.41022E-02 1.51258E-02 + 1.27111E-02 1.39638E-02 1.49612E-02 + 1.27381E-02 1.39892E-02 1.50017E-02 + 1.27356E-02 1.40076E-02 1.50222E-02 + 1.26130E-02 1.38601E-02 1.48488E-02 + 1.26392E-02 1.38899E-02 1.48878E-02 + 1.26311E-02 1.38983E-02 1.49003E-02 + * GROUP 2 -> 1 + 2.57448E-03 2.43933E-03 2.29877E-03 + 2.72827E-03 2.57862E-03 2.41806E-03 + 2.84619E-03 2.69440E-03 2.56638E-03 + 2.85986E-03 2.72287E-03 2.56960E-03 + 3.02130E-03 2.84851E-03 2.69645E-03 + 3.14646E-03 3.01847E-03 2.82001E-03 + 3.23277E-03 3.05170E-03 2.86500E-03 + 3.38841E-03 3.18267E-03 3.03018E-03 + 3.52866E-03 3.35302E-03 3.21975E-03 + * GROUP 2 -> 2 + 1.16734E+00 1.25883E+00 1.33288E+00 + 1.15989E+00 1.24955E+00 1.32346E+00 + 1.15328E+00 1.24151E+00 1.31372E+00 + 1.16653E+00 1.25833E+00 1.33281E+00 + 1.15967E+00 1.24954E+00 1.32264E+00 + 1.15273E+00 1.24151E+00 1.31344E+00 + 1.16616E+00 1.25788E+00 1.33137E+00 + 1.15912E+00 1.24886E+00 1.32258E+00 + 1.15212E+00 1.24097E+00 1.31296E+00 + * + * ADF Table + * + * GROUP 1 + 9.90785E-01 9.90788E-01 9.89780E-01 + 9.91024E-01 9.90807E-01 9.88934E-01 + 9.89974E-01 9.88798E-01 9.88463E-01 + 9.91188E-01 9.89798E-01 9.89151E-01 + 9.90704E-01 9.89128E-01 9.88028E-01 + 9.90693E-01 9.90258E-01 9.88119E-01 + 9.90728E-01 9.90165E-01 9.89302E-01 + 9.90036E-01 9.89812E-01 9.89360E-01 + 9.89517E-01 9.89090E-01 9.88159E-01 + * GROUP 2 + 1.12511E+00 1.12644E+00 1.12866E+00 + 1.12506E+00 1.11956E+00 1.12555E+00 + 1.11921E+00 1.12132E+00 1.12719E+00 + 1.12615E+00 1.12341E+00 1.12915E+00 + 1.12280E+00 1.11946E+00 1.12359E+00 + 1.12225E+00 1.12644E+00 1.12153E+00 + 1.12459E+00 1.12404E+00 1.12485E+00 + 1.12819E+00 1.12163E+00 1.12648E+00 + 1.12193E+00 1.12175E+00 1.12103E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.13346E-08 2.35409E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.34220E-02 3.06788E-02 1.17023E-01 3.07455E-01 8.79282E-01 2.95063E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.04087E-05 7.44158E-04 5.97227E-04 1.33246E-03 7.96130E-04 2.79177E-04 diff --git a/smpl/xsec/SERPENT_CMM/m43.tab b/smpl/xsec/SERPENT_CMM/m43.tab new file mode 100644 index 0000000..bd4dd82 --- /dev/null +++ b/smpl/xsec/SERPENT_CMM/m43.tab @@ -0,0 +1,1281 @@ + * INPUT CONTROL + 1 0 * ADF and CR + * Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 + * + * -------------------------------------------------------- + * BURNUP 0.15 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20350E-01 2.27867E-01 2.33964E-01 + 2.20528E-01 2.27881E-01 2.34031E-01 + 2.20334E-01 2.28010E-01 2.33845E-01 + 2.20294E-01 2.27735E-01 2.33936E-01 + 2.20336E-01 2.27922E-01 2.33735E-01 + 2.20301E-01 2.27840E-01 2.33842E-01 + 2.20394E-01 2.27773E-01 2.33712E-01 + 2.20066E-01 2.27690E-01 2.33951E-01 + 2.20178E-01 2.27776E-01 2.33659E-01 + * GROUP 2 + 8.19512E-01 8.75101E-01 9.16190E-01 + 8.16258E-01 8.66176E-01 9.06947E-01 + 8.18898E-01 8.66422E-01 9.02682E-01 + 8.25279E-01 8.71546E-01 9.11837E-01 + 8.21614E-01 8.68836E-01 9.05826E-01 + 8.16763E-01 8.72156E-01 9.06016E-01 + 8.16628E-01 8.73203E-01 9.16083E-01 + 8.19798E-01 8.67685E-01 9.10469E-01 + 8.16659E-01 8.70242E-01 9.06288E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.13995E-02 1.15541E-02 1.16690E-02 + 1.16066E-02 1.17839E-02 1.19189E-02 + 1.18235E-02 1.20167E-02 1.21618E-02 + 1.16315E-02 1.17854E-02 1.19104E-02 + 1.18405E-02 1.20318E-02 1.21515E-02 + 1.20367E-02 1.22491E-02 1.24035E-02 + 1.18667E-02 1.20311E-02 1.21522E-02 + 1.20711E-02 1.22638E-02 1.23998E-02 + 1.22764E-02 1.24940E-02 1.26413E-02 + * GROUP 2 + 2.46635E-01 2.47633E-01 2.48255E-01 + 2.55203E-01 2.57242E-01 2.58500E-01 + 2.63825E-01 2.66494E-01 2.68865E-01 + 2.47524E-01 2.48512E-01 2.48798E-01 + 2.56183E-01 2.58149E-01 2.59374E-01 + 2.64709E-01 2.67173E-01 2.69419E-01 + 2.48658E-01 2.49348E-01 2.50081E-01 + 2.57270E-01 2.59109E-01 2.60513E-01 + 2.65636E-01 2.68638E-01 2.70510E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 8.54638E-03 8.62677E-03 8.69406E-03 + 8.54288E-03 8.63921E-03 8.70410E-03 + 8.55444E-03 8.65364E-03 8.71281E-03 + 8.56319E-03 8.64882E-03 8.71338E-03 + 8.57405E-03 8.66444E-03 8.72998E-03 + 8.57737E-03 8.67888E-03 8.74465E-03 + 8.58907E-03 8.67642E-03 8.74035E-03 + 8.59556E-03 8.69198E-03 8.75282E-03 + 8.60613E-03 8.69516E-03 8.76493E-03 + * GROUP 2 + 3.79552E-01 3.80437E-01 3.80732E-01 + 3.79393E-01 3.80511E-01 3.80820E-01 + 3.79539E-01 3.80298E-01 3.81100E-01 + 3.80916E-01 3.81796E-01 3.81621E-01 + 3.81044E-01 3.81837E-01 3.82098E-01 + 3.80983E-01 3.81338E-01 3.81976E-01 + 3.82885E-01 3.83160E-01 3.83707E-01 + 3.82645E-01 3.83580E-01 3.83940E-01 + 3.82465E-01 3.83737E-01 3.83856E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 9.95871E-14 1.00515E-13 1.01293E-13 + 9.95529E-14 1.00662E-13 1.01413E-13 + 9.96869E-14 1.00827E-13 1.01510E-13 + 9.97796E-14 1.00770E-13 1.01513E-13 + 9.99054E-14 1.00947E-13 1.01704E-13 + 9.99450E-14 1.01119E-13 1.01875E-13 + 1.00074E-13 1.01081E-13 1.01824E-13 + 1.00146E-13 1.01263E-13 1.01969E-13 + 1.00274E-13 1.01299E-13 1.02106E-13 + * GROUP 2 + 4.43653E-12 4.44663E-12 4.44993E-12 + 4.43474E-12 4.44760E-12 4.45107E-12 + 4.43654E-12 4.44522E-12 4.45444E-12 + 4.45246E-12 4.46256E-12 4.46031E-12 + 4.45405E-12 4.46314E-12 4.46601E-12 + 4.45344E-12 4.45741E-12 4.46469E-12 + 4.47549E-12 4.47852E-12 4.48473E-12 + 4.47279E-12 4.48349E-12 4.48753E-12 + 4.47078E-12 4.48544E-12 4.48667E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.74942E-01 4.98749E-01 5.17636E-01 + 4.75741E-01 4.99576E-01 5.18629E-01 + 4.76492E-01 5.00450E-01 5.19473E-01 + 4.75306E-01 4.99060E-01 5.17902E-01 + 4.75965E-01 4.99939E-01 5.18859E-01 + 4.76761E-01 5.00711E-01 5.19701E-01 + 4.75567E-01 4.99353E-01 5.18185E-01 + 4.76265E-01 5.00183E-01 5.19163E-01 + 4.76994E-01 5.00980E-01 5.19955E-01 + * GROUP 1 -> 2 + 1.27609E-02 1.39978E-02 1.49819E-02 + 1.27511E-02 1.39849E-02 1.49782E-02 + 1.27191E-02 1.39768E-02 1.49590E-02 + 1.26572E-02 1.38968E-02 1.48734E-02 + 1.26418E-02 1.38758E-02 1.48744E-02 + 1.26248E-02 1.38681E-02 1.48552E-02 + 1.25643E-02 1.37909E-02 1.47613E-02 + 1.25389E-02 1.37676E-02 1.47535E-02 + 1.25151E-02 1.37450E-02 1.47416E-02 + * GROUP 2 -> 1 + 3.96983E-03 3.75745E-03 3.55780E-03 + 4.08167E-03 3.87142E-03 3.68292E-03 + 4.15122E-03 4.01626E-03 3.82500E-03 + 4.39658E-03 4.18658E-03 3.93397E-03 + 4.52541E-03 4.28082E-03 4.07251E-03 + 4.62990E-03 4.41265E-03 4.19871E-03 + 4.90197E-03 4.64602E-03 4.37991E-03 + 5.03657E-03 4.77397E-03 4.49874E-03 + 5.17038E-03 4.89785E-03 4.69765E-03 + * GROUP 2 -> 2 + 1.15921E+00 1.25057E+00 1.32491E+00 + 1.15348E+00 1.24369E+00 1.31752E+00 + 1.14833E+00 1.23733E+00 1.31030E+00 + 1.15841E+00 1.25037E+00 1.32513E+00 + 1.15303E+00 1.24369E+00 1.31711E+00 + 1.14825E+00 1.23793E+00 1.31024E+00 + 1.15874E+00 1.25046E+00 1.32469E+00 + 1.15332E+00 1.24358E+00 1.31739E+00 + 1.14743E+00 1.23768E+00 1.31013E+00 + * + * ADF Table + * + * GROUP 1 + 9.99814E-01 9.99145E-01 1.00036E+00 + 9.98162E-01 9.99185E-01 9.98132E-01 + 9.98336E-01 9.98295E-01 9.98175E-01 + 9.99737E-01 9.99885E-01 9.99857E-01 + 9.99655E-01 9.98690E-01 9.98408E-01 + 9.98918E-01 9.98221E-01 9.98203E-01 + 1.00006E+00 1.00033E+00 9.99948E-01 + 9.99150E-01 9.97836E-01 9.98311E-01 + 9.98017E-01 9.97272E-01 9.97422E-01 + * GROUP 2 + 1.37063E+00 1.37158E+00 1.37592E+00 + 1.36191E+00 1.36853E+00 1.37061E+00 + 1.35251E+00 1.36184E+00 1.36350E+00 + 1.36755E+00 1.37304E+00 1.38211E+00 + 1.36509E+00 1.37034E+00 1.37091E+00 + 1.35669E+00 1.36286E+00 1.36129E+00 + 1.36805E+00 1.38065E+00 1.38000E+00 + 1.36241E+00 1.36896E+00 1.36855E+00 + 1.35968E+00 1.36383E+00 1.36029E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.06108E-08 2.20145E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33347E-02 3.10323E-02 1.16370E-01 3.04433E-01 8.78207E-01 2.88955E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.03239E-05 5.93518E-04 5.11999E-04 1.07891E-03 6.02403E-04 2.35205E-04 + * + * -------------------------------------------------------- + * BURNUP 17.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.21610E-01 2.29008E-01 2.35036E-01 + 2.21450E-01 2.29204E-01 2.34985E-01 + 2.21526E-01 2.28878E-01 2.35255E-01 + 2.21608E-01 2.28960E-01 2.35055E-01 + 2.21576E-01 2.29154E-01 2.34777E-01 + 2.21424E-01 2.28921E-01 2.35126E-01 + 2.21158E-01 2.28867E-01 2.34742E-01 + 2.21265E-01 2.29009E-01 2.34969E-01 + 2.21499E-01 2.28998E-01 2.34896E-01 + * GROUP 2 + 8.15673E-01 8.67242E-01 9.07228E-01 + 8.11775E-01 8.61628E-01 8.99449E-01 + 8.09288E-01 8.62300E-01 8.98991E-01 + 8.19226E-01 8.64841E-01 9.10105E-01 + 8.12786E-01 8.65620E-01 9.01928E-01 + 8.12862E-01 8.61021E-01 9.01553E-01 + 8.19174E-01 8.69402E-01 9.10158E-01 + 8.09718E-01 8.61202E-01 9.02559E-01 + 8.09331E-01 8.58272E-01 9.00067E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.18639E-02 1.20433E-02 1.21649E-02 + 1.20877E-02 1.22771E-02 1.24275E-02 + 1.23016E-02 1.25134E-02 1.26840E-02 + 1.20913E-02 1.22675E-02 1.23893E-02 + 1.22990E-02 1.25081E-02 1.26450E-02 + 1.25097E-02 1.27404E-02 1.28981E-02 + 1.23094E-02 1.24922E-02 1.26351E-02 + 1.25331E-02 1.27310E-02 1.28947E-02 + 1.27381E-02 1.29767E-02 1.31393E-02 + * GROUP 2 + 2.03141E-01 2.03974E-01 2.04439E-01 + 2.11906E-01 2.13588E-01 2.14730E-01 + 2.20544E-01 2.22900E-01 2.24893E-01 + 2.03753E-01 2.04610E-01 2.05069E-01 + 2.12629E-01 2.14125E-01 2.15369E-01 + 2.21026E-01 2.23482E-01 2.25402E-01 + 2.04821E-01 2.05308E-01 2.05807E-01 + 2.13500E-01 2.15179E-01 2.16113E-01 + 2.22118E-01 2.24544E-01 2.26233E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.50463E-03 7.57858E-03 7.63399E-03 + 7.51795E-03 7.59267E-03 7.64869E-03 + 7.52475E-03 7.60772E-03 7.66285E-03 + 7.51345E-03 7.59128E-03 7.64191E-03 + 7.51844E-03 7.60296E-03 7.65957E-03 + 7.53282E-03 7.61101E-03 7.67167E-03 + 7.50968E-03 7.58683E-03 7.64269E-03 + 7.51950E-03 7.60064E-03 7.65955E-03 + 7.53025E-03 7.61476E-03 7.66886E-03 + * GROUP 2 + 3.08235E-01 3.08561E-01 3.08378E-01 + 3.08463E-01 3.08723E-01 3.08507E-01 + 3.08696E-01 3.08742E-01 3.08765E-01 + 3.09383E-01 3.09657E-01 3.09412E-01 + 3.09727E-01 3.09721E-01 3.09612E-01 + 3.09620E-01 3.09798E-01 3.09687E-01 + 3.11252E-01 3.10902E-01 3.10747E-01 + 3.11261E-01 3.11496E-01 3.10945E-01 + 3.11567E-01 3.11617E-01 3.11153E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 8.73610E-14 8.82114E-14 8.88504E-14 + 8.75130E-14 8.83749E-14 8.90212E-14 + 8.75879E-14 8.85446E-14 8.91760E-14 + 8.74607E-14 8.83525E-14 8.89411E-14 + 8.75149E-14 8.84870E-14 8.91416E-14 + 8.76790E-14 8.85798E-14 8.92763E-14 + 8.74162E-14 8.83013E-14 8.89426E-14 + 8.75189E-14 8.84598E-14 8.91378E-14 + 8.76449E-14 8.86175E-14 8.92409E-14 + * GROUP 2 + 3.59755E-12 3.60113E-12 3.59877E-12 + 3.60031E-12 3.60317E-12 3.60045E-12 + 3.60316E-12 3.60349E-12 3.60359E-12 + 3.61097E-12 3.61395E-12 3.61090E-12 + 3.61512E-12 3.61482E-12 3.61336E-12 + 3.61398E-12 3.61586E-12 3.61437E-12 + 3.63282E-12 3.62850E-12 3.62649E-12 + 3.63305E-12 3.63560E-12 3.62897E-12 + 3.63673E-12 3.63710E-12 3.63155E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79000E-01 5.02920E-01 5.21888E-01 + 4.79783E-01 5.03951E-01 5.22945E-01 + 4.80601E-01 5.04787E-01 5.23922E-01 + 4.79310E-01 5.03260E-01 5.22134E-01 + 4.80195E-01 5.04250E-01 5.23084E-01 + 4.80821E-01 5.04999E-01 5.24105E-01 + 4.79678E-01 5.03610E-01 5.22404E-01 + 4.80545E-01 5.04540E-01 5.23523E-01 + 4.81230E-01 5.05299E-01 5.24428E-01 + * GROUP 1 -> 2 + 1.26347E-02 1.38689E-02 1.48666E-02 + 1.26282E-02 1.38882E-02 1.48776E-02 + 1.26249E-02 1.38753E-02 1.48762E-02 + 1.25397E-02 1.37747E-02 1.47641E-02 + 1.25410E-02 1.37806E-02 1.47715E-02 + 1.25217E-02 1.37707E-02 1.47752E-02 + 1.24503E-02 1.36839E-02 1.46451E-02 + 1.24373E-02 1.36776E-02 1.46599E-02 + 1.24233E-02 1.36594E-02 1.46645E-02 + * GROUP 2 -> 1 + 3.35361E-03 3.14803E-03 2.98752E-03 + 3.45877E-03 3.29510E-03 3.09513E-03 + 3.58109E-03 3.40207E-03 3.23741E-03 + 3.71292E-03 3.50574E-03 3.33045E-03 + 3.83914E-03 3.63544E-03 3.45918E-03 + 3.96435E-03 3.79905E-03 3.57456E-03 + 4.15271E-03 3.91130E-03 3.69206E-03 + 4.27727E-03 4.05752E-03 3.84372E-03 + 4.42270E-03 4.22766E-03 3.99848E-03 + * GROUP 2 -> 2 + 1.16146E+00 1.25303E+00 1.32691E+00 + 1.15519E+00 1.24526E+00 1.31889E+00 + 1.14931E+00 1.23810E+00 1.31053E+00 + 1.16061E+00 1.25220E+00 1.32728E+00 + 1.15478E+00 1.24547E+00 1.31829E+00 + 1.14877E+00 1.23791E+00 1.31082E+00 + 1.16120E+00 1.25279E+00 1.32731E+00 + 1.15434E+00 1.24514E+00 1.31853E+00 + 1.14870E+00 1.23785E+00 1.31022E+00 + * + * ADF Table + * + * GROUP 1 + 9.90326E-01 9.89831E-01 9.89796E-01 + 9.90163E-01 9.89551E-01 9.90490E-01 + 9.89600E-01 9.89090E-01 9.88444E-01 + 9.90136E-01 9.91319E-01 9.89417E-01 + 9.90948E-01 9.89250E-01 9.88201E-01 + 9.90506E-01 9.89577E-01 9.86902E-01 + 9.91094E-01 9.90669E-01 9.90068E-01 + 9.89663E-01 9.90086E-01 9.89119E-01 + 9.90874E-01 9.88313E-01 9.88000E-01 + * GROUP 2 + 1.26037E+00 1.26642E+00 1.26416E+00 + 1.25598E+00 1.25909E+00 1.26002E+00 + 1.25433E+00 1.25111E+00 1.25656E+00 + 1.26015E+00 1.26821E+00 1.26594E+00 + 1.25762E+00 1.25955E+00 1.25438E+00 + 1.25061E+00 1.25069E+00 1.25254E+00 + 1.25988E+00 1.26613E+00 1.27135E+00 + 1.25785E+00 1.25900E+00 1.26111E+00 + 1.25065E+00 1.25155E+00 1.25436E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.05436E-08 2.26441E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33651E-02 3.08495E-02 1.16549E-01 3.05601E-01 8.78537E-01 2.93004E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.68713E-05 6.74582E-04 5.48380E-04 1.19769E-03 6.80774E-04 2.32154E-04 + * + * -------------------------------------------------------- + * BURNUP 20.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.21738E-01 2.29041E-01 2.35129E-01 + 2.21824E-01 2.29380E-01 2.35154E-01 + 2.21560E-01 2.29233E-01 2.35231E-01 + 2.21656E-01 2.29274E-01 2.35233E-01 + 2.21478E-01 2.29218E-01 2.35013E-01 + 2.21642E-01 2.29223E-01 2.35281E-01 + 2.21405E-01 2.29005E-01 2.35114E-01 + 2.21430E-01 2.29072E-01 2.35046E-01 + 2.21463E-01 2.29130E-01 2.35030E-01 + * GROUP 2 + 8.13716E-01 8.64753E-01 9.06801E-01 + 8.12154E-01 8.66585E-01 9.00005E-01 + 8.11671E-01 8.66323E-01 8.99322E-01 + 8.13085E-01 8.67177E-01 9.07642E-01 + 8.09765E-01 8.69074E-01 9.04011E-01 + 8.14446E-01 8.61495E-01 8.98024E-01 + 8.16566E-01 8.65886E-01 9.12840E-01 + 8.11861E-01 8.63765E-01 9.02648E-01 + 8.11809E-01 8.58765E-01 9.05054E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.19169E-02 1.20901E-02 1.22202E-02 + 1.21384E-02 1.23276E-02 1.24805E-02 + 1.23580E-02 1.25615E-02 1.27292E-02 + 1.21278E-02 1.23160E-02 1.24395E-02 + 1.23451E-02 1.25542E-02 1.26974E-02 + 1.25618E-02 1.27854E-02 1.29599E-02 + 1.23619E-02 1.25458E-02 1.26905E-02 + 1.25761E-02 1.28007E-02 1.29508E-02 + 1.27868E-02 1.30214E-02 1.31863E-02 + * GROUP 2 + 1.97186E-01 1.97854E-01 1.98432E-01 + 2.05993E-01 2.07481E-01 2.08762E-01 + 2.14401E-01 2.16910E-01 2.18827E-01 + 1.97962E-01 1.98615E-01 1.98957E-01 + 2.06505E-01 2.08218E-01 2.09348E-01 + 2.15025E-01 2.17502E-01 2.19635E-01 + 1.98719E-01 1.99355E-01 1.99579E-01 + 2.07364E-01 2.08956E-01 2.09989E-01 + 2.16015E-01 2.18389E-01 2.20345E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.37443E-03 7.44723E-03 7.50264E-03 + 7.38612E-03 7.45272E-03 7.51323E-03 + 7.39545E-03 7.46811E-03 7.52467E-03 + 7.37318E-03 7.44692E-03 7.49899E-03 + 7.38833E-03 7.46199E-03 7.51878E-03 + 7.39394E-03 7.47758E-03 7.53218E-03 + 7.37967E-03 7.45036E-03 7.50898E-03 + 7.38699E-03 7.46977E-03 7.51685E-03 + 7.39465E-03 7.47380E-03 7.52539E-03 + * GROUP 2 + 2.99183E-01 2.99183E-01 2.99136E-01 + 2.99395E-01 2.99339E-01 2.99292E-01 + 2.99211E-01 2.99492E-01 2.99404E-01 + 3.00504E-01 3.00510E-01 3.00098E-01 + 3.00334E-01 3.00627E-01 3.00405E-01 + 3.00328E-01 3.00510E-01 3.00862E-01 + 3.01859E-01 3.01772E-01 3.01306E-01 + 3.01825E-01 3.01926E-01 3.01565E-01 + 3.02084E-01 3.02123E-01 3.02134E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 8.58306E-14 8.66661E-14 8.73069E-14 + 8.59654E-14 8.67322E-14 8.74280E-14 + 8.60683E-14 8.69063E-14 8.75550E-14 + 8.58121E-14 8.66611E-14 8.72588E-14 + 8.59842E-14 8.68328E-14 8.74877E-14 + 8.60449E-14 8.70080E-14 8.76411E-14 + 8.58825E-14 8.66986E-14 8.73721E-14 + 8.59628E-14 8.69168E-14 8.74582E-14 + 8.60497E-14 8.69648E-14 8.75531E-14 + * GROUP 2 + 3.49092E-12 3.49071E-12 3.48997E-12 + 3.49353E-12 3.49266E-12 3.49193E-12 + 3.49153E-12 3.49457E-12 3.49337E-12 + 3.50637E-12 3.50623E-12 3.50121E-12 + 3.50451E-12 3.50772E-12 3.50494E-12 + 3.50458E-12 3.50648E-12 3.51040E-12 + 3.52221E-12 3.52099E-12 3.51534E-12 + 3.52194E-12 3.52293E-12 3.51851E-12 + 3.52509E-12 3.52536E-12 3.52529E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79521E-01 5.03415E-01 5.22341E-01 + 4.80386E-01 5.04444E-01 5.23423E-01 + 4.81137E-01 5.05305E-01 5.24379E-01 + 4.79780E-01 5.03786E-01 5.22658E-01 + 4.80590E-01 5.04662E-01 5.23675E-01 + 4.81450E-01 5.05478E-01 5.24677E-01 + 4.80083E-01 5.04032E-01 5.22973E-01 + 4.80934E-01 5.04989E-01 5.24025E-01 + 4.81662E-01 5.05771E-01 5.24871E-01 + * GROUP 1 -> 2 + 1.26296E-02 1.38662E-02 1.48529E-02 + 1.26252E-02 1.38751E-02 1.48616E-02 + 1.26152E-02 1.38724E-02 1.48678E-02 + 1.25391E-02 1.37728E-02 1.47493E-02 + 1.25349E-02 1.37767E-02 1.47693E-02 + 1.25246E-02 1.37720E-02 1.47663E-02 + 1.24400E-02 1.36688E-02 1.46481E-02 + 1.24336E-02 1.36633E-02 1.46523E-02 + 1.24149E-02 1.36587E-02 1.46546E-02 + * GROUP 2 -> 1 + 3.26754E-03 3.06259E-03 2.91892E-03 + 3.37025E-03 3.20373E-03 3.04524E-03 + 3.48576E-03 3.33356E-03 3.15987E-03 + 3.61895E-03 3.40307E-03 3.22247E-03 + 3.74897E-03 3.55124E-03 3.37033E-03 + 3.85862E-03 3.72791E-03 3.49987E-03 + 4.00670E-03 3.80664E-03 3.60233E-03 + 4.19064E-03 3.94467E-03 3.75250E-03 + 4.30627E-03 4.09614E-03 3.88933E-03 + * GROUP 2 -> 2 + 1.16231E+00 1.25388E+00 1.32864E+00 + 1.15520E+00 1.24616E+00 1.31980E+00 + 1.14959E+00 1.23960E+00 1.31101E+00 + 1.16165E+00 1.25339E+00 1.32752E+00 + 1.15605E+00 1.24568E+00 1.31950E+00 + 1.14970E+00 1.23926E+00 1.31115E+00 + 1.16191E+00 1.25330E+00 1.32749E+00 + 1.15539E+00 1.24595E+00 1.31959E+00 + 1.14914E+00 1.23840E+00 1.31095E+00 + * + * ADF Table + * + * GROUP 1 + 9.90815E-01 9.89832E-01 9.89046E-01 + 9.89877E-01 9.89104E-01 9.87145E-01 + 9.89355E-01 9.88319E-01 9.86005E-01 + 9.89794E-01 9.89609E-01 9.88293E-01 + 9.90352E-01 9.88030E-01 9.87197E-01 + 9.89627E-01 9.88791E-01 9.87471E-01 + 9.90551E-01 9.89044E-01 9.89218E-01 + 9.89781E-01 9.89052E-01 9.87585E-01 + 9.89725E-01 9.87469E-01 9.86558E-01 + * GROUP 2 + 1.24858E+00 1.25184E+00 1.25138E+00 + 1.23978E+00 1.24650E+00 1.24654E+00 + 1.23706E+00 1.23822E+00 1.23842E+00 + 1.23953E+00 1.25211E+00 1.25407E+00 + 1.24245E+00 1.24467E+00 1.24511E+00 + 1.23790E+00 1.24229E+00 1.23995E+00 + 1.24553E+00 1.25019E+00 1.25606E+00 + 1.24046E+00 1.24172E+00 1.24512E+00 + 1.24053E+00 1.23363E+00 1.23837E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.05225E-08 2.27475E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33690E-02 3.08279E-02 1.16712E-01 3.05915E-01 8.78430E-01 2.92455E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.40812E-05 6.40505E-04 5.46729E-04 1.21797E-03 6.70065E-04 2.41792E-04 + * + * -------------------------------------------------------- + * BURNUP 22.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.21536E-01 2.29329E-01 2.35329E-01 + 2.21781E-01 2.29476E-01 2.35383E-01 + 2.21915E-01 2.29389E-01 2.35369E-01 + 2.21668E-01 2.29136E-01 2.35281E-01 + 2.21863E-01 2.29230E-01 2.35271E-01 + 2.21668E-01 2.29388E-01 2.35221E-01 + 2.21624E-01 2.29328E-01 2.35286E-01 + 2.21687E-01 2.29220E-01 2.35272E-01 + 2.21809E-01 2.29252E-01 2.35131E-01 + * GROUP 2 + 8.14630E-01 8.65730E-01 9.05783E-01 + 8.10505E-01 8.58544E-01 9.02508E-01 + 8.06284E-01 8.60887E-01 9.01394E-01 + 8.12965E-01 8.65399E-01 9.04761E-01 + 8.12539E-01 8.58431E-01 8.98630E-01 + 8.09573E-01 8.57064E-01 9.00151E-01 + 8.17941E-01 8.66867E-01 9.06587E-01 + 8.14641E-01 8.58518E-01 8.96808E-01 + 8.06653E-01 8.60543E-01 8.98322E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.19666E-02 1.21369E-02 1.22666E-02 + 1.21864E-02 1.23842E-02 1.25313E-02 + 1.24050E-02 1.26259E-02 1.27835E-02 + 1.21737E-02 1.23620E-02 1.24924E-02 + 1.23994E-02 1.26007E-02 1.27555E-02 + 1.26130E-02 1.28423E-02 1.30098E-02 + 1.24142E-02 1.25962E-02 1.27336E-02 + 1.26317E-02 1.28374E-02 1.29914E-02 + 1.28388E-02 1.30711E-02 1.32406E-02 + * GROUP 2 + 1.91595E-01 1.92258E-01 1.92630E-01 + 2.00245E-01 2.01921E-01 2.03001E-01 + 2.08994E-01 2.11346E-01 2.13264E-01 + 1.92171E-01 1.92749E-01 1.93155E-01 + 2.01171E-01 2.02448E-01 2.03661E-01 + 2.09534E-01 2.11734E-01 2.13701E-01 + 1.92956E-01 1.93538E-01 1.94151E-01 + 2.01749E-01 2.03292E-01 2.04356E-01 + 2.10429E-01 2.12608E-01 2.14690E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.24397E-03 7.31153E-03 7.36168E-03 + 7.25327E-03 7.32799E-03 7.38152E-03 + 7.26441E-03 7.33853E-03 7.39813E-03 + 7.24286E-03 7.31477E-03 7.36655E-03 + 7.25280E-03 7.32887E-03 7.38134E-03 + 7.26360E-03 7.34278E-03 7.39622E-03 + 7.23939E-03 7.31442E-03 7.36255E-03 + 7.25188E-03 7.33216E-03 7.37997E-03 + 7.25899E-03 7.33721E-03 7.39399E-03 + * GROUP 2 + 2.90365E-01 2.90391E-01 2.90061E-01 + 2.90316E-01 2.90551E-01 2.90266E-01 + 2.90688E-01 2.90682E-01 2.90620E-01 + 2.91392E-01 2.91253E-01 2.91003E-01 + 2.91877E-01 2.91540E-01 2.91439E-01 + 2.91616E-01 2.91427E-01 2.91464E-01 + 2.92774E-01 2.92644E-01 2.92746E-01 + 2.92990E-01 2.93055E-01 2.92725E-01 + 2.93219E-01 2.92996E-01 2.93225E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 8.42913E-14 8.50743E-14 8.56511E-14 + 8.44017E-14 8.52612E-14 8.58800E-14 + 8.45247E-14 8.53789E-14 8.60684E-14 + 8.42755E-14 8.51086E-14 8.57073E-14 + 8.43903E-14 8.52697E-14 8.58742E-14 + 8.45156E-14 8.54238E-14 8.60430E-14 + 8.42367E-14 8.51001E-14 8.56539E-14 + 8.43804E-14 8.53016E-14 8.58575E-14 + 8.44533E-14 8.53565E-14 8.60107E-14 + * GROUP 2 + 3.38707E-12 3.38714E-12 3.38311E-12 + 3.38665E-12 3.38915E-12 3.38563E-12 + 3.39109E-12 3.39084E-12 3.38990E-12 + 3.39909E-12 3.39723E-12 3.39412E-12 + 3.40489E-12 3.40073E-12 3.39936E-12 + 3.40195E-12 3.39954E-12 3.39979E-12 + 3.41525E-12 3.41353E-12 3.41450E-12 + 3.41791E-12 3.41843E-12 3.41442E-12 + 3.42071E-12 3.41788E-12 3.42039E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79872E-01 5.03890E-01 5.22804E-01 + 4.80795E-01 5.04912E-01 5.23977E-01 + 4.81605E-01 5.05742E-01 5.24856E-01 + 4.80266E-01 5.04241E-01 5.23135E-01 + 4.81139E-01 5.05129E-01 5.24206E-01 + 4.81837E-01 5.06122E-01 5.25159E-01 + 4.80619E-01 5.04506E-01 5.23467E-01 + 4.81475E-01 5.05447E-01 5.24529E-01 + 4.82206E-01 5.06275E-01 5.25386E-01 + * GROUP 1 -> 2 + 1.26204E-02 1.38542E-02 1.48364E-02 + 1.26182E-02 1.38658E-02 1.48661E-02 + 1.26129E-02 1.38642E-02 1.48649E-02 + 1.25297E-02 1.37621E-02 1.47486E-02 + 1.25331E-02 1.37670E-02 1.47620E-02 + 1.25132E-02 1.37727E-02 1.47642E-02 + 1.24242E-02 1.36567E-02 1.46397E-02 + 1.24240E-02 1.36649E-02 1.46558E-02 + 1.24148E-02 1.36591E-02 1.46481E-02 + * GROUP 2 -> 1 + 3.16230E-03 2.99296E-03 2.82548E-03 + 3.30049E-03 3.11324E-03 2.93660E-03 + 3.39984E-03 3.25208E-03 3.09956E-03 + 3.49796E-03 3.33791E-03 3.15104E-03 + 3.65797E-03 3.44964E-03 3.27331E-03 + 3.75622E-03 3.61746E-03 3.40832E-03 + 3.91054E-03 3.70961E-03 3.49541E-03 + 4.08146E-03 3.83407E-03 3.66263E-03 + 4.20949E-03 3.99294E-03 3.81953E-03 + * GROUP 2 -> 2 + 1.16299E+00 1.25458E+00 1.32929E+00 + 1.15607E+00 1.24702E+00 1.31979E+00 + 1.15041E+00 1.23945E+00 1.31159E+00 + 1.16288E+00 1.25393E+00 1.32870E+00 + 1.15604E+00 1.24659E+00 1.31900E+00 + 1.15062E+00 1.23896E+00 1.31112E+00 + 1.16280E+00 1.25401E+00 1.32832E+00 + 1.15571E+00 1.24597E+00 1.31964E+00 + 1.14989E+00 1.23888E+00 1.31069E+00 + * + * ADF Table + * + * GROUP 1 + 9.90774E-01 9.88409E-01 9.87821E-01 + 9.88791E-01 9.88434E-01 9.88171E-01 + 9.89291E-01 9.88041E-01 9.86818E-01 + 9.89982E-01 9.88595E-01 9.87661E-01 + 9.88814E-01 9.88149E-01 9.87626E-01 + 9.88357E-01 9.87108E-01 9.86461E-01 + 9.89580E-01 9.87780E-01 9.87799E-01 + 9.88280E-01 9.88217E-01 9.85993E-01 + 9.89632E-01 9.88021E-01 9.86249E-01 + * GROUP 2 + 1.23510E+00 1.23167E+00 1.23708E+00 + 1.22668E+00 1.23113E+00 1.23217E+00 + 1.21867E+00 1.22313E+00 1.22279E+00 + 1.23386E+00 1.23500E+00 1.24034E+00 + 1.23087E+00 1.23138E+00 1.23262E+00 + 1.22119E+00 1.21975E+00 1.22265E+00 + 1.23631E+00 1.23662E+00 1.24027E+00 + 1.22929E+00 1.22659E+00 1.22705E+00 + 1.22382E+00 1.22902E+00 1.22410E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.05510E-08 2.28503E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33739E-02 3.08060E-02 1.16555E-01 3.06093E-01 8.78865E-01 2.92520E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.83957E-05 6.67358E-04 5.32486E-04 1.24989E-03 7.01286E-04 2.45610E-04 + * + * -------------------------------------------------------- + * BURNUP 32.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.22267E-01 2.29893E-01 2.36076E-01 + 2.22571E-01 2.29946E-01 2.35768E-01 + 2.22675E-01 2.29993E-01 2.35922E-01 + 2.22321E-01 2.29898E-01 2.35636E-01 + 2.22411E-01 2.29905E-01 2.35813E-01 + 2.22307E-01 2.29944E-01 2.35816E-01 + 2.22215E-01 2.29731E-01 2.35694E-01 + 2.22221E-01 2.29869E-01 2.35883E-01 + 2.22105E-01 2.29785E-01 2.35637E-01 + * GROUP 2 + 8.12113E-01 8.60515E-01 9.02161E-01 + 8.08864E-01 8.59053E-01 8.99449E-01 + 8.09028E-01 8.57063E-01 8.93474E-01 + 8.11918E-01 8.63589E-01 9.00095E-01 + 8.08569E-01 8.60988E-01 8.98729E-01 + 8.03085E-01 8.55310E-01 8.93267E-01 + 8.12366E-01 8.57636E-01 9.03200E-01 + 8.09117E-01 8.59013E-01 8.99753E-01 + 8.06079E-01 8.56290E-01 8.93388E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.21715E-02 1.23493E-02 1.24799E-02 + 1.24023E-02 1.26070E-02 1.27508E-02 + 1.26238E-02 1.28456E-02 1.30167E-02 + 1.23789E-02 1.25732E-02 1.27008E-02 + 1.26102E-02 1.28150E-02 1.29737E-02 + 1.28220E-02 1.30585E-02 1.32372E-02 + 1.26093E-02 1.28009E-02 1.29458E-02 + 1.28306E-02 1.30538E-02 1.32088E-02 + 1.30475E-02 1.32996E-02 1.34728E-02 + * GROUP 2 + 1.72390E-01 1.72776E-01 1.73139E-01 + 1.81172E-01 1.82589E-01 1.83625E-01 + 1.89697E-01 1.92066E-01 1.93846E-01 + 1.72864E-01 1.73307E-01 1.73606E-01 + 1.81614E-01 1.82980E-01 1.84176E-01 + 1.90140E-01 1.92600E-01 1.94199E-01 + 1.73595E-01 1.74084E-01 1.74410E-01 + 1.82356E-01 1.83717E-01 1.84721E-01 + 1.90882E-01 1.93272E-01 1.95009E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.73420E-03 6.79673E-03 6.84326E-03 + 6.74159E-03 6.81578E-03 6.86222E-03 + 6.75278E-03 6.82114E-03 6.87571E-03 + 6.72457E-03 6.79918E-03 6.83791E-03 + 6.73895E-03 6.80428E-03 6.85631E-03 + 6.74526E-03 6.81813E-03 6.86801E-03 + 6.71649E-03 6.78316E-03 6.83261E-03 + 6.73476E-03 6.79888E-03 6.85017E-03 + 6.73815E-03 6.81415E-03 6.86571E-03 + * GROUP 2 + 2.57350E-01 2.56968E-01 2.56660E-01 + 2.57398E-01 2.57305E-01 2.56931E-01 + 2.57360E-01 2.57464E-01 2.57142E-01 + 2.58244E-01 2.57921E-01 2.57524E-01 + 2.58282E-01 2.58082E-01 2.57965E-01 + 2.58200E-01 2.58427E-01 2.57864E-01 + 2.59565E-01 2.59353E-01 2.58961E-01 + 2.59623E-01 2.59420E-01 2.59016E-01 + 2.59609E-01 2.59707E-01 2.59355E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.83095E-14 7.90272E-14 7.95595E-14 + 7.83889E-14 7.92454E-14 7.97748E-14 + 7.85139E-14 7.93000E-14 7.99266E-14 + 7.81896E-14 7.90504E-14 7.94957E-14 + 7.83526E-14 7.91054E-14 7.97049E-14 + 7.84206E-14 7.92601E-14 7.98320E-14 + 7.80939E-14 7.88624E-14 7.94311E-14 + 7.83038E-14 7.90412E-14 7.96309E-14 + 7.83376E-14 7.92126E-14 7.98041E-14 + * GROUP 2 + 2.99834E-12 2.99365E-12 2.98987E-12 + 2.99906E-12 2.99774E-12 2.99321E-12 + 2.99876E-12 2.99977E-12 2.99582E-12 + 3.00882E-12 3.00481E-12 2.99999E-12 + 3.00941E-12 3.00685E-12 3.00529E-12 + 3.00858E-12 3.01102E-12 3.00428E-12 + 3.02425E-12 3.02154E-12 3.01676E-12 + 3.02508E-12 3.02249E-12 3.01758E-12 + 3.02506E-12 3.02600E-12 3.02170E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.81867E-01 5.05830E-01 5.24894E-01 + 4.82862E-01 5.06956E-01 5.26026E-01 + 4.83762E-01 5.07808E-01 5.27043E-01 + 4.82189E-01 5.06105E-01 5.25199E-01 + 4.83053E-01 5.07132E-01 5.26335E-01 + 4.83845E-01 5.08088E-01 5.27348E-01 + 4.82530E-01 5.06521E-01 5.25518E-01 + 4.83370E-01 5.07485E-01 5.26522E-01 + 4.84205E-01 5.08459E-01 5.27576E-01 + * GROUP 1 -> 2 + 1.26112E-02 1.38561E-02 1.48444E-02 + 1.26247E-02 1.38817E-02 1.48777E-02 + 1.26290E-02 1.38804E-02 1.48781E-02 + 1.25221E-02 1.37562E-02 1.47511E-02 + 1.25288E-02 1.37837E-02 1.47763E-02 + 1.25290E-02 1.37805E-02 1.47870E-02 + 1.24311E-02 1.36550E-02 1.46447E-02 + 1.24286E-02 1.36716E-02 1.46681E-02 + 1.24315E-02 1.36648E-02 1.46724E-02 + * GROUP 2 -> 1 + 2.85558E-03 2.71608E-03 2.56442E-03 + 2.99674E-03 2.83003E-03 2.69868E-03 + 3.10628E-03 2.97359E-03 2.81244E-03 + 3.18596E-03 3.01227E-03 2.85394E-03 + 3.33478E-03 3.15792E-03 2.97488E-03 + 3.44180E-03 3.27322E-03 3.13406E-03 + 3.55693E-03 3.35267E-03 3.16693E-03 + 3.72949E-03 3.52601E-03 3.32070E-03 + 3.86041E-03 3.65581E-03 3.46438E-03 + * GROUP 2 -> 2 + 1.16592E+00 1.25653E+00 1.33100E+00 + 1.15860E+00 1.24901E+00 1.32198E+00 + 1.15163E+00 1.24082E+00 1.31303E+00 + 1.16465E+00 1.25612E+00 1.33020E+00 + 1.15748E+00 1.24791E+00 1.32122E+00 + 1.15160E+00 1.24087E+00 1.31238E+00 + 1.16491E+00 1.25665E+00 1.33058E+00 + 1.15738E+00 1.24751E+00 1.32094E+00 + 1.15064E+00 1.24000E+00 1.31244E+00 + * + * ADF Table + * + * GROUP 1 + 9.89825E-01 9.87479E-01 9.87111E-01 + 9.89704E-01 9.87827E-01 9.85988E-01 + 9.88413E-01 9.86716E-01 9.85534E-01 + 9.89628E-01 9.87632E-01 9.87317E-01 + 9.87875E-01 9.87382E-01 9.86105E-01 + 9.88325E-01 9.86569E-01 9.85579E-01 + 9.89799E-01 9.88015E-01 9.87687E-01 + 9.88665E-01 9.87398E-01 9.85057E-01 + 9.87837E-01 9.87217E-01 9.85355E-01 + * GROUP 2 + 1.18771E+00 1.18882E+00 1.19231E+00 + 1.18706E+00 1.18736E+00 1.18495E+00 + 1.18258E+00 1.18606E+00 1.18289E+00 + 1.18819E+00 1.18840E+00 1.19470E+00 + 1.18272E+00 1.18587E+00 1.18456E+00 + 1.18178E+00 1.18207E+00 1.18671E+00 + 1.18970E+00 1.19129E+00 1.19452E+00 + 1.18199E+00 1.18621E+00 1.18385E+00 + 1.18120E+00 1.18283E+00 1.18503E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.06784E-08 2.32016E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33953E-02 3.07204E-02 1.16864E-01 3.07047E-01 8.78397E-01 2.93648E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.93572E-05 7.19711E-04 5.70924E-04 1.29187E-03 7.64041E-04 2.82334E-04 + * + * -------------------------------------------------------- + * BURNUP 35.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.22554E-01 2.30271E-01 2.36024E-01 + 2.22529E-01 2.30035E-01 2.36113E-01 + 2.22511E-01 2.30150E-01 2.36183E-01 + 2.22401E-01 2.30244E-01 2.35906E-01 + 2.22562E-01 2.30149E-01 2.35962E-01 + 2.22438E-01 2.29894E-01 2.35768E-01 + 2.22455E-01 2.29859E-01 2.35857E-01 + 2.22347E-01 2.29775E-01 2.35705E-01 + 2.22248E-01 2.29808E-01 2.36011E-01 + * GROUP 2 + 8.06785E-01 8.61602E-01 8.99866E-01 + 8.03155E-01 8.58491E-01 8.92584E-01 + 8.06145E-01 8.52223E-01 8.90027E-01 + 8.11671E-01 8.62552E-01 9.03793E-01 + 8.12457E-01 8.58481E-01 8.95219E-01 + 8.07819E-01 8.53320E-01 8.92396E-01 + 8.13518E-01 8.63031E-01 9.05314E-01 + 8.09869E-01 8.57639E-01 8.98233E-01 + 8.02424E-01 8.53766E-01 8.93575E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.22225E-02 1.24066E-02 1.25397E-02 + 1.24532E-02 1.26542E-02 1.28111E-02 + 1.26749E-02 1.29013E-02 1.30696E-02 + 1.24314E-02 1.26195E-02 1.27593E-02 + 1.26591E-02 1.28733E-02 1.30318E-02 + 1.28890E-02 1.31182E-02 1.32839E-02 + 1.26634E-02 1.28645E-02 1.29976E-02 + 1.28803E-02 1.31057E-02 1.32613E-02 + 1.30982E-02 1.33454E-02 1.35283E-02 + * GROUP 2 + 1.68181E-01 1.68682E-01 1.69045E-01 + 1.77074E-01 1.78458E-01 1.79408E-01 + 1.85650E-01 1.87987E-01 1.89775E-01 + 1.68794E-01 1.69135E-01 1.69450E-01 + 1.77565E-01 1.78926E-01 1.79863E-01 + 1.86211E-01 1.88405E-01 1.90134E-01 + 1.69397E-01 1.69942E-01 1.70126E-01 + 1.78177E-01 1.79552E-01 1.80466E-01 + 1.86730E-01 1.89011E-01 1.90672E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.60472E-03 6.67512E-03 6.72465E-03 + 6.61970E-03 6.68439E-03 6.73999E-03 + 6.63042E-03 6.70045E-03 6.75401E-03 + 6.60123E-03 6.67253E-03 6.72076E-03 + 6.61227E-03 6.68496E-03 6.72957E-03 + 6.62741E-03 6.69879E-03 6.74429E-03 + 6.59401E-03 6.66310E-03 6.71412E-03 + 6.60144E-03 6.67646E-03 6.72040E-03 + 6.61221E-03 6.68593E-03 6.73900E-03 + * GROUP 2 + 2.49535E-01 2.49333E-01 2.49008E-01 + 2.49782E-01 2.49600E-01 2.49055E-01 + 2.49810E-01 2.49812E-01 2.49514E-01 + 2.50631E-01 2.50181E-01 2.49789E-01 + 2.50706E-01 2.50488E-01 2.49947E-01 + 2.50862E-01 2.50629E-01 2.50258E-01 + 2.51762E-01 2.51647E-01 2.51044E-01 + 2.51876E-01 2.51649E-01 2.51081E-01 + 2.51854E-01 2.51816E-01 2.51323E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.67907E-14 7.75970E-14 7.81652E-14 + 7.69585E-14 7.76983E-14 7.83420E-14 + 7.70765E-14 7.78805E-14 7.84931E-14 + 7.67445E-14 7.75648E-14 7.81213E-14 + 7.68716E-14 7.77042E-14 7.82190E-14 + 7.70373E-14 7.78570E-14 7.83811E-14 + 7.66583E-14 7.74515E-14 7.80394E-14 + 7.67372E-14 7.76016E-14 7.81070E-14 + 7.68572E-14 7.76999E-14 7.83135E-14 + * GROUP 2 + 2.90639E-12 2.90380E-12 2.89981E-12 + 2.90943E-12 2.90708E-12 2.90054E-12 + 2.90990E-12 2.90971E-12 2.90605E-12 + 2.91921E-12 2.91372E-12 2.90895E-12 + 2.92025E-12 2.91747E-12 2.91097E-12 + 2.92220E-12 2.91927E-12 2.91476E-12 + 2.93244E-12 2.93086E-12 2.92364E-12 + 2.93392E-12 2.93103E-12 2.92422E-12 + 2.93381E-12 2.93314E-12 2.92722E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.82394E-01 5.06347E-01 5.25416E-01 + 4.83302E-01 5.07445E-01 5.26554E-01 + 4.84120E-01 5.08340E-01 5.27517E-01 + 4.82725E-01 5.06726E-01 5.25653E-01 + 4.83569E-01 5.07730E-01 5.26903E-01 + 4.84419E-01 5.08601E-01 5.27761E-01 + 4.82945E-01 5.07012E-01 5.25978E-01 + 4.83960E-01 5.08011E-01 5.27066E-01 + 4.84604E-01 5.08854E-01 5.28089E-01 + * GROUP 1 -> 2 + 1.26253E-02 1.38531E-02 1.48493E-02 + 1.26332E-02 1.38848E-02 1.48811E-02 + 1.26251E-02 1.38948E-02 1.48919E-02 + 1.25297E-02 1.37734E-02 1.47567E-02 + 1.25329E-02 1.37890E-02 1.47817E-02 + 1.25337E-02 1.37871E-02 1.47978E-02 + 1.24218E-02 1.36628E-02 1.46478E-02 + 1.24469E-02 1.36773E-02 1.46759E-02 + 1.24305E-02 1.36826E-02 1.46837E-02 + * GROUP 2 -> 1 + 2.80801E-03 2.64796E-03 2.48440E-03 + 2.92050E-03 2.78207E-03 2.63490E-03 + 3.04055E-03 2.90541E-03 2.74723E-03 + 3.10925E-03 2.96193E-03 2.77967E-03 + 3.24494E-03 3.07068E-03 2.92098E-03 + 3.37365E-03 3.22482E-03 3.05449E-03 + 3.48274E-03 3.30572E-03 3.09948E-03 + 3.65886E-03 3.43850E-03 3.25618E-03 + 3.76788E-03 3.60792E-03 3.42439E-03 + * GROUP 2 -> 2 + 1.16566E+00 1.25725E+00 1.33140E+00 + 1.15878E+00 1.24860E+00 1.32215E+00 + 1.15187E+00 1.24064E+00 1.31285E+00 + 1.16584E+00 1.25672E+00 1.33106E+00 + 1.15846E+00 1.24868E+00 1.32181E+00 + 1.15160E+00 1.24055E+00 1.31265E+00 + 1.16449E+00 1.25648E+00 1.33073E+00 + 1.15748E+00 1.24840E+00 1.32154E+00 + 1.15129E+00 1.23961E+00 1.31203E+00 + * + * ADF Table + * + * GROUP 1 + 9.89869E-01 9.88324E-01 9.86944E-01 + 9.88584E-01 9.87786E-01 9.86466E-01 + 9.88247E-01 9.85974E-01 9.86072E-01 + 9.88287E-01 9.87289E-01 9.87508E-01 + 9.88519E-01 9.87631E-01 9.86089E-01 + 9.87497E-01 9.86911E-01 9.85543E-01 + 9.88180E-01 9.87276E-01 9.85982E-01 + 9.89271E-01 9.87045E-01 9.86564E-01 + 9.88146E-01 9.88385E-01 9.85272E-01 + * GROUP 2 + 1.17898E+00 1.17980E+00 1.18534E+00 + 1.17529E+00 1.16950E+00 1.17609E+00 + 1.17215E+00 1.17275E+00 1.17649E+00 + 1.17965E+00 1.18150E+00 1.18454E+00 + 1.17614E+00 1.17510E+00 1.17491E+00 + 1.17362E+00 1.17061E+00 1.17595E+00 + 1.17937E+00 1.18266E+00 1.18163E+00 + 1.17731E+00 1.17516E+00 1.17600E+00 + 1.17765E+00 1.17702E+00 1.17412E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.07131E-08 2.32795E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.34005E-02 3.06848E-02 1.16999E-01 3.06855E-01 8.78565E-01 2.94641E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 8.74140E-05 7.26097E-04 5.86616E-04 1.32407E-03 7.60024E-04 2.79045E-04 + * + * -------------------------------------------------------- + * BURNUP 37.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.22707E-01 2.30204E-01 2.36220E-01 + 2.22715E-01 2.30072E-01 2.36145E-01 + 2.22680E-01 2.30207E-01 2.36029E-01 + 2.22639E-01 2.30168E-01 2.36065E-01 + 2.22426E-01 2.30333E-01 2.36176E-01 + 2.22655E-01 2.30287E-01 2.36186E-01 + 2.22606E-01 2.29951E-01 2.35913E-01 + 2.22561E-01 2.30110E-01 2.36079E-01 + 2.22654E-01 2.30192E-01 2.35999E-01 + * GROUP 2 + 8.12380E-01 8.60515E-01 9.03306E-01 + 8.05783E-01 8.56442E-01 8.95060E-01 + 8.03823E-01 8.55250E-01 8.91611E-01 + 8.09971E-01 8.64030E-01 9.01880E-01 + 8.11984E-01 8.55407E-01 8.98723E-01 + 8.07007E-01 8.51009E-01 8.95901E-01 + 8.10265E-01 8.59484E-01 9.02755E-01 + 8.06859E-01 8.59512E-01 8.94201E-01 + 8.08279E-01 8.56099E-01 8.88606E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.22734E-02 1.24655E-02 1.25960E-02 + 1.25015E-02 1.27139E-02 1.28582E-02 + 1.27327E-02 1.29599E-02 1.31236E-02 + 1.24939E-02 1.26782E-02 1.28125E-02 + 1.27140E-02 1.29332E-02 1.30968E-02 + 1.29468E-02 1.31770E-02 1.33443E-02 + 1.27055E-02 1.29083E-02 1.30492E-02 + 1.29360E-02 1.31533E-02 1.33151E-02 + 1.31607E-02 1.33980E-02 1.35844E-02 + * GROUP 2 + 1.64398E-01 1.64837E-01 1.65112E-01 + 1.73077E-01 1.74575E-01 1.75471E-01 + 1.81905E-01 1.84179E-01 1.85726E-01 + 1.64726E-01 1.65293E-01 1.65540E-01 + 1.73615E-01 1.75013E-01 1.75986E-01 + 1.82205E-01 1.84583E-01 1.86084E-01 + 1.65417E-01 1.65993E-01 1.66113E-01 + 1.74388E-01 1.75503E-01 1.76684E-01 + 1.82853E-01 1.85078E-01 1.86814E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.48768E-03 6.55544E-03 6.60104E-03 + 6.49656E-03 6.56759E-03 6.61710E-03 + 6.51565E-03 6.58522E-03 6.63119E-03 + 6.48600E-03 6.54623E-03 6.59111E-03 + 6.49462E-03 6.56501E-03 6.61205E-03 + 6.50556E-03 6.57728E-03 6.62481E-03 + 6.46891E-03 6.53640E-03 6.58492E-03 + 6.48294E-03 6.54757E-03 6.59776E-03 + 6.49426E-03 6.56304E-03 6.61029E-03 + * GROUP 2 + 2.42306E-01 2.41965E-01 2.41521E-01 + 2.42181E-01 2.42145E-01 2.41524E-01 + 2.42579E-01 2.42500E-01 2.41844E-01 + 2.42947E-01 2.42855E-01 2.42351E-01 + 2.43182E-01 2.43025E-01 2.42539E-01 + 2.43220E-01 2.43286E-01 2.42551E-01 + 2.44207E-01 2.44133E-01 2.43428E-01 + 2.44611E-01 2.44008E-01 2.43813E-01 + 2.44412E-01 2.44279E-01 2.43923E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.54075E-14 7.61935E-14 7.67167E-14 + 7.55108E-14 7.63288E-14 7.68965E-14 + 7.57280E-14 7.65284E-14 7.70529E-14 + 7.53924E-14 7.60832E-14 7.65980E-14 + 7.54830E-14 7.62960E-14 7.68299E-14 + 7.56063E-14 7.64304E-14 7.69753E-14 + 7.51882E-14 7.59665E-14 7.65227E-14 + 7.53417E-14 7.60912E-14 7.66661E-14 + 7.54713E-14 7.62643E-14 7.68042E-14 + * GROUP 2 + 2.82132E-12 2.81711E-12 2.81173E-12 + 2.82002E-12 2.81937E-12 2.81194E-12 + 2.82480E-12 2.82367E-12 2.81585E-12 + 2.82882E-12 2.82752E-12 2.82143E-12 + 2.83172E-12 2.82967E-12 2.82381E-12 + 2.83231E-12 2.83285E-12 2.82411E-12 + 2.84354E-12 2.84245E-12 2.83403E-12 + 2.84842E-12 2.84116E-12 2.83869E-12 + 2.84624E-12 2.84448E-12 2.84015E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.82821E-01 5.06964E-01 5.25963E-01 + 4.83835E-01 5.07954E-01 5.27058E-01 + 4.84612E-01 5.08924E-01 5.28151E-01 + 4.83248E-01 5.07192E-01 5.26279E-01 + 4.84077E-01 5.08272E-01 5.27408E-01 + 4.84947E-01 5.09044E-01 5.28347E-01 + 4.83487E-01 5.07488E-01 5.26486E-01 + 4.84380E-01 5.08563E-01 5.27641E-01 + 4.85182E-01 5.09466E-01 5.28647E-01 + * GROUP 1 -> 2 + 1.26272E-02 1.38652E-02 1.48629E-02 + 1.26438E-02 1.38930E-02 1.48991E-02 + 1.26353E-02 1.39023E-02 1.49154E-02 + 1.25341E-02 1.37688E-02 1.47665E-02 + 1.25440E-02 1.37994E-02 1.47936E-02 + 1.25433E-02 1.37885E-02 1.48141E-02 + 1.24418E-02 1.36673E-02 1.46547E-02 + 1.24460E-02 1.36960E-02 1.46914E-02 + 1.24425E-02 1.36920E-02 1.47034E-02 + * GROUP 2 -> 1 + 2.73859E-03 2.58550E-03 2.43824E-03 + 2.85110E-03 2.71917E-03 2.56221E-03 + 2.98477E-03 2.84010E-03 2.69970E-03 + 3.02933E-03 2.86312E-03 2.70540E-03 + 3.18946E-03 3.00733E-03 2.85019E-03 + 3.30734E-03 3.17771E-03 3.01162E-03 + 3.40791E-03 3.19511E-03 3.03171E-03 + 3.54102E-03 3.36600E-03 3.20305E-03 + 3.71436E-03 3.51998E-03 3.34989E-03 + * GROUP 2 -> 2 + 1.16627E+00 1.25775E+00 1.33156E+00 + 1.15858E+00 1.24931E+00 1.32265E+00 + 1.15219E+00 1.24074E+00 1.31306E+00 + 1.16601E+00 1.25703E+00 1.33120E+00 + 1.15882E+00 1.24868E+00 1.32175E+00 + 1.15209E+00 1.24112E+00 1.31314E+00 + 1.16549E+00 1.25661E+00 1.33077E+00 + 1.15787E+00 1.24800E+00 1.32186E+00 + 1.15183E+00 1.24075E+00 1.31260E+00 + * + * ADF Table + * + * GROUP 1 + 9.88847E-01 9.88160E-01 9.87888E-01 + 9.89624E-01 9.87862E-01 9.86236E-01 + 9.88736E-01 9.87241E-01 9.85184E-01 + 9.88891E-01 9.88181E-01 9.86778E-01 + 9.89003E-01 9.86887E-01 9.85454E-01 + 9.89228E-01 9.87399E-01 9.86380E-01 + 9.90669E-01 9.87961E-01 9.86789E-01 + 9.88815E-01 9.87383E-01 9.86649E-01 + 9.88240E-01 9.87703E-01 9.85808E-01 + * GROUP 2 + 1.17347E+00 1.17113E+00 1.17360E+00 + 1.16848E+00 1.17138E+00 1.16724E+00 + 1.16634E+00 1.16570E+00 1.16739E+00 + 1.17052E+00 1.17216E+00 1.17185E+00 + 1.16549E+00 1.16666E+00 1.16565E+00 + 1.16421E+00 1.16686E+00 1.16349E+00 + 1.17382E+00 1.17199E+00 1.17275E+00 + 1.16650E+00 1.17139E+00 1.17055E+00 + 1.16334E+00 1.16437E+00 1.16396E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 5.07630E-08 2.33540E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.34099E-02 3.06985E-02 1.17082E-01 3.06843E-01 8.78799E-01 2.94537E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 9.73616E-05 7.29860E-04 5.96284E-04 1.31329E-03 7.97924E-04 2.76523E-04 diff --git a/smpl/xsec/SERPENT_CMM/refa.tab b/smpl/xsec/SERPENT_CMM/refa.tab new file mode 100644 index 0000000..b76de3e --- /dev/null +++ b/smpl/xsec/SERPENT_CMM/refa.tab @@ -0,0 +1,178 @@ + * INPUT CONTROL + 1 1 * ADF and CR + * Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 1 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + * + * -------------------------------------------------------- + * BURNUP 0.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 1.51007E-01 1.63020E-01 1.72582E-01 + 1.53495E-01 1.65475E-01 1.71190E-01 + 1.51529E-01 1.64498E-01 1.72586E-01 + * GROUP 2 + 1.18891E+00 1.29711E+00 1.38618E+00 + 1.17242E+00 1.27670E+00 1.36174E+00 + 1.16363E+00 1.26466E+00 1.34584E+00 + * + * Absorption XSEC Table + * + * GROUP 1 + 3.76623E-04 4.04948E-04 4.22551E-04 + 8.75700E-04 9.46193E-04 1.00281E-03 + 1.38396E-03 1.49462E-03 1.57938E-03 + * GROUP 2 + 8.94981E-03 9.81091E-03 1.05435E-02 + 2.54880E-02 2.79360E-02 2.99824E-02 + 4.14358E-02 4.53982E-02 4.85846E-02 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * GROUP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * GROUP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 5.85596E-01 6.27338E-01 6.63431E-01 + 5.87206E-01 6.32774E-01 6.66798E-01 + 5.88078E-01 6.31627E-01 6.65963E-01 + * GROUP 1 -> 2 + 3.84106E-02 4.12103E-02 4.36698E-02 + 3.86247E-02 4.13333E-02 4.35628E-02 + 3.85620E-02 4.11732E-02 4.32646E-02 + * GROUP 2 -> 1 + 2.44365E-04 2.15908E-04 2.04860E-04 + 4.94776E-04 4.96476E-04 4.54319E-04 + 8.30369E-04 7.27460E-04 7.25772E-04 + * GROUP 2 -> 2 + 1.83452E+00 1.99135E+00 2.12000E+00 + 1.80712E+00 1.96107E+00 2.08645E+00 + 1.78493E+00 1.93718E+00 2.05674E+00 + * + * ADF Table + * + * GROUP 1 + 1.00924E+00 1.00751E+00 1.01021E+00 + 1.00649E+00 1.00791E+00 1.01082E+00 + 1.00785E+00 1.00791E+00 1.01239E+00 + * GROUP 2 + 1.02785E+00 1.02447E+00 1.02312E+00 + 1.02726E+00 1.03023E+00 1.03533E+00 + 1.03073E+00 1.03173E+00 1.03631E+00 + * + * Transport XSEC Table + * + * GROUP 1 + 1.51007E-01 1.63020E-01 1.72582E-01 + 1.53495E-01 1.65475E-01 1.71190E-01 + 1.51529E-01 1.64498E-01 1.72586E-01 + * GROUP 2 + 1.18891E+00 1.29711E+00 1.38618E+00 + 1.17242E+00 1.27670E+00 1.36174E+00 + 1.16363E+00 1.26466E+00 1.34584E+00 + * + * Absorption XSEC Table + * + * GROUP 1 + 3.76623E-04 4.04948E-04 4.22551E-04 + 8.75700E-04 9.46193E-04 1.00281E-03 + 1.38396E-03 1.49462E-03 1.57938E-03 + * GROUP 2 + 8.94981E-03 9.81091E-03 1.05435E-02 + 2.54880E-02 2.79360E-02 2.99824E-02 + 4.14358E-02 4.53982E-02 4.85846E-02 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * GROUP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * GROUP 2 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + 0.00000E+00 0.00000E+00 0.00000E+00 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 5.85596E-01 6.27338E-01 6.63431E-01 + 5.87206E-01 6.32774E-01 6.66798E-01 + 5.88078E-01 6.31627E-01 6.65963E-01 + * GROUP 1 -> 2 + 3.84106E-02 4.12103E-02 4.36698E-02 + 3.86247E-02 4.13333E-02 4.35628E-02 + 3.85620E-02 4.11732E-02 4.32646E-02 + * GROUP 2 -> 1 + 2.44365E-04 2.15908E-04 2.04860E-04 + 4.94776E-04 4.96476E-04 4.54319E-04 + 8.30369E-04 7.27460E-04 7.25772E-04 + * GROUP 2 -> 2 + 1.83452E+00 1.99135E+00 2.12000E+00 + 1.80712E+00 1.96107E+00 2.08645E+00 + 1.78493E+00 1.93718E+00 2.05674E+00 + * + * ADF Table + * + * GROUP 1 + 1.00924E+00 1.00751E+00 1.01021E+00 + 1.00649E+00 1.00791E+00 1.01082E+00 + 1.00785E+00 1.00791E+00 1.01239E+00 + * GROUP 2 + 1.02785E+00 1.02447E+00 1.02312E+00 + 1.02726E+00 1.03023E+00 1.03533E+00 + 1.03073E+00 1.03173E+00 1.03631E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 0.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 8.15106E-08 2.79121E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 diff --git a/smpl/xsec/SERPENT_CMM/refr.tab b/smpl/xsec/SERPENT_CMM/refr.tab new file mode 100644 index 0000000..a127be8 --- /dev/null +++ b/smpl/xsec/SERPENT_CMM/refr.tab @@ -0,0 +1,177 @@ + * INPUT CONTROL + 1 1 * ADF and CR + * Mod Dens Boron ppm Fuel Temp Mod Temp + 1 3 1 1 + 0.00 1000.00 2000.00 + * + * -------------------------------------------------------- + * BURNUP 0.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.52383E-01 + 2.52078E-01 + 2.52853E-01 + * GROUP 2 + 1.36057E+00 + 1.32879E+00 + 1.30602E+00 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.93062E-03 + 2.28946E-03 + 2.65247E-03 + * GROUP 2 + 1.71151E-02 + 3.79706E-02 + 5.61592E-02 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 6.28627E-01 + 6.28598E-01 + 6.29403E-01 + * GROUP 1 -> 2 + 2.87682E-02 + 2.84275E-02 + 2.81124E-02 + * GROUP 2 -> 1 + 3.39726E-04 + 6.83220E-04 + 9.64640E-04 + * GROUP 2 -> 2 + 2.05028E+00 + 1.98425E+00 + 1.93400E+00 + * + * ADF Table + * + * GROUP 1 + 1.22678E+00 + 1.22730E+00 + 1.22499E+00 + * GROUP 2 + 1.60585E-01 + 2.40027E-01 + 2.90058E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.52383E-01 + 2.52078E-01 + 2.52853E-01 + * GROUP 2 + 1.36057E+00 + 1.32879E+00 + 1.30602E+00 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.93062E-03 + 2.28946E-03 + 2.65247E-03 + * GROUP 2 + 1.71151E-02 + 3.79706E-02 + 5.61592E-02 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * GROUP 2 + 0.00000E+00 + 0.00000E+00 + 0.00000E+00 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 6.28627E-01 + 6.28598E-01 + 6.29403E-01 + * GROUP 1 -> 2 + 2.87682E-02 + 2.84275E-02 + 2.81124E-02 + * GROUP 2 -> 1 + 3.39726E-04 + 6.83220E-04 + 9.64640E-04 + * GROUP 2 -> 2 + 2.05028E+00 + 1.98425E+00 + 1.93400E+00 + * + * ADF Table + * + * GROUP 1 + 1.22678E+00 + 1.22730E+00 + 1.22499E+00 + * GROUP 2 + 1.60585E-01 + 2.40027E-01 + 2.90058E-01 + * + * Fission Spectrum + * + * GROUP 1 2 + 0.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 7.54612E-08 2.74339E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 diff --git a/smpl/xsec/SERPENT_CMM/u42.tab b/smpl/xsec/SERPENT_CMM/u42.tab new file mode 100644 index 0000000..f67628a --- /dev/null +++ b/smpl/xsec/SERPENT_CMM/u42.tab @@ -0,0 +1,2387 @@ + * INPUT CONTROL + 1 1 * ADF and CR + * Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 + * + * -------------------------------------------------------- + * BURNUP 0.15 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19922E-01 2.28188E-01 2.34517E-01 + 2.20052E-01 2.28020E-01 2.34544E-01 + 2.20014E-01 2.28149E-01 2.34711E-01 + 2.20107E-01 2.27953E-01 2.34608E-01 + 2.19982E-01 2.28090E-01 2.34279E-01 + 2.20044E-01 2.28056E-01 2.34263E-01 + 2.19932E-01 2.27978E-01 2.34361E-01 + 2.19852E-01 2.27748E-01 2.34500E-01 + 2.19979E-01 2.28067E-01 2.34511E-01 + * GROUP 2 + 7.78788E-01 8.31539E-01 8.73150E-01 + 7.74832E-01 8.21702E-01 8.66255E-01 + 7.68864E-01 8.19965E-01 8.56797E-01 + 7.77450E-01 8.30469E-01 8.71360E-01 + 7.67366E-01 8.21997E-01 8.59813E-01 + 7.66494E-01 8.18524E-01 8.57644E-01 + 7.74557E-01 8.29688E-01 8.70279E-01 + 7.73558E-01 8.23709E-01 8.64602E-01 + 7.69900E-01 8.17155E-01 8.56883E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 9.47897E-03 9.57637E-03 9.65248E-03 + 9.76274E-03 9.89214E-03 9.98037E-03 + 1.00410E-02 1.01971E-02 1.03069E-02 + 9.65820E-03 9.75747E-03 9.83306E-03 + 9.93680E-03 1.00700E-02 1.01582E-02 + 1.02184E-02 1.03659E-02 1.04925E-02 + 9.83463E-03 9.93447E-03 1.00183E-02 + 1.01164E-02 1.02559E-02 1.03488E-02 + 1.03948E-02 1.05548E-02 1.06791E-02 + * GROUP 2 + 1.04242E-01 1.06383E-01 1.08364E-01 + 1.12238E-01 1.15253E-01 1.17854E-01 + 1.20043E-01 1.23874E-01 1.27158E-01 + 1.03881E-01 1.06058E-01 1.08021E-01 + 1.11888E-01 1.14892E-01 1.17587E-01 + 1.19711E-01 1.23539E-01 1.26822E-01 + 1.03588E-01 1.05741E-01 1.07702E-01 + 1.11607E-01 1.14597E-01 1.17182E-01 + 1.19417E-01 1.23226E-01 1.26466E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.44369E-03 7.50656E-03 7.55029E-03 + 7.47898E-03 7.54397E-03 7.59247E-03 + 7.50193E-03 7.57819E-03 7.62684E-03 + 7.44737E-03 7.50729E-03 7.55503E-03 + 7.47837E-03 7.54658E-03 7.59466E-03 + 7.50984E-03 7.57266E-03 7.63209E-03 + 7.44551E-03 7.50972E-03 7.55746E-03 + 7.47516E-03 7.54763E-03 7.59615E-03 + 7.50294E-03 7.57356E-03 7.62676E-03 + * GROUP 2 + 1.53146E-01 1.55743E-01 1.58251E-01 + 1.51378E-01 1.53941E-01 1.56179E-01 + 1.49599E-01 1.52028E-01 1.54215E-01 + 1.52609E-01 1.55232E-01 1.57728E-01 + 1.50865E-01 1.53364E-01 1.55713E-01 + 1.49175E-01 1.51561E-01 1.53773E-01 + 1.52171E-01 1.54709E-01 1.57187E-01 + 1.50449E-01 1.52944E-01 1.55152E-01 + 1.48707E-01 1.51145E-01 1.53243E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 9.57487E-14 9.65312E-14 9.70722E-14 + 9.62417E-14 9.70472E-14 9.76397E-14 + 9.65538E-14 9.75060E-14 9.81148E-14 + 9.57989E-14 9.65405E-14 9.71281E-14 + 9.62279E-14 9.70747E-14 9.76710E-14 + 9.66545E-14 9.74344E-14 9.81712E-14 + 9.57716E-14 9.65669E-14 9.71620E-14 + 9.61807E-14 9.70807E-14 9.76798E-14 + 9.65632E-14 9.74368E-14 9.81064E-14 + * GROUP 2 + 2.03615E-12 2.07071E-12 2.10407E-12 + 2.01263E-12 2.04674E-12 2.07650E-12 + 1.98898E-12 2.02129E-12 2.05038E-12 + 2.02901E-12 2.06391E-12 2.09710E-12 + 2.00580E-12 2.03906E-12 2.07030E-12 + 1.98334E-12 2.01506E-12 2.04450E-12 + 2.02318E-12 2.05695E-12 2.08991E-12 + 2.00027E-12 2.03347E-12 2.06285E-12 + 1.97710E-12 2.00954E-12 2.03745E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.81284E-01 5.06483E-01 5.26345E-01 + 4.82958E-01 5.08286E-01 5.28264E-01 + 4.84316E-01 5.09921E-01 5.30047E-01 + 4.81573E-01 5.06718E-01 5.26592E-01 + 4.83202E-01 5.08528E-01 5.28611E-01 + 4.84615E-01 5.10077E-01 5.30248E-01 + 4.81850E-01 5.06936E-01 5.26740E-01 + 4.83435E-01 5.08752E-01 5.28784E-01 + 4.84785E-01 5.10223E-01 5.30563E-01 + * GROUP 1 -> 2 + 1.51371E-02 1.65058E-02 1.75918E-02 + 1.52575E-02 1.66553E-02 1.77629E-02 + 1.53333E-02 1.67595E-02 1.78770E-02 + 1.50803E-02 1.64528E-02 1.75410E-02 + 1.52055E-02 1.65975E-02 1.77159E-02 + 1.52838E-02 1.66995E-02 1.78273E-02 + 1.50284E-02 1.64006E-02 1.74647E-02 + 1.51501E-02 1.65392E-02 1.76507E-02 + 1.52237E-02 1.66387E-02 1.77622E-02 + * GROUP 2 -> 1 + 1.83474E-03 1.75620E-03 1.67932E-03 + 1.94475E-03 1.87542E-03 1.79595E-03 + 2.06984E-03 2.00036E-03 1.91650E-03 + 2.04356E-03 1.94195E-03 1.85334E-03 + 2.17409E-03 2.08126E-03 1.99836E-03 + 2.30007E-03 2.20234E-03 2.12829E-03 + 2.28667E-03 2.17174E-03 2.08449E-03 + 2.43578E-03 2.33301E-03 2.22327E-03 + 2.57112E-03 2.46130E-03 2.38010E-03 + * GROUP 2 -> 2 + 1.19563E+00 1.29057E+00 1.36720E+00 + 1.18701E+00 1.28037E+00 1.35588E+00 + 1.17924E+00 1.27073E+00 1.34614E+00 + 1.19471E+00 1.28980E+00 1.36647E+00 + 1.18630E+00 1.27979E+00 1.35541E+00 + 1.17851E+00 1.27047E+00 1.34507E+00 + 1.19381E+00 1.28828E+00 1.36572E+00 + 1.18581E+00 1.27871E+00 1.35446E+00 + 1.17824E+00 1.26975E+00 1.34399E+00 + * + * ADF Table + * + * GROUP 1 + 1.00709E+00 1.00855E+00 1.00831E+00 + 1.00766E+00 1.00858E+00 1.00820E+00 + 1.00957E+00 1.00923E+00 1.00913E+00 + 1.00886E+00 1.00803E+00 1.00826E+00 + 1.00840E+00 1.00817E+00 1.00898E+00 + 1.00745E+00 1.00894E+00 1.00982E+00 + 1.00760E+00 1.00781E+00 1.00786E+00 + 1.00807E+00 1.00845E+00 1.00826E+00 + 1.00734E+00 1.00845E+00 1.00928E+00 + * GROUP 2 + 1.02494E+00 1.02863E+00 1.02819E+00 + 1.02772E+00 1.02750E+00 1.02765E+00 + 1.03091E+00 1.02874E+00 1.03073E+00 + 1.02727E+00 1.02698E+00 1.02951E+00 + 1.02616E+00 1.02892E+00 1.02814E+00 + 1.02760E+00 1.03005E+00 1.02932E+00 + 1.02533E+00 1.02586E+00 1.02536E+00 + 1.02641E+00 1.02751E+00 1.02890E+00 + 1.02637E+00 1.02891E+00 1.03135E+00 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21334E-01 2.28922E-01 2.34962E-01 + 2.21539E-01 2.29076E-01 2.34830E-01 + 2.21472E-01 2.29121E-01 2.34907E-01 + 2.21215E-01 2.28970E-01 2.34882E-01 + 2.21547E-01 2.29015E-01 2.35125E-01 + 2.21524E-01 2.28947E-01 2.34889E-01 + 2.21206E-01 2.28743E-01 2.34968E-01 + 2.21296E-01 2.28833E-01 2.34993E-01 + 2.21362E-01 2.28769E-01 2.34978E-01 + * GROUP 2 + 7.79366E-01 8.25804E-01 8.63122E-01 + 7.72086E-01 8.18423E-01 8.60030E-01 + 7.73861E-01 8.16566E-01 8.50972E-01 + 7.76136E-01 8.23428E-01 8.62258E-01 + 7.75995E-01 8.23690E-01 8.58745E-01 + 7.69398E-01 8.13123E-01 8.55414E-01 + 7.75009E-01 8.23986E-01 8.65808E-01 + 7.72571E-01 8.18422E-01 8.59332E-01 + 7.67042E-01 8.18169E-01 8.52910E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.51342E-02 1.53168E-02 1.54454E-02 + 1.53485E-02 1.55601E-02 1.56982E-02 + 1.55651E-02 1.57906E-02 1.59718E-02 + 1.52849E-02 1.54648E-02 1.56024E-02 + 1.55022E-02 1.57152E-02 1.58808E-02 + 1.57062E-02 1.59491E-02 1.61184E-02 + 1.54318E-02 1.56235E-02 1.57690E-02 + 1.56510E-02 1.58649E-02 1.60241E-02 + 1.58551E-02 1.60828E-02 1.62696E-02 + * GROUP 2 + 1.36932E-01 1.38892E-01 1.40788E-01 + 1.44510E-01 1.47264E-01 1.49684E-01 + 1.52032E-01 1.55378E-01 1.58473E-01 + 1.36619E-01 1.38561E-01 1.40332E-01 + 1.44220E-01 1.47078E-01 1.49371E-01 + 1.51668E-01 1.55203E-01 1.58145E-01 + 1.36310E-01 1.38248E-01 1.39980E-01 + 1.43889E-01 1.46729E-01 1.48954E-01 + 1.51301E-01 1.54798E-01 1.57910E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.15703E-03 7.24813E-03 7.31550E-03 + 7.17339E-03 7.25984E-03 7.33529E-03 + 7.18471E-03 7.28120E-03 7.35016E-03 + 7.15697E-03 7.24331E-03 7.31629E-03 + 7.16615E-03 7.26793E-03 7.33358E-03 + 7.18776E-03 7.27996E-03 7.34797E-03 + 7.15654E-03 7.24932E-03 7.31541E-03 + 7.16443E-03 7.26526E-03 7.33064E-03 + 7.18252E-03 7.28089E-03 7.34384E-03 + * GROUP 2 + 1.57879E-01 1.60927E-01 1.63866E-01 + 1.56262E-01 1.59037E-01 1.61689E-01 + 1.54555E-01 1.57378E-01 1.59749E-01 + 1.57540E-01 1.60453E-01 1.63169E-01 + 1.55743E-01 1.58702E-01 1.61119E-01 + 1.54073E-01 1.56915E-01 1.59188E-01 + 1.56860E-01 1.59814E-01 1.62589E-01 + 1.55190E-01 1.58151E-01 1.60617E-01 + 1.53386E-01 1.56306E-01 1.58817E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 9.19069E-14 9.30630E-14 9.39103E-14 + 9.21137E-14 9.31987E-14 9.41519E-14 + 9.22494E-14 9.34592E-14 9.43229E-14 + 9.19008E-14 9.29925E-14 9.39166E-14 + 9.20098E-14 9.32995E-14 9.41209E-14 + 9.22781E-14 9.34373E-14 9.42902E-14 + 9.18823E-14 9.30589E-14 9.38935E-14 + 9.19795E-14 9.32525E-14 9.40750E-14 + 9.21952E-14 9.34319E-14 9.42253E-14 + * GROUP 2 + 2.09905E-12 2.13960E-12 2.17870E-12 + 2.07754E-12 2.11446E-12 2.14973E-12 + 2.05483E-12 2.09239E-12 2.12393E-12 + 2.09454E-12 2.13329E-12 2.16942E-12 + 2.07063E-12 2.11000E-12 2.14215E-12 + 2.04842E-12 2.08623E-12 2.11646E-12 + 2.08550E-12 2.12479E-12 2.16170E-12 + 2.06327E-12 2.10267E-12 2.13547E-12 + 2.03928E-12 2.07813E-12 2.11154E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.76165E-01 4.99919E-01 5.18639E-01 + 4.76826E-01 5.00573E-01 5.19311E-01 + 4.77262E-01 5.01088E-01 5.20038E-01 + 4.76376E-01 5.00002E-01 5.18769E-01 + 4.76955E-01 5.00741E-01 5.19648E-01 + 4.77500E-01 5.01261E-01 5.20106E-01 + 4.76560E-01 5.00177E-01 5.19022E-01 + 4.77093E-01 5.00922E-01 5.19669E-01 + 4.77596E-01 5.01324E-01 5.20311E-01 + * GROUP 1 -> 2 + 1.17348E-02 1.29950E-02 1.39920E-02 + 1.17285E-02 1.29931E-02 1.39903E-02 + 1.16970E-02 1.29575E-02 1.39762E-02 + 1.16827E-02 1.29301E-02 1.39224E-02 + 1.16692E-02 1.29254E-02 1.39227E-02 + 1.16473E-02 1.29045E-02 1.38993E-02 + 1.16292E-02 1.28671E-02 1.38599E-02 + 1.16008E-02 1.28672E-02 1.38546E-02 + 1.15826E-02 1.28382E-02 1.38386E-02 + * GROUP 2 -> 1 + 2.24293E-03 2.14593E-03 2.05927E-03 + 2.35154E-03 2.24864E-03 2.15416E-03 + 2.45856E-03 2.36885E-03 2.26060E-03 + 2.49280E-03 2.37823E-03 2.26919E-03 + 2.60336E-03 2.49307E-03 2.39133E-03 + 2.74681E-03 2.65015E-03 2.51312E-03 + 2.80928E-03 2.70723E-03 2.56638E-03 + 2.94149E-03 2.82060E-03 2.69131E-03 + 3.07594E-03 2.94903E-03 2.84867E-03 + * GROUP 2 -> 2 + 1.14230E+00 1.23126E+00 1.30336E+00 + 1.13533E+00 1.22281E+00 1.29442E+00 + 1.12898E+00 1.21510E+00 1.28587E+00 + 1.14129E+00 1.23027E+00 1.30279E+00 + 1.13493E+00 1.22214E+00 1.29402E+00 + 1.12830E+00 1.21476E+00 1.28531E+00 + 1.14090E+00 1.22923E+00 1.30181E+00 + 1.13384E+00 1.22179E+00 1.29295E+00 + 1.12825E+00 1.21415E+00 1.28444E+00 + * + * ADF Table + * + * GROUP 1 + 1.06625E+00 1.07126E+00 1.07242E+00 + 1.06453E+00 1.06811E+00 1.07157E+00 + 1.06379E+00 1.06675E+00 1.06974E+00 + 1.06639E+00 1.07043E+00 1.07244E+00 + 1.06527E+00 1.06816E+00 1.07167E+00 + 1.06291E+00 1.06673E+00 1.06894E+00 + 1.06628E+00 1.06976E+00 1.07300E+00 + 1.06491E+00 1.06780E+00 1.07061E+00 + 1.06286E+00 1.06709E+00 1.06833E+00 + * GROUP 2 + 1.42622E+00 1.43355E+00 1.43661E+00 + 1.41603E+00 1.42595E+00 1.42545E+00 + 1.41563E+00 1.41657E+00 1.41853E+00 + 1.42616E+00 1.42786E+00 1.44002E+00 + 1.42142E+00 1.42208E+00 1.42855E+00 + 1.41284E+00 1.41724E+00 1.41832E+00 + 1.42602E+00 1.43331E+00 1.43822E+00 + 1.41883E+00 1.41885E+00 1.42658E+00 + 1.41502E+00 1.41594E+00 1.41324E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.70556E-08 2.23605E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33659E-02 3.25396E-02 1.21201E-01 3.07150E-01 8.66716E-01 2.91141E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 2.14291E-04 1.17806E-03 1.22003E-03 2.80494E-03 1.27269E-03 5.33499E-04 + * + * -------------------------------------------------------- + * BURNUP 17.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19834E-01 2.27857E-01 2.34178E-01 + 2.19815E-01 2.27684E-01 2.34060E-01 + 2.19769E-01 2.27795E-01 2.34142E-01 + 2.19720E-01 2.27740E-01 2.34060E-01 + 2.19653E-01 2.27790E-01 2.34005E-01 + 2.19849E-01 2.27743E-01 2.34042E-01 + 2.19461E-01 2.27601E-01 2.33781E-01 + 2.19555E-01 2.27466E-01 2.34041E-01 + 2.19588E-01 2.27812E-01 2.34061E-01 + * GROUP 2 + 7.99848E-01 8.53657E-01 8.93910E-01 + 8.01000E-01 8.48804E-01 8.90166E-01 + 7.89275E-01 8.38003E-01 8.81207E-01 + 8.00950E-01 8.50551E-01 8.94990E-01 + 7.95901E-01 8.44359E-01 8.84540E-01 + 7.91909E-01 8.41041E-01 8.81075E-01 + 7.97459E-01 8.51184E-01 8.93880E-01 + 7.95530E-01 8.45737E-01 8.89280E-01 + 7.92827E-01 8.41547E-01 8.83085E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 9.97429E-03 1.00903E-02 1.01770E-02 + 1.02740E-02 1.04076E-02 1.05182E-02 + 1.05517E-02 1.07154E-02 1.08498E-02 + 1.01813E-02 1.02907E-02 1.03824E-02 + 1.04669E-02 1.06149E-02 1.07171E-02 + 1.07453E-02 1.09157E-02 1.10511E-02 + 1.03806E-02 1.04942E-02 1.05979E-02 + 1.06657E-02 1.08181E-02 1.09293E-02 + 1.09439E-02 1.11243E-02 1.12538E-02 + * GROUP 2 + 1.03677E-01 1.04972E-01 1.05994E-01 + 1.12556E-01 1.14638E-01 1.16461E-01 + 1.21063E-01 1.24066E-01 1.26628E-01 + 1.03637E-01 1.04837E-01 1.05905E-01 + 1.12461E-01 1.14536E-01 1.16324E-01 + 1.21093E-01 1.24010E-01 1.26462E-01 + 1.03635E-01 1.04899E-01 1.05899E-01 + 1.12439E-01 1.14527E-01 1.16294E-01 + 1.20999E-01 1.24001E-01 1.26443E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.24745E-03 6.30212E-03 6.34206E-03 + 6.27432E-03 6.33300E-03 6.37658E-03 + 6.29564E-03 6.35280E-03 6.39890E-03 + 6.24266E-03 6.29529E-03 6.33626E-03 + 6.26714E-03 6.32581E-03 6.36257E-03 + 6.28656E-03 6.34585E-03 6.38945E-03 + 6.23508E-03 6.28165E-03 6.33188E-03 + 6.25594E-03 6.31983E-03 6.36074E-03 + 6.27906E-03 6.34219E-03 6.37977E-03 + * GROUP 2 + 1.59245E-01 1.60500E-01 1.61440E-01 + 1.58490E-01 1.59515E-01 1.60507E-01 + 1.57491E-01 1.58597E-01 1.59585E-01 + 1.59206E-01 1.60297E-01 1.61326E-01 + 1.58386E-01 1.59402E-01 1.60334E-01 + 1.57637E-01 1.58597E-01 1.59381E-01 + 1.59250E-01 1.60459E-01 1.61350E-01 + 1.58422E-01 1.59453E-01 1.60364E-01 + 1.57573E-01 1.58681E-01 1.59473E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.82687E-14 7.89306E-14 7.94132E-14 + 7.86231E-14 7.93329E-14 7.98642E-14 + 7.89058E-14 7.95998E-14 8.01560E-14 + 7.82048E-14 7.88402E-14 7.93348E-14 + 7.85330E-14 7.92401E-14 7.96866E-14 + 7.87872E-14 7.95090E-14 8.00302E-14 + 7.81053E-14 7.86625E-14 7.92727E-14 + 7.83846E-14 7.91550E-14 7.96567E-14 + 7.86794E-14 7.94534E-14 7.99002E-14 + * GROUP 2 + 2.01147E-12 2.02915E-12 2.04266E-12 + 2.00072E-12 2.01541E-12 2.02949E-12 + 1.98701E-12 2.00259E-12 2.01654E-12 + 2.01045E-12 2.02605E-12 2.04070E-12 + 1.99890E-12 2.01344E-12 2.02680E-12 + 1.98829E-12 2.00203E-12 2.01349E-12 + 2.01031E-12 2.02737E-12 2.04033E-12 + 1.99866E-12 2.01343E-12 2.02648E-12 + 1.98684E-12 2.00246E-12 2.01394E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.82844E-01 5.07892E-01 5.27738E-01 + 4.84527E-01 5.09752E-01 5.29794E-01 + 4.85955E-01 5.11341E-01 5.31640E-01 + 4.83108E-01 5.08058E-01 5.27926E-01 + 4.84788E-01 5.10029E-01 5.30053E-01 + 4.86157E-01 5.11662E-01 5.31823E-01 + 4.83376E-01 5.08516E-01 5.28214E-01 + 4.85110E-01 5.10231E-01 5.30333E-01 + 4.86453E-01 5.11906E-01 5.32061E-01 + * GROUP 1 -> 2 + 1.47113E-02 1.60548E-02 1.71270E-02 + 1.48287E-02 1.62116E-02 1.73011E-02 + 1.49183E-02 1.63193E-02 1.74455E-02 + 1.46308E-02 1.59737E-02 1.70553E-02 + 1.47579E-02 1.61340E-02 1.72247E-02 + 1.48343E-02 1.62413E-02 1.73512E-02 + 1.45557E-02 1.59155E-02 1.69704E-02 + 1.46895E-02 1.60495E-02 1.71495E-02 + 1.47681E-02 1.61590E-02 1.72742E-02 + * GROUP 2 -> 1 + 1.83128E-03 1.73886E-03 1.63725E-03 + 1.96714E-03 1.86843E-03 1.77298E-03 + 2.10276E-03 2.00284E-03 1.91219E-03 + 2.03060E-03 1.92226E-03 1.83432E-03 + 2.17958E-03 2.07341E-03 1.96869E-03 + 2.34648E-03 2.23249E-03 2.11215E-03 + 2.28175E-03 2.14882E-03 2.04977E-03 + 2.44950E-03 2.34574E-03 2.22629E-03 + 2.60045E-03 2.49775E-03 2.37354E-03 + * GROUP 2 -> 2 + 1.21077E+00 1.30587E+00 1.38367E+00 + 1.20142E+00 1.29539E+00 1.37200E+00 + 1.19312E+00 1.28548E+00 1.36086E+00 + 1.20980E+00 1.30574E+00 1.38340E+00 + 1.20082E+00 1.29519E+00 1.37144E+00 + 1.19236E+00 1.28461E+00 1.36043E+00 + 1.20926E+00 1.30419E+00 1.38280E+00 + 1.20007E+00 1.29448E+00 1.37070E+00 + 1.19206E+00 1.28398E+00 1.35944E+00 + * + * ADF Table + * + * GROUP 1 + 9.99513E-01 9.99217E-01 9.99446E-01 + 1.00019E+00 1.00030E+00 1.00121E+00 + 1.00197E+00 1.00149E+00 1.00139E+00 + 9.99357E-01 9.98270E-01 9.98834E-01 + 1.00074E+00 1.00018E+00 1.00055E+00 + 1.00203E+00 1.00220E+00 1.00081E+00 + 9.99582E-01 9.99782E-01 9.98635E-01 + 1.00147E+00 1.00136E+00 9.99865E-01 + 1.00174E+00 1.00260E+00 1.00167E+00 + * GROUP 2 + 9.57118E-01 9.58851E-01 9.59466E-01 + 9.65204E-01 9.65017E-01 9.65625E-01 + 9.70499E-01 9.71152E-01 9.67762E-01 + 9.59826E-01 9.57725E-01 9.61144E-01 + 9.64664E-01 9.63925E-01 9.66148E-01 + 9.70675E-01 9.69946E-01 9.72791E-01 + 9.60600E-01 9.57788E-01 9.60338E-01 + 9.66950E-01 9.66644E-01 9.66327E-01 + 9.71693E-01 9.69864E-01 9.69689E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21195E-01 2.28943E-01 2.34713E-01 + 2.21387E-01 2.28816E-01 2.34695E-01 + 2.21194E-01 2.28778E-01 2.34734E-01 + 2.20936E-01 2.28498E-01 2.34561E-01 + 2.21239E-01 2.28562E-01 2.34624E-01 + 2.21048E-01 2.28685E-01 2.34454E-01 + 2.20872E-01 2.28585E-01 2.34440E-01 + 2.20916E-01 2.28512E-01 2.34364E-01 + 2.21187E-01 2.28578E-01 2.34487E-01 + * GROUP 2 + 7.96215E-01 8.47000E-01 8.83467E-01 + 7.97666E-01 8.41069E-01 8.73850E-01 + 7.89926E-01 8.41025E-01 8.72423E-01 + 7.97365E-01 8.48159E-01 8.85002E-01 + 7.92877E-01 8.42232E-01 8.82816E-01 + 7.93197E-01 8.36801E-01 8.72188E-01 + 7.99133E-01 8.45790E-01 8.84747E-01 + 7.91072E-01 8.43202E-01 8.81936E-01 + 7.90619E-01 8.38089E-01 8.78109E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.55693E-02 1.57647E-02 1.59230E-02 + 1.57714E-02 1.60015E-02 1.61698E-02 + 1.59726E-02 1.62247E-02 1.64165E-02 + 1.57194E-02 1.59325E-02 1.60954E-02 + 1.59318E-02 1.61723E-02 1.63422E-02 + 1.61309E-02 1.63903E-02 1.65843E-02 + 1.58871E-02 1.61019E-02 1.62673E-02 + 1.60800E-02 1.63459E-02 1.65143E-02 + 1.62895E-02 1.65442E-02 1.67456E-02 + * GROUP 2 + 1.41177E-01 1.42176E-01 1.43156E-01 + 1.49456E-01 1.51263E-01 1.52942E-01 + 1.57471E-01 1.60047E-01 1.62447E-01 + 1.41322E-01 1.42259E-01 1.43149E-01 + 1.49330E-01 1.51306E-01 1.52794E-01 + 1.57382E-01 1.60068E-01 1.62203E-01 + 1.41230E-01 1.42156E-01 1.43107E-01 + 1.49416E-01 1.51217E-01 1.52838E-01 + 1.57457E-01 1.59986E-01 1.62224E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.04648E-03 6.12167E-03 6.17773E-03 + 6.05469E-03 6.13517E-03 6.19342E-03 + 6.07417E-03 6.14870E-03 6.21039E-03 + 6.03388E-03 6.10925E-03 6.16891E-03 + 6.04765E-03 6.12575E-03 6.18683E-03 + 6.05905E-03 6.14113E-03 6.20205E-03 + 6.02708E-03 6.10957E-03 6.15840E-03 + 6.04115E-03 6.12184E-03 6.17813E-03 + 6.05209E-03 6.13839E-03 6.19179E-03 + * GROUP 2 + 1.66738E-01 1.68362E-01 1.69626E-01 + 1.66063E-01 1.67339E-01 1.68689E-01 + 1.65118E-01 1.66334E-01 1.67650E-01 + 1.66953E-01 1.68377E-01 1.69589E-01 + 1.65840E-01 1.67484E-01 1.68467E-01 + 1.65006E-01 1.66392E-01 1.67419E-01 + 1.66698E-01 1.68277E-01 1.69603E-01 + 1.65984E-01 1.67316E-01 1.68607E-01 + 1.65110E-01 1.66475E-01 1.67586E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.56289E-14 7.65477E-14 7.72400E-14 + 7.57193E-14 7.67034E-14 7.74095E-14 + 7.59419E-14 7.68454E-14 7.76016E-14 + 7.54654E-14 7.63813E-14 7.71178E-14 + 7.56129E-14 7.65695E-14 7.73236E-14 + 7.57404E-14 7.67428E-14 7.74892E-14 + 7.53583E-14 7.63768E-14 7.69724E-14 + 7.55238E-14 7.65118E-14 7.72014E-14 + 7.56447E-14 7.66703E-14 7.73438E-14 + * GROUP 2 + 2.10306E-12 2.12550E-12 2.14323E-12 + 2.09348E-12 2.11130E-12 2.13010E-12 + 2.08051E-12 2.09762E-12 2.11575E-12 + 2.10511E-12 2.12509E-12 2.14213E-12 + 2.09011E-12 2.11270E-12 2.12672E-12 + 2.07857E-12 2.09779E-12 2.11237E-12 + 2.10130E-12 2.12308E-12 2.14163E-12 + 2.09122E-12 2.10988E-12 2.12779E-12 + 2.07918E-12 2.09816E-12 2.11379E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.77692E-01 5.01472E-01 5.20292E-01 + 4.78309E-01 5.02041E-01 5.20833E-01 + 4.78797E-01 5.02408E-01 5.21308E-01 + 4.77924E-01 5.01554E-01 5.20324E-01 + 4.78491E-01 5.02178E-01 5.20990E-01 + 4.78879E-01 5.02664E-01 5.21488E-01 + 4.78119E-01 5.01752E-01 5.20450E-01 + 4.78546E-01 5.02394E-01 5.21190E-01 + 4.79013E-01 5.02650E-01 5.21513E-01 + * GROUP 1 -> 2 + 1.14102E-02 1.26547E-02 1.36348E-02 + 1.13949E-02 1.26308E-02 1.36187E-02 + 1.13693E-02 1.26069E-02 1.35916E-02 + 1.13424E-02 1.25702E-02 1.35507E-02 + 1.13230E-02 1.25556E-02 1.35419E-02 + 1.12948E-02 1.25270E-02 1.35199E-02 + 1.12666E-02 1.24953E-02 1.34686E-02 + 1.12507E-02 1.24758E-02 1.34653E-02 + 1.12207E-02 1.24369E-02 1.34304E-02 + * GROUP 2 -> 1 + 2.30070E-03 2.18972E-03 2.07923E-03 + 2.43085E-03 2.30799E-03 2.19889E-03 + 2.52480E-03 2.41455E-03 2.34517E-03 + 2.60125E-03 2.46093E-03 2.33251E-03 + 2.71572E-03 2.57446E-03 2.44861E-03 + 2.84351E-03 2.72115E-03 2.59099E-03 + 2.90476E-03 2.74419E-03 2.61917E-03 + 3.05672E-03 2.89880E-03 2.76451E-03 + 3.20318E-03 3.03249E-03 2.90064E-03 + * GROUP 2 -> 2 + 1.15357E+00 1.24339E+00 1.31647E+00 + 1.14628E+00 1.23455E+00 1.30693E+00 + 1.13972E+00 1.22672E+00 1.29784E+00 + 1.15234E+00 1.24238E+00 1.31582E+00 + 1.14596E+00 1.23435E+00 1.30598E+00 + 1.13878E+00 1.22652E+00 1.29739E+00 + 1.15221E+00 1.24128E+00 1.31517E+00 + 1.14491E+00 1.23336E+00 1.30550E+00 + 1.13829E+00 1.22562E+00 1.29626E+00 + * + * ADF Table + * + * GROUP 1 + 1.06066E+00 1.06349E+00 1.06563E+00 + 1.05959E+00 1.06253E+00 1.06443E+00 + 1.05783E+00 1.06230E+00 1.06248E+00 + 1.05946E+00 1.06288E+00 1.06518E+00 + 1.05872E+00 1.06285E+00 1.06434E+00 + 1.05863E+00 1.06153E+00 1.06369E+00 + 1.05995E+00 1.06292E+00 1.06572E+00 + 1.06050E+00 1.06245E+00 1.06448E+00 + 1.05760E+00 1.06062E+00 1.06337E+00 + * GROUP 2 + 1.37564E+00 1.37775E+00 1.38345E+00 + 1.36933E+00 1.37470E+00 1.37474E+00 + 1.36586E+00 1.37350E+00 1.37308E+00 + 1.37236E+00 1.37626E+00 1.38196E+00 + 1.37012E+00 1.37074E+00 1.37557E+00 + 1.36199E+00 1.36716E+00 1.37275E+00 + 1.37361E+00 1.38000E+00 1.38114E+00 + 1.36659E+00 1.37344E+00 1.37469E+00 + 1.36548E+00 1.36229E+00 1.37142E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.62427E-08 2.28453E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33659E-02 3.20900E-02 1.20371E-01 3.07651E-01 8.71063E-01 2.92001E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.75506E-04 9.95106E-04 9.48589E-04 2.27835E-03 1.10981E-03 4.19633E-04 + * + * -------------------------------------------------------- + * BURNUP 20.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19912E-01 2.27665E-01 2.34316E-01 + 2.19923E-01 2.27894E-01 2.34104E-01 + 2.19857E-01 2.27798E-01 2.34167E-01 + 2.19796E-01 2.27689E-01 2.33971E-01 + 2.19670E-01 2.27740E-01 2.33873E-01 + 2.19643E-01 2.27840E-01 2.34299E-01 + 2.19640E-01 2.27792E-01 2.33921E-01 + 2.19757E-01 2.27669E-01 2.33826E-01 + 2.19764E-01 2.27606E-01 2.33913E-01 + * GROUP 2 + 8.01224E-01 8.53203E-01 8.97490E-01 + 7.98708E-01 8.46290E-01 8.89874E-01 + 7.91353E-01 8.42618E-01 8.81894E-01 + 8.00929E-01 8.54147E-01 8.97894E-01 + 7.95160E-01 8.49162E-01 8.91747E-01 + 7.91820E-01 8.45424E-01 8.79092E-01 + 8.01383E-01 8.54331E-01 9.00846E-01 + 7.96441E-01 8.50436E-01 8.88556E-01 + 7.90491E-01 8.39712E-01 8.78254E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.00737E-02 1.01873E-02 1.02701E-02 + 1.03664E-02 1.05057E-02 1.06154E-02 + 1.06459E-02 1.08166E-02 1.09412E-02 + 1.02685E-02 1.03865E-02 1.04795E-02 + 1.05659E-02 1.07077E-02 1.08178E-02 + 1.08442E-02 1.10224E-02 1.11523E-02 + 1.04764E-02 1.06043E-02 1.06971E-02 + 1.07672E-02 1.09243E-02 1.10351E-02 + 1.10502E-02 1.12322E-02 1.13613E-02 + * GROUP 2 + 1.03179E-01 1.04358E-01 1.05322E-01 + 1.12105E-01 1.14117E-01 1.15843E-01 + 1.20755E-01 1.23609E-01 1.26092E-01 + 1.03146E-01 1.04266E-01 1.05315E-01 + 1.11994E-01 1.14080E-01 1.15767E-01 + 1.20665E-01 1.23564E-01 1.26023E-01 + 1.03163E-01 1.04294E-01 1.05255E-01 + 1.12029E-01 1.13991E-01 1.15770E-01 + 1.20667E-01 1.23562E-01 1.26033E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.09381E-03 6.14781E-03 6.18197E-03 + 6.11778E-03 6.17335E-03 6.21486E-03 + 6.13737E-03 6.19810E-03 6.24533E-03 + 6.08413E-03 6.13533E-03 6.17705E-03 + 6.10779E-03 6.16235E-03 6.20536E-03 + 6.12908E-03 6.18765E-03 6.22952E-03 + 6.07571E-03 6.13321E-03 6.17256E-03 + 6.09702E-03 6.15810E-03 6.19662E-03 + 6.12067E-03 6.17991E-03 6.22233E-03 + * GROUP 2 + 1.57124E-01 1.58165E-01 1.58996E-01 + 1.56447E-01 1.57327E-01 1.58142E-01 + 1.55694E-01 1.56501E-01 1.57335E-01 + 1.57117E-01 1.58055E-01 1.59030E-01 + 1.56316E-01 1.57328E-01 1.58070E-01 + 1.55621E-01 1.56510E-01 1.57323E-01 + 1.57200E-01 1.58155E-01 1.58968E-01 + 1.56459E-01 1.57264E-01 1.58166E-01 + 1.55716E-01 1.56618E-01 1.57432E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.60863E-14 7.67300E-14 7.71449E-14 + 7.64088E-14 7.70713E-14 7.75709E-14 + 7.66544E-14 7.73868E-14 7.79556E-14 + 7.59581E-14 7.65748E-14 7.70712E-14 + 7.62719E-14 7.69309E-14 7.74424E-14 + 7.65432E-14 7.72553E-14 7.77600E-14 + 7.58443E-14 7.65430E-14 7.70150E-14 + 7.61296E-14 7.68670E-14 7.73301E-14 + 7.64366E-14 7.71494E-14 7.76601E-14 + * GROUP 2 + 1.97525E-12 1.99015E-12 2.00229E-12 + 1.96553E-12 1.97830E-12 1.99012E-12 + 1.95490E-12 1.96668E-12 1.97868E-12 + 1.97465E-12 1.98822E-12 2.00214E-12 + 1.96337E-12 1.97777E-12 1.98871E-12 + 1.95351E-12 1.96627E-12 1.97798E-12 + 1.97497E-12 1.98880E-12 2.00070E-12 + 1.96451E-12 1.97631E-12 1.98925E-12 + 1.95401E-12 1.96701E-12 1.97872E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.83370E-01 5.08389E-01 5.28218E-01 + 4.85198E-01 5.10304E-01 5.30323E-01 + 4.86416E-01 5.11913E-01 5.32015E-01 + 4.83684E-01 5.08726E-01 5.28477E-01 + 4.85239E-01 5.10558E-01 5.30500E-01 + 4.86637E-01 5.12164E-01 5.32404E-01 + 4.83963E-01 5.08983E-01 5.28761E-01 + 4.85631E-01 5.10833E-01 5.30874E-01 + 4.86948E-01 5.12388E-01 5.32523E-01 + * GROUP 1 -> 2 + 1.46903E-02 1.60382E-02 1.71115E-02 + 1.48205E-02 1.61946E-02 1.72888E-02 + 1.49001E-02 1.63037E-02 1.74117E-02 + 1.46210E-02 1.59677E-02 1.70248E-02 + 1.47320E-02 1.61174E-02 1.72043E-02 + 1.48179E-02 1.62137E-02 1.73391E-02 + 1.45417E-02 1.58783E-02 1.69471E-02 + 1.46651E-02 1.60292E-02 1.71226E-02 + 1.47332E-02 1.61385E-02 1.72423E-02 + * GROUP 2 -> 1 + 1.81959E-03 1.71859E-03 1.62909E-03 + 1.93100E-03 1.85458E-03 1.77099E-03 + 2.08231E-03 2.00116E-03 1.92508E-03 + 2.02593E-03 1.90860E-03 1.80760E-03 + 2.17389E-03 2.05325E-03 1.96963E-03 + 2.31414E-03 2.20540E-03 2.11653E-03 + 2.26195E-03 2.14859E-03 2.03692E-03 + 2.42374E-03 2.30741E-03 2.20714E-03 + 2.58347E-03 2.48908E-03 2.38222E-03 + * GROUP 2 -> 2 + 1.21167E+00 1.30729E+00 1.38523E+00 + 1.20270E+00 1.29687E+00 1.37303E+00 + 1.19378E+00 1.28653E+00 1.36207E+00 + 1.21122E+00 1.30677E+00 1.38433E+00 + 1.20209E+00 1.29598E+00 1.37256E+00 + 1.19316E+00 1.28597E+00 1.36118E+00 + 1.21008E+00 1.30593E+00 1.38401E+00 + 1.20135E+00 1.29526E+00 1.37186E+00 + 1.19269E+00 1.28522E+00 1.36082E+00 + * + * ADF Table + * + * GROUP 1 + 1.00103E+00 9.99970E-01 9.98982E-01 + 1.00133E+00 1.00062E+00 1.00076E+00 + 1.00153E+00 1.00134E+00 1.00202E+00 + 9.99674E-01 9.98866E-01 9.99463E-01 + 1.00081E+00 1.00023E+00 1.00145E+00 + 1.00081E+00 1.00123E+00 1.00208E+00 + 9.99621E-01 9.99074E-01 9.98515E-01 + 9.99697E-01 1.00081E+00 9.99891E-01 + 1.00076E+00 1.00097E+00 1.00195E+00 + * GROUP 2 + 9.59268E-01 9.54867E-01 9.56749E-01 + 9.62771E-01 9.62561E-01 9.61052E-01 + 9.65306E-01 9.67766E-01 9.66404E-01 + 9.58131E-01 9.56058E-01 9.57691E-01 + 9.63494E-01 9.62591E-01 9.63341E-01 + 9.64256E-01 9.64458E-01 9.68779E-01 + 9.57536E-01 9.55290E-01 9.53535E-01 + 9.61262E-01 9.61987E-01 9.62801E-01 + 9.67800E-01 9.63922E-01 9.67838E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21239E-01 2.28821E-01 2.34736E-01 + 2.21407E-01 2.28869E-01 2.34675E-01 + 2.21307E-01 2.28781E-01 2.34527E-01 + 2.21200E-01 2.28777E-01 2.34596E-01 + 2.21281E-01 2.28704E-01 2.34436E-01 + 2.21138E-01 2.28580E-01 2.34607E-01 + 2.21189E-01 2.28617E-01 2.34519E-01 + 2.21039E-01 2.28684E-01 2.34757E-01 + 2.21159E-01 2.28593E-01 2.34533E-01 + * GROUP 2 + 7.98339E-01 8.49224E-01 8.86482E-01 + 7.96772E-01 8.46295E-01 8.85599E-01 + 7.94362E-01 8.39713E-01 8.77373E-01 + 7.97202E-01 8.47456E-01 8.82450E-01 + 7.93414E-01 8.43866E-01 8.81971E-01 + 7.91970E-01 8.41706E-01 8.74302E-01 + 7.98834E-01 8.48715E-01 8.86341E-01 + 7.92611E-01 8.40976E-01 8.76869E-01 + 7.88538E-01 8.38932E-01 8.75006E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.56522E-02 1.58621E-02 1.59903E-02 + 1.58487E-02 1.60876E-02 1.62466E-02 + 1.60431E-02 1.63133E-02 1.64886E-02 + 1.58054E-02 1.60134E-02 1.61629E-02 + 1.60155E-02 1.62431E-02 1.64226E-02 + 1.62067E-02 1.64692E-02 1.66605E-02 + 1.59711E-02 1.61988E-02 1.63587E-02 + 1.61730E-02 1.64314E-02 1.65893E-02 + 1.63708E-02 1.66440E-02 1.68291E-02 + * GROUP 2 + 1.40941E-01 1.41879E-01 1.42787E-01 + 1.49084E-01 1.50940E-01 1.52472E-01 + 1.57329E-01 1.59980E-01 1.62092E-01 + 1.40740E-01 1.41902E-01 1.42735E-01 + 1.49066E-01 1.50934E-01 1.52461E-01 + 1.57222E-01 1.59712E-01 1.62116E-01 + 1.41082E-01 1.41862E-01 1.42619E-01 + 1.49120E-01 1.50964E-01 1.52551E-01 + 1.57252E-01 1.59909E-01 1.61999E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.89872E-03 5.97610E-03 6.02836E-03 + 5.91034E-03 5.98735E-03 6.04076E-03 + 5.92160E-03 6.00374E-03 6.05839E-03 + 5.88785E-03 5.96470E-03 6.01733E-03 + 5.90030E-03 5.97837E-03 6.03567E-03 + 5.91186E-03 5.99475E-03 6.04784E-03 + 5.88247E-03 5.95934E-03 6.01393E-03 + 5.89298E-03 5.97388E-03 6.02602E-03 + 5.90354E-03 5.98162E-03 6.03824E-03 + * GROUP 2 + 1.64973E-01 1.66201E-01 1.67488E-01 + 1.64079E-01 1.65307E-01 1.66551E-01 + 1.63320E-01 1.64769E-01 1.65604E-01 + 1.64815E-01 1.66323E-01 1.67423E-01 + 1.63947E-01 1.65341E-01 1.66461E-01 + 1.63303E-01 1.64454E-01 1.65806E-01 + 1.65213E-01 1.66255E-01 1.67372E-01 + 1.64097E-01 1.65450E-01 1.66583E-01 + 1.63461E-01 1.64712E-01 1.65592E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.35197E-14 7.44667E-14 7.51021E-14 + 7.36604E-14 7.45848E-14 7.52356E-14 + 7.37700E-14 7.47715E-14 7.54341E-14 + 7.33750E-14 7.43116E-14 7.49558E-14 + 7.35167E-14 7.44625E-14 7.51611E-14 + 7.36443E-14 7.46465E-14 7.52869E-14 + 7.33022E-14 7.42371E-14 7.49024E-14 + 7.34108E-14 7.43976E-14 7.50371E-14 + 7.35207E-14 7.44724E-14 7.51724E-14 + * GROUP 2 + 2.07085E-12 2.08821E-12 2.10615E-12 + 2.05859E-12 2.07581E-12 2.09309E-12 + 2.04809E-12 2.06795E-12 2.08001E-12 + 2.06836E-12 2.08920E-12 2.10476E-12 + 2.05640E-12 2.07568E-12 2.09143E-12 + 2.04733E-12 2.06349E-12 2.08200E-12 + 2.07261E-12 2.08765E-12 2.10343E-12 + 2.05760E-12 2.07636E-12 2.09229E-12 + 2.04862E-12 2.06607E-12 2.07864E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.78087E-01 5.01899E-01 5.20542E-01 + 4.78623E-01 5.02421E-01 5.21100E-01 + 4.79025E-01 5.02731E-01 5.21592E-01 + 4.78302E-01 5.01913E-01 5.20657E-01 + 4.78841E-01 5.02484E-01 5.21310E-01 + 4.79162E-01 5.02883E-01 5.21685E-01 + 4.78474E-01 5.02110E-01 5.20870E-01 + 4.78915E-01 5.02738E-01 5.21481E-01 + 4.79363E-01 5.03096E-01 5.21863E-01 + * GROUP 1 -> 2 + 1.13746E-02 1.26205E-02 1.36026E-02 + 1.13721E-02 1.26067E-02 1.35927E-02 + 1.13392E-02 1.25642E-02 1.35675E-02 + 1.13109E-02 1.25411E-02 1.35230E-02 + 1.12972E-02 1.25293E-02 1.35127E-02 + 1.12619E-02 1.24844E-02 1.34791E-02 + 1.12347E-02 1.24602E-02 1.34322E-02 + 1.12183E-02 1.24443E-02 1.34263E-02 + 1.11797E-02 1.24112E-02 1.33948E-02 + * GROUP 2 -> 1 + 2.31051E-03 2.18312E-03 2.08337E-03 + 2.43354E-03 2.30792E-03 2.20528E-03 + 2.55929E-03 2.41486E-03 2.31694E-03 + 2.58792E-03 2.44562E-03 2.32399E-03 + 2.71919E-03 2.56274E-03 2.46611E-03 + 2.84311E-03 2.70091E-03 2.56784E-03 + 2.92263E-03 2.74711E-03 2.59793E-03 + 3.04380E-03 2.90025E-03 2.74393E-03 + 3.18533E-03 3.06097E-03 2.90289E-03 + * GROUP 2 -> 2 + 1.15433E+00 1.24458E+00 1.31787E+00 + 1.14746E+00 1.23558E+00 1.30801E+00 + 1.14093E+00 1.22749E+00 1.29923E+00 + 1.15388E+00 1.24361E+00 1.31664E+00 + 1.14692E+00 1.23503E+00 1.30763E+00 + 1.13961E+00 1.22728E+00 1.29831E+00 + 1.15286E+00 1.24337E+00 1.31648E+00 + 1.14561E+00 1.23425E+00 1.30660E+00 + 1.13964E+00 1.22627E+00 1.29753E+00 + * + * ADF Table + * + * GROUP 1 + 1.05997E+00 1.06343E+00 1.06548E+00 + 1.05952E+00 1.06252E+00 1.06506E+00 + 1.05835E+00 1.06214E+00 1.06327E+00 + 1.06128E+00 1.06377E+00 1.06627E+00 + 1.06015E+00 1.06262E+00 1.06442E+00 + 1.05846E+00 1.06108E+00 1.06370E+00 + 1.05991E+00 1.06365E+00 1.06409E+00 + 1.05959E+00 1.06195E+00 1.06380E+00 + 1.05830E+00 1.06035E+00 1.06340E+00 + * GROUP 2 + 1.37127E+00 1.37692E+00 1.37767E+00 + 1.36823E+00 1.37007E+00 1.37590E+00 + 1.35811E+00 1.36332E+00 1.36766E+00 + 1.37292E+00 1.37640E+00 1.37809E+00 + 1.36806E+00 1.37062E+00 1.37200E+00 + 1.36397E+00 1.36649E+00 1.36873E+00 + 1.36759E+00 1.37383E+00 1.37325E+00 + 1.36468E+00 1.37065E+00 1.37399E+00 + 1.36583E+00 1.36882E+00 1.36610E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.61811E-08 2.28910E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33820E-02 3.20593E-02 1.20285E-01 3.07974E-01 8.72014E-01 2.91862E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.65107E-04 9.82877E-04 9.29606E-04 2.14171E-03 1.12909E-03 4.40625E-04 + * + * -------------------------------------------------------- + * BURNUP 22.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19856E-01 2.27854E-01 2.34321E-01 + 2.20040E-01 2.27690E-01 2.33976E-01 + 2.19858E-01 2.27858E-01 2.34284E-01 + 2.19648E-01 2.27894E-01 2.34148E-01 + 2.19678E-01 2.27767E-01 2.34093E-01 + 2.19854E-01 2.27787E-01 2.34031E-01 + 2.19749E-01 2.27637E-01 2.34086E-01 + 2.19871E-01 2.27556E-01 2.33959E-01 + 2.19766E-01 2.27681E-01 2.33884E-01 + * GROUP 2 + 8.07008E-01 8.59081E-01 9.01289E-01 + 8.00381E-01 8.48183E-01 8.91182E-01 + 7.96709E-01 8.41419E-01 8.82811E-01 + 8.04672E-01 8.60068E-01 8.99693E-01 + 7.97598E-01 8.49204E-01 8.94561E-01 + 7.94259E-01 8.44385E-01 8.81560E-01 + 8.01893E-01 8.57053E-01 8.97377E-01 + 7.95353E-01 8.50122E-01 8.93434E-01 + 7.93184E-01 8.46239E-01 8.85150E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.01625E-02 1.02810E-02 1.03546E-02 + 1.04541E-02 1.06052E-02 1.07120E-02 + 1.07271E-02 1.08972E-02 1.10332E-02 + 1.03595E-02 1.04887E-02 1.05735E-02 + 1.06539E-02 1.08074E-02 1.09213E-02 + 1.09324E-02 1.11075E-02 1.12491E-02 + 1.05678E-02 1.06930E-02 1.07925E-02 + 1.08699E-02 1.10193E-02 1.11366E-02 + 1.11370E-02 1.13270E-02 1.14714E-02 + * GROUP 2 + 1.02595E-01 1.03710E-01 1.04606E-01 + 1.11579E-01 1.13489E-01 1.15242E-01 + 1.20285E-01 1.23073E-01 1.25548E-01 + 1.02553E-01 1.03673E-01 1.04570E-01 + 1.11506E-01 1.13469E-01 1.15150E-01 + 1.20207E-01 1.23033E-01 1.25433E-01 + 1.02681E-01 1.03694E-01 1.04599E-01 + 1.11587E-01 1.13552E-01 1.15203E-01 + 1.20241E-01 1.23095E-01 1.25469E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.94531E-03 5.99636E-03 6.03378E-03 + 5.96614E-03 6.02282E-03 6.06207E-03 + 5.98536E-03 6.04170E-03 6.08743E-03 + 5.93659E-03 5.98936E-03 6.02291E-03 + 5.95403E-03 6.00954E-03 6.05168E-03 + 5.97552E-03 6.03095E-03 6.07512E-03 + 5.92184E-03 5.97400E-03 6.01767E-03 + 5.94610E-03 6.00162E-03 6.04319E-03 + 5.96337E-03 6.02218E-03 6.06745E-03 + * GROUP 2 + 1.54736E-01 1.55653E-01 1.56342E-01 + 1.54122E-01 1.54829E-01 1.55663E-01 + 1.53447E-01 1.54139E-01 1.54950E-01 + 1.54722E-01 1.55634E-01 1.56321E-01 + 1.54072E-01 1.54858E-01 1.55578E-01 + 1.53403E-01 1.54152E-01 1.54828E-01 + 1.54989E-01 1.55726E-01 1.56433E-01 + 1.54304E-01 1.55093E-01 1.55767E-01 + 1.53591E-01 1.54380E-01 1.55032E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.39788E-14 7.45898E-14 7.50348E-14 + 7.42550E-14 7.49404E-14 7.54039E-14 + 7.45032E-14 7.51840E-14 7.57292E-14 + 7.38624E-14 7.45001E-14 7.48999E-14 + 7.40968E-14 7.47641E-14 7.52702E-14 + 7.43720E-14 7.50370E-14 7.55700E-14 + 7.36759E-14 7.43006E-14 7.48287E-14 + 7.39934E-14 7.46611E-14 7.51606E-14 + 7.42144E-14 7.49189E-14 7.54640E-14 + * GROUP 2 + 1.93645E-12 1.94970E-12 1.96001E-12 + 1.92757E-12 1.93812E-12 1.95013E-12 + 1.91802E-12 1.92824E-12 1.93987E-12 + 1.93573E-12 1.94894E-12 1.95917E-12 + 1.92643E-12 1.93794E-12 1.94850E-12 + 1.91696E-12 1.92791E-12 1.93781E-12 + 1.93838E-12 1.94942E-12 1.95994E-12 + 1.92863E-12 1.94024E-12 1.95021E-12 + 1.91861E-12 1.93010E-12 1.93969E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.83899E-01 5.08973E-01 5.28790E-01 + 4.85611E-01 5.10903E-01 5.30879E-01 + 4.86997E-01 5.12412E-01 5.32546E-01 + 4.84114E-01 5.09321E-01 5.29078E-01 + 4.85823E-01 5.11067E-01 5.31192E-01 + 4.87228E-01 5.12659E-01 5.32833E-01 + 4.84454E-01 5.09573E-01 5.29330E-01 + 4.86160E-01 5.11420E-01 5.31381E-01 + 4.87506E-01 5.12951E-01 5.33106E-01 + * GROUP 1 -> 2 + 1.46802E-02 1.60300E-02 1.71132E-02 + 1.48181E-02 1.61890E-02 1.72784E-02 + 1.48910E-02 1.62874E-02 1.74078E-02 + 1.46055E-02 1.59581E-02 1.70216E-02 + 1.47271E-02 1.61000E-02 1.71995E-02 + 1.48095E-02 1.62011E-02 1.73087E-02 + 1.45250E-02 1.58768E-02 1.69320E-02 + 1.46442E-02 1.60227E-02 1.71090E-02 + 1.47234E-02 1.61200E-02 1.72256E-02 + * GROUP 2 -> 1 + 1.80086E-03 1.70508E-03 1.60787E-03 + 1.94823E-03 1.85877E-03 1.76810E-03 + 2.07319E-03 1.97937E-03 1.89712E-03 + 2.00729E-03 1.89722E-03 1.78847E-03 + 2.16252E-03 2.04703E-03 1.95017E-03 + 2.30738E-03 2.20150E-03 2.10241E-03 + 2.24930E-03 2.13785E-03 2.00496E-03 + 2.41398E-03 2.30601E-03 2.19881E-03 + 2.58042E-03 2.45745E-03 2.36655E-03 + * GROUP 2 -> 2 + 1.21303E+00 1.30841E+00 1.38632E+00 + 1.20365E+00 1.29765E+00 1.37396E+00 + 1.19495E+00 1.28760E+00 1.36289E+00 + 1.21180E+00 1.30770E+00 1.38611E+00 + 1.20333E+00 1.29737E+00 1.37367E+00 + 1.19448E+00 1.28726E+00 1.36265E+00 + 1.21136E+00 1.30670E+00 1.38532E+00 + 1.20215E+00 1.29602E+00 1.37246E+00 + 1.19335E+00 1.28618E+00 1.36150E+00 + * + * ADF Table + * + * GROUP 1 + 1.00085E+00 9.99152E-01 9.99471E-01 + 1.00187E+00 1.00028E+00 9.99939E-01 + 1.00157E+00 1.00239E+00 1.00341E+00 + 9.99798E-01 9.99973E-01 9.99207E-01 + 1.00115E+00 1.00139E+00 1.00134E+00 + 1.00201E+00 1.00156E+00 1.00139E+00 + 1.00049E+00 1.00099E+00 9.99403E-01 + 1.00014E+00 1.00111E+00 1.00075E+00 + 1.00142E+00 1.00306E+00 1.00224E+00 + * GROUP 2 + 9.55051E-01 9.53771E-01 9.54804E-01 + 9.61283E-01 9.59080E-01 9.58700E-01 + 9.63807E-01 9.65232E-01 9.66882E-01 + 9.58094E-01 9.52928E-01 9.51242E-01 + 9.59784E-01 9.58858E-01 9.59077E-01 + 9.66468E-01 9.63144E-01 9.65556E-01 + 9.52667E-01 9.51485E-01 9.50420E-01 + 9.60628E-01 9.57586E-01 9.58171E-01 + 9.61009E-01 9.64989E-01 9.64975E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21104E-01 2.28874E-01 2.34776E-01 + 2.21207E-01 2.28860E-01 2.34714E-01 + 2.21498E-01 2.28857E-01 2.34956E-01 + 2.21377E-01 2.28607E-01 2.34694E-01 + 2.21179E-01 2.28695E-01 2.34656E-01 + 2.21417E-01 2.28762E-01 2.34785E-01 + 2.21246E-01 2.28657E-01 2.34519E-01 + 2.21214E-01 2.28481E-01 2.34546E-01 + 2.21148E-01 2.28760E-01 2.34769E-01 + * GROUP 2 + 8.00105E-01 8.50272E-01 8.91004E-01 + 7.99771E-01 8.42073E-01 8.84962E-01 + 7.97580E-01 8.43012E-01 8.73911E-01 + 8.00320E-01 8.49044E-01 8.88969E-01 + 7.97436E-01 8.44335E-01 8.84601E-01 + 7.92726E-01 8.42067E-01 8.81812E-01 + 7.95982E-01 8.49591E-01 8.92005E-01 + 7.96051E-01 8.42078E-01 8.86583E-01 + 7.97538E-01 8.37700E-01 8.80111E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.57189E-02 1.59374E-02 1.60781E-02 + 1.59155E-02 1.61549E-02 1.63306E-02 + 1.61235E-02 1.63826E-02 1.65664E-02 + 1.58829E-02 1.60935E-02 1.62540E-02 + 1.60858E-02 1.63257E-02 1.65008E-02 + 1.62840E-02 1.65378E-02 1.67405E-02 + 1.60511E-02 1.62754E-02 1.64370E-02 + 1.62597E-02 1.65052E-02 1.66953E-02 + 1.64486E-02 1.67342E-02 1.69163E-02 + * GROUP 2 + 1.40549E-01 1.41306E-01 1.42171E-01 + 1.48777E-01 1.50619E-01 1.51976E-01 + 1.56976E-01 1.59557E-01 1.61614E-01 + 1.40442E-01 1.41437E-01 1.42120E-01 + 1.48718E-01 1.50487E-01 1.51958E-01 + 1.56922E-01 1.59488E-01 1.61614E-01 + 1.40543E-01 1.41437E-01 1.42165E-01 + 1.48887E-01 1.50578E-01 1.52119E-01 + 1.56994E-01 1.59440E-01 1.61774E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.75430E-03 5.83394E-03 5.88305E-03 + 5.77031E-03 5.84503E-03 5.89870E-03 + 5.78217E-03 5.85863E-03 5.91837E-03 + 5.74922E-03 5.82125E-03 5.87469E-03 + 5.75788E-03 5.83352E-03 5.88807E-03 + 5.77048E-03 5.84314E-03 5.90143E-03 + 5.74028E-03 5.81518E-03 5.86150E-03 + 5.75249E-03 5.82585E-03 5.88549E-03 + 5.76060E-03 5.84370E-03 5.89849E-03 + * GROUP 2 + 1.62763E-01 1.63772E-01 1.65013E-01 + 1.61906E-01 1.63286E-01 1.64038E-01 + 1.61204E-01 1.62416E-01 1.63283E-01 + 1.62643E-01 1.63917E-01 1.64955E-01 + 1.61867E-01 1.62994E-01 1.64069E-01 + 1.61288E-01 1.62345E-01 1.63390E-01 + 1.62817E-01 1.63966E-01 1.65049E-01 + 1.62221E-01 1.63213E-01 1.64339E-01 + 1.61447E-01 1.62378E-01 1.63522E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.14723E-14 7.24447E-14 7.30453E-14 + 7.16582E-14 7.25681E-14 7.32239E-14 + 7.17819E-14 7.26992E-14 7.34321E-14 + 7.13978E-14 7.22799E-14 7.29291E-14 + 7.14891E-14 7.24086E-14 7.30697E-14 + 7.16274E-14 7.25045E-14 7.32158E-14 + 7.12773E-14 7.21841E-14 7.27529E-14 + 7.14090E-14 7.22986E-14 7.30241E-14 + 7.14875E-14 7.24885E-14 7.31591E-14 + * GROUP 2 + 2.03391E-12 2.04845E-12 2.06569E-12 + 2.02219E-12 2.04123E-12 2.05224E-12 + 2.01237E-12 2.02918E-12 2.04162E-12 + 2.03189E-12 2.04970E-12 2.06443E-12 + 2.02117E-12 2.03706E-12 2.05203E-12 + 2.01292E-12 2.02777E-12 2.04240E-12 + 2.03339E-12 2.04968E-12 2.06490E-12 + 2.02490E-12 2.03908E-12 2.05486E-12 + 2.01427E-12 2.02759E-12 2.04333E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.78455E-01 5.02156E-01 5.20958E-01 + 4.78904E-01 5.02742E-01 5.21501E-01 + 4.79434E-01 5.03062E-01 5.21889E-01 + 4.78726E-01 5.02273E-01 5.21112E-01 + 4.79237E-01 5.02880E-01 5.21709E-01 + 4.79556E-01 5.03251E-01 5.22071E-01 + 4.78865E-01 5.02462E-01 5.21250E-01 + 4.79270E-01 5.03033E-01 5.21852E-01 + 4.79661E-01 5.03403E-01 5.22167E-01 + * GROUP 1 -> 2 + 1.13667E-02 1.25934E-02 1.35903E-02 + 1.13453E-02 1.25834E-02 1.35653E-02 + 1.13138E-02 1.25446E-02 1.35362E-02 + 1.12959E-02 1.25181E-02 1.35024E-02 + 1.12770E-02 1.25041E-02 1.34864E-02 + 1.12271E-02 1.24704E-02 1.34517E-02 + 1.12087E-02 1.24273E-02 1.34090E-02 + 1.11874E-02 1.24147E-02 1.33947E-02 + 1.11555E-02 1.23731E-02 1.33619E-02 + * GROUP 2 -> 1 + 2.31619E-03 2.18452E-03 2.06004E-03 + 2.41037E-03 2.30096E-03 2.16935E-03 + 2.54411E-03 2.42704E-03 2.31512E-03 + 2.55356E-03 2.42094E-03 2.31043E-03 + 2.69939E-03 2.56616E-03 2.43923E-03 + 2.84057E-03 2.69558E-03 2.55922E-03 + 2.88235E-03 2.72069E-03 2.59297E-03 + 3.04156E-03 2.87687E-03 2.76770E-03 + 3.20869E-03 3.05084E-03 2.92616E-03 + * GROUP 2 -> 2 + 1.15525E+00 1.24577E+00 1.31872E+00 + 1.14848E+00 1.23704E+00 1.30942E+00 + 1.14081E+00 1.22872E+00 1.29955E+00 + 1.15483E+00 1.24476E+00 1.31833E+00 + 1.14763E+00 1.23639E+00 1.30816E+00 + 1.14130E+00 1.22844E+00 1.29888E+00 + 1.15398E+00 1.24404E+00 1.31717E+00 + 1.14632E+00 1.23557E+00 1.30774E+00 + 1.13987E+00 1.22720E+00 1.29799E+00 + * + * ADF Table + * + * GROUP 1 + 1.06116E+00 1.06376E+00 1.06680E+00 + 1.06030E+00 1.06361E+00 1.06421E+00 + 1.05959E+00 1.06223E+00 1.06416E+00 + 1.06060E+00 1.06439E+00 1.06624E+00 + 1.05965E+00 1.06390E+00 1.06474E+00 + 1.05930E+00 1.06172E+00 1.06335E+00 + 1.06144E+00 1.06388E+00 1.06676E+00 + 1.05997E+00 1.06154E+00 1.06492E+00 + 1.05841E+00 1.06135E+00 1.06420E+00 + * GROUP 2 + 1.36991E+00 1.37464E+00 1.37638E+00 + 1.36142E+00 1.36805E+00 1.37383E+00 + 1.35917E+00 1.36095E+00 1.36619E+00 + 1.37140E+00 1.37536E+00 1.37564E+00 + 1.36170E+00 1.37047E+00 1.36356E+00 + 1.35868E+00 1.36490E+00 1.36662E+00 + 1.36920E+00 1.37312E+00 1.38268E+00 + 1.36440E+00 1.36718E+00 1.36763E+00 + 1.36222E+00 1.36465E+00 1.36525E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.61493E-08 2.29532E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33750E-02 3.19618E-02 1.20234E-01 3.08040E-01 8.73400E-01 2.92578E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.61597E-04 9.89494E-04 9.22919E-04 2.19671E-03 1.06463E-03 4.43168E-04 + * + * -------------------------------------------------------- + * BURNUP 32.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20123E-01 2.28145E-01 2.34161E-01 + 2.19875E-01 2.28048E-01 2.34373E-01 + 2.20128E-01 2.28007E-01 2.34153E-01 + 2.19949E-01 2.27762E-01 2.34224E-01 + 2.20010E-01 2.27884E-01 2.34249E-01 + 2.19904E-01 2.27720E-01 2.34261E-01 + 2.19717E-01 2.27820E-01 2.34152E-01 + 2.19921E-01 2.27857E-01 2.34115E-01 + 2.19647E-01 2.27684E-01 2.34192E-01 + * GROUP 2 + 8.07936E-01 8.64071E-01 9.07051E-01 + 8.02744E-01 8.58060E-01 8.99875E-01 + 7.98619E-01 8.47924E-01 8.89589E-01 + 8.08213E-01 8.62617E-01 9.02175E-01 + 8.03705E-01 8.55170E-01 8.96851E-01 + 7.98931E-01 8.46605E-01 8.86268E-01 + 8.06591E-01 8.63187E-01 9.05286E-01 + 8.02017E-01 8.55740E-01 8.92280E-01 + 7.93591E-01 8.49372E-01 8.88848E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.04752E-02 1.06030E-02 1.06966E-02 + 1.07639E-02 1.09263E-02 1.10352E-02 + 1.10459E-02 1.12309E-02 1.13739E-02 + 1.06826E-02 1.08206E-02 1.09107E-02 + 1.09768E-02 1.11374E-02 1.12540E-02 + 1.12656E-02 1.14495E-02 1.15886E-02 + 1.09085E-02 1.10458E-02 1.11551E-02 + 1.11957E-02 1.13748E-02 1.14970E-02 + 1.14787E-02 1.16774E-02 1.18194E-02 + * GROUP 2 + 9.95361E-02 1.00368E-01 1.01191E-01 + 1.08688E-01 1.10478E-01 1.12037E-01 + 1.17601E-01 1.20276E-01 1.22450E-01 + 9.95300E-02 1.00456E-01 1.01218E-01 + 1.08762E-01 1.10514E-01 1.11983E-01 + 1.17609E-01 1.20267E-01 1.22520E-01 + 9.97066E-02 1.00527E-01 1.01298E-01 + 1.08786E-01 1.10596E-01 1.12106E-01 + 1.17696E-01 1.20354E-01 1.22554E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.38732E-03 5.43492E-03 5.47043E-03 + 5.40350E-03 5.45357E-03 5.49309E-03 + 5.42331E-03 5.47181E-03 5.51599E-03 + 5.37394E-03 5.42605E-03 5.46166E-03 + 5.39194E-03 5.44617E-03 5.48343E-03 + 5.40849E-03 5.46312E-03 5.50738E-03 + 5.36751E-03 5.41753E-03 5.45434E-03 + 5.38093E-03 5.43839E-03 5.47343E-03 + 5.39801E-03 5.45541E-03 5.49501E-03 + * GROUP 2 + 1.43538E-01 1.43891E-01 1.44372E-01 + 1.43175E-01 1.43581E-01 1.43996E-01 + 1.42801E-01 1.43213E-01 1.43417E-01 + 1.43612E-01 1.44113E-01 1.44495E-01 + 1.43393E-01 1.43737E-01 1.44000E-01 + 1.42934E-01 1.43318E-01 1.43664E-01 + 1.43989E-01 1.44319E-01 1.44713E-01 + 1.43552E-01 1.43994E-01 1.44338E-01 + 1.43211E-01 1.43598E-01 1.43862E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.61644E-14 6.67229E-14 6.71434E-14 + 6.63660E-14 6.69597E-14 6.74266E-14 + 6.66100E-14 6.71800E-14 6.77029E-14 + 6.59925E-14 6.66103E-14 6.70282E-14 + 6.62155E-14 6.68639E-14 6.73009E-14 + 6.64210E-14 6.70700E-14 6.75906E-14 + 6.59026E-14 6.64957E-14 6.69297E-14 + 6.60732E-14 6.67621E-14 6.71741E-14 + 6.62824E-14 6.69610E-14 6.74309E-14 + * GROUP 2 + 1.76719E-12 1.77307E-12 1.78041E-12 + 1.76167E-12 1.76811E-12 1.77454E-12 + 1.75608E-12 1.76251E-12 1.76628E-12 + 1.76759E-12 1.77530E-12 1.78142E-12 + 1.76385E-12 1.76956E-12 1.77411E-12 + 1.75728E-12 1.76332E-12 1.76886E-12 + 1.77163E-12 1.77724E-12 1.78347E-12 + 1.76524E-12 1.77211E-12 1.77768E-12 + 1.76012E-12 1.76626E-12 1.77075E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.86104E-01 5.11196E-01 5.31030E-01 + 4.87616E-01 5.13019E-01 5.33030E-01 + 4.88975E-01 5.14454E-01 5.34708E-01 + 4.86288E-01 5.11456E-01 5.31300E-01 + 4.87891E-01 5.13261E-01 5.33188E-01 + 4.89243E-01 5.14739E-01 5.34759E-01 + 4.86593E-01 5.11800E-01 5.31601E-01 + 4.88176E-01 5.13567E-01 5.33503E-01 + 4.89467E-01 5.14919E-01 5.35090E-01 + * GROUP 1 -> 2 + 1.46948E-02 1.60534E-02 1.71280E-02 + 1.48089E-02 1.61924E-02 1.73025E-02 + 1.48846E-02 1.62939E-02 1.74206E-02 + 1.46024E-02 1.59579E-02 1.70371E-02 + 1.47164E-02 1.61016E-02 1.72059E-02 + 1.47893E-02 1.61982E-02 1.72985E-02 + 1.45030E-02 1.58630E-02 1.69329E-02 + 1.46250E-02 1.60084E-02 1.70986E-02 + 1.46991E-02 1.60915E-02 1.72088E-02 + * GROUP 2 -> 1 + 1.75809E-03 1.64898E-03 1.55721E-03 + 1.88785E-03 1.79805E-03 1.70253E-03 + 2.01105E-03 1.93139E-03 1.85266E-03 + 1.94091E-03 1.83769E-03 1.72547E-03 + 2.10154E-03 1.98369E-03 1.89199E-03 + 2.23970E-03 2.13075E-03 2.04984E-03 + 2.17730E-03 2.04869E-03 1.93203E-03 + 2.34424E-03 2.23106E-03 2.11585E-03 + 2.52379E-03 2.39858E-03 2.29871E-03 + * GROUP 2 -> 2 + 1.21686E+00 1.31249E+00 1.39084E+00 + 1.20701E+00 1.30122E+00 1.37812E+00 + 1.19832E+00 1.29099E+00 1.36681E+00 + 1.21608E+00 1.31160E+00 1.39002E+00 + 1.20660E+00 1.30068E+00 1.37779E+00 + 1.19776E+00 1.29041E+00 1.36589E+00 + 1.21538E+00 1.31091E+00 1.38897E+00 + 1.20582E+00 1.30000E+00 1.37639E+00 + 1.19712E+00 1.28973E+00 1.36537E+00 + * + * ADF Table + * + * GROUP 1 + 1.00082E+00 1.00052E+00 1.00089E+00 + 1.00202E+00 1.00234E+00 1.00216E+00 + 1.00291E+00 1.00342E+00 1.00362E+00 + 1.00089E+00 1.00155E+00 9.99907E-01 + 1.00240E+00 1.00170E+00 1.00283E+00 + 1.00325E+00 1.00208E+00 1.00293E+00 + 1.00152E+00 1.00065E+00 1.00154E+00 + 1.00207E+00 1.00284E+00 1.00254E+00 + 1.00356E+00 1.00448E+00 1.00392E+00 + * GROUP 2 + 9.46390E-01 9.45811E-01 9.45538E-01 + 9.53218E-01 9.51335E-01 9.52719E-01 + 9.54281E-01 9.54770E-01 9.58264E-01 + 9.46011E-01 9.44866E-01 9.42833E-01 + 9.54491E-01 9.49327E-01 9.49491E-01 + 9.58867E-01 9.55838E-01 9.54430E-01 + 9.45085E-01 9.44765E-01 9.41176E-01 + 9.52196E-01 9.48142E-01 9.51081E-01 + 9.56743E-01 9.55591E-01 9.57638E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21486E-01 2.28947E-01 2.34974E-01 + 2.21346E-01 2.28908E-01 2.34896E-01 + 2.21302E-01 2.28754E-01 2.34805E-01 + 2.21238E-01 2.28969E-01 2.34741E-01 + 2.21314E-01 2.28931E-01 2.34864E-01 + 2.21299E-01 2.28794E-01 2.34603E-01 + 2.21258E-01 2.28797E-01 2.34723E-01 + 2.21206E-01 2.28733E-01 2.34814E-01 + 2.21378E-01 2.28809E-01 2.34717E-01 + * GROUP 2 + 8.04520E-01 8.52052E-01 8.94681E-01 + 8.03279E-01 8.49019E-01 8.88244E-01 + 7.97302E-01 8.47659E-01 8.84385E-01 + 7.97390E-01 8.53208E-01 8.95304E-01 + 7.98523E-01 8.47514E-01 8.90324E-01 + 7.96545E-01 8.45266E-01 8.84386E-01 + 8.00625E-01 8.56651E-01 8.95113E-01 + 8.01626E-01 8.48240E-01 8.89851E-01 + 7.99119E-01 8.45676E-01 8.82051E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.59676E-02 1.61996E-02 1.63594E-02 + 1.61673E-02 1.64191E-02 1.65954E-02 + 1.63613E-02 1.66214E-02 1.68239E-02 + 1.61489E-02 1.63725E-02 1.65435E-02 + 1.63407E-02 1.65995E-02 1.67809E-02 + 1.65292E-02 1.68090E-02 1.69845E-02 + 1.63163E-02 1.65647E-02 1.67286E-02 + 1.65152E-02 1.67791E-02 1.69766E-02 + 1.67063E-02 1.69735E-02 1.71846E-02 + * GROUP 2 + 1.37847E-01 1.38435E-01 1.39123E-01 + 1.46322E-01 1.47861E-01 1.49124E-01 + 1.54665E-01 1.56997E-01 1.58954E-01 + 1.37882E-01 1.38534E-01 1.39072E-01 + 1.46413E-01 1.47903E-01 1.49319E-01 + 1.54652E-01 1.57062E-01 1.58859E-01 + 1.38022E-01 1.38666E-01 1.39211E-01 + 1.46631E-01 1.48091E-01 1.49195E-01 + 1.54831E-01 1.57144E-01 1.58939E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.23225E-03 5.30435E-03 5.34867E-03 + 5.24476E-03 5.31862E-03 5.36541E-03 + 5.25793E-03 5.33434E-03 5.38401E-03 + 5.22225E-03 5.29390E-03 5.34210E-03 + 5.23731E-03 5.30670E-03 5.35995E-03 + 5.23501E-03 5.32173E-03 5.38700E-03 + 5.21309E-03 5.28151E-03 5.33186E-03 + 5.22530E-03 5.30455E-03 5.34670E-03 + 5.23953E-03 5.31418E-03 5.36549E-03 + * GROUP 2 + 1.51994E-01 1.52581E-01 1.53374E-01 + 1.51329E-01 1.52220E-01 1.52796E-01 + 1.51028E-01 1.51762E-01 1.52283E-01 + 1.52016E-01 1.52775E-01 1.53430E-01 + 1.51624E-01 1.52309E-01 1.53020E-01 + 1.51123E-01 1.51889E-01 1.52296E-01 + 1.52388E-01 1.53019E-01 1.53666E-01 + 1.52015E-01 1.52670E-01 1.53001E-01 + 1.51383E-01 1.52188E-01 1.52536E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.41126E-14 6.49757E-14 6.55135E-14 + 6.42361E-14 6.51282E-14 6.56794E-14 + 6.43810E-14 6.52856E-14 6.58721E-14 + 6.39867E-14 6.48337E-14 6.54143E-14 + 6.41395E-14 6.49757E-14 6.56063E-14 + 6.41452E-14 6.51212E-14 6.58332E-14 + 6.38622E-14 6.46740E-14 6.52681E-14 + 6.39610E-14 6.49038E-14 6.54238E-14 + 6.41210E-14 6.50099E-14 6.56158E-14 + * GROUP 2 + 1.86888E-12 1.87777E-12 1.88899E-12 + 1.85984E-12 1.87231E-12 1.88079E-12 + 1.85529E-12 1.86572E-12 1.87338E-12 + 1.86874E-12 1.87965E-12 1.88920E-12 + 1.86293E-12 1.87290E-12 1.88304E-12 + 1.85597E-12 1.86681E-12 1.87310E-12 + 1.87268E-12 1.88203E-12 1.89147E-12 + 1.86719E-12 1.87679E-12 1.88223E-12 + 1.85863E-12 1.86985E-12 1.87548E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79788E-01 5.03471E-01 5.22298E-01 + 4.80137E-01 5.03806E-01 5.22690E-01 + 4.80427E-01 5.04033E-01 5.22869E-01 + 4.80076E-01 5.03621E-01 5.22408E-01 + 4.80323E-01 5.04096E-01 5.22765E-01 + 4.80712E-01 5.04313E-01 5.22678E-01 + 4.80158E-01 5.03793E-01 5.22478E-01 + 4.80445E-01 5.04138E-01 5.23004E-01 + 4.80734E-01 5.04323E-01 5.23093E-01 + * GROUP 1 -> 2 + 1.13121E-02 1.25437E-02 1.35347E-02 + 1.12800E-02 1.25129E-02 1.35122E-02 + 1.12422E-02 1.24676E-02 1.34620E-02 + 1.12289E-02 1.24517E-02 1.34395E-02 + 1.11974E-02 1.24327E-02 1.34049E-02 + 1.11656E-02 1.23872E-02 1.33620E-02 + 1.11436E-02 1.23576E-02 1.33338E-02 + 1.11126E-02 1.23280E-02 1.33223E-02 + 1.10647E-02 1.22892E-02 1.32609E-02 + * GROUP 2 -> 1 + 2.23316E-03 2.11739E-03 2.00417E-03 + 2.37730E-03 2.25941E-03 2.11930E-03 + 2.45554E-03 2.36322E-03 2.25708E-03 + 2.49889E-03 2.37159E-03 2.23841E-03 + 2.63057E-03 2.53709E-03 2.37917E-03 + 2.77255E-03 2.65970E-03 2.52731E-03 + 2.83498E-03 2.66399E-03 2.51569E-03 + 2.97375E-03 2.82937E-03 2.69698E-03 + 3.11323E-03 2.98400E-03 2.81364E-03 + * GROUP 2 -> 2 + 1.15893E+00 1.24885E+00 1.32211E+00 + 1.15176E+00 1.24037E+00 1.31245E+00 + 1.14451E+00 1.23177E+00 1.30306E+00 + 1.15888E+00 1.24858E+00 1.32169E+00 + 1.15057E+00 1.23960E+00 1.31142E+00 + 1.14350E+00 1.23116E+00 1.30236E+00 + 1.15723E+00 1.24763E+00 1.32098E+00 + 1.14990E+00 1.23899E+00 1.31101E+00 + 1.14349E+00 1.23017E+00 1.30223E+00 + * + * ADF Table + * + * GROUP 1 + 1.06276E+00 1.06668E+00 1.06770E+00 + 1.06141E+00 1.06501E+00 1.06747E+00 + 1.06073E+00 1.06417E+00 1.06616E+00 + 1.06248E+00 1.06534E+00 1.06772E+00 + 1.06096E+00 1.06374E+00 1.06638E+00 + 1.06056E+00 1.06353E+00 1.06449E+00 + 1.06310E+00 1.06524E+00 1.06788E+00 + 1.06060E+00 1.06481E+00 1.06720E+00 + 1.06065E+00 1.06384E+00 1.06517E+00 + * GROUP 2 + 1.35906E+00 1.36367E+00 1.36647E+00 + 1.35924E+00 1.36660E+00 1.36334E+00 + 1.35542E+00 1.35670E+00 1.35325E+00 + 1.36126E+00 1.36120E+00 1.37096E+00 + 1.35487E+00 1.36211E+00 1.35894E+00 + 1.35165E+00 1.35463E+00 1.35822E+00 + 1.35917E+00 1.36710E+00 1.36769E+00 + 1.35853E+00 1.36272E+00 1.36439E+00 + 1.35333E+00 1.35812E+00 1.36060E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.60362E-08 2.31334E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33871E-02 3.17306E-02 1.19904E-01 3.08825E-01 8.76144E-01 2.93654E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.41860E-04 8.94923E-04 8.45018E-04 2.00452E-03 1.06169E-03 4.21629E-04 + * + * -------------------------------------------------------- + * BURNUP 35.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20050E-01 2.28010E-01 2.34188E-01 + 2.20086E-01 2.27733E-01 2.34237E-01 + 2.19878E-01 2.27852E-01 2.34190E-01 + 2.19954E-01 2.27774E-01 2.34246E-01 + 2.19862E-01 2.27887E-01 2.34237E-01 + 2.19836E-01 2.27908E-01 2.34350E-01 + 2.19904E-01 2.27742E-01 2.34066E-01 + 2.19742E-01 2.27708E-01 2.34029E-01 + 2.19899E-01 2.28062E-01 2.34016E-01 + * GROUP 2 + 8.11074E-01 8.60138E-01 9.02571E-01 + 8.06374E-01 8.59860E-01 9.00204E-01 + 7.97714E-01 8.50101E-01 8.90178E-01 + 8.12026E-01 8.65522E-01 9.02942E-01 + 8.02755E-01 8.56332E-01 9.01418E-01 + 7.99211E-01 8.48375E-01 8.93863E-01 + 8.05023E-01 8.61864E-01 9.06628E-01 + 8.01636E-01 8.57009E-01 8.98079E-01 + 8.01020E-01 8.48775E-01 8.91547E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.05495E-02 1.06762E-02 1.07785E-02 + 1.08453E-02 1.10009E-02 1.11075E-02 + 1.11302E-02 1.12974E-02 1.14408E-02 + 1.07695E-02 1.08969E-02 1.09844E-02 + 1.10601E-02 1.12191E-02 1.13428E-02 + 1.13331E-02 1.15291E-02 1.16646E-02 + 1.09926E-02 1.11243E-02 1.12212E-02 + 1.12786E-02 1.14496E-02 1.15748E-02 + 1.15668E-02 1.17562E-02 1.19016E-02 + * GROUP 2 + 9.86849E-02 9.95066E-02 1.00237E-01 + 1.07795E-01 1.09584E-01 1.11068E-01 + 1.16754E-01 1.19456E-01 1.21632E-01 + 9.87172E-02 9.95472E-02 1.00210E-01 + 1.07912E-01 1.09604E-01 1.11129E-01 + 1.16799E-01 1.19416E-01 1.21644E-01 + 9.88075E-02 9.96471E-02 1.00293E-01 + 1.07941E-01 1.09714E-01 1.11158E-01 + 1.16886E-01 1.19502E-01 1.21713E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.26092E-03 5.30936E-03 5.34154E-03 + 5.27473E-03 5.32981E-03 5.36375E-03 + 5.29374E-03 5.34466E-03 5.38402E-03 + 5.24982E-03 5.29754E-03 5.33008E-03 + 5.26849E-03 5.31435E-03 5.35486E-03 + 5.28159E-03 5.33697E-03 5.37294E-03 + 5.24215E-03 5.28441E-03 5.32098E-03 + 5.25729E-03 5.30751E-03 5.34427E-03 + 5.26905E-03 5.32516E-03 5.36459E-03 + * GROUP 2 + 1.40621E-01 1.40931E-01 1.41233E-01 + 1.40185E-01 1.40560E-01 1.40842E-01 + 1.39878E-01 1.40289E-01 1.40494E-01 + 1.40758E-01 1.41082E-01 1.41278E-01 + 1.40474E-01 1.40688E-01 1.41029E-01 + 1.40079E-01 1.40376E-01 1.40650E-01 + 1.41007E-01 1.41346E-01 1.41512E-01 + 1.40645E-01 1.40996E-01 1.41211E-01 + 1.40366E-01 1.40685E-01 1.40907E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.44058E-14 6.49729E-14 6.53531E-14 + 6.45766E-14 6.52270E-14 6.56277E-14 + 6.48030E-14 6.54096E-14 6.58653E-14 + 6.42627E-14 6.48235E-14 6.52058E-14 + 6.44889E-14 6.50313E-14 6.55127E-14 + 6.46508E-14 6.53042E-14 6.57273E-14 + 6.41606E-14 6.46528E-14 6.50934E-14 + 6.43449E-14 6.49416E-14 6.53756E-14 + 6.44929E-14 6.51549E-14 6.56188E-14 + * GROUP 2 + 1.72475E-12 1.72999E-12 1.73506E-12 + 1.71842E-12 1.72437E-12 1.72910E-12 + 1.71376E-12 1.72007E-12 1.72376E-12 + 1.72596E-12 1.73139E-12 1.73513E-12 + 1.72153E-12 1.72552E-12 1.73094E-12 + 1.71575E-12 1.72070E-12 1.72525E-12 + 1.72845E-12 1.73403E-12 1.73743E-12 + 1.72304E-12 1.72874E-12 1.73260E-12 + 1.71874E-12 1.72390E-12 1.72788E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.86596E-01 5.11738E-01 5.31542E-01 + 4.88188E-01 5.13436E-01 5.33516E-01 + 4.89412E-01 5.14818E-01 5.35088E-01 + 4.86872E-01 5.11917E-01 5.31899E-01 + 4.88370E-01 5.13795E-01 5.33868E-01 + 4.89690E-01 5.15195E-01 5.35389E-01 + 4.87144E-01 5.12234E-01 5.32160E-01 + 4.88647E-01 5.13952E-01 5.34011E-01 + 4.90068E-01 5.15432E-01 5.35565E-01 + * GROUP 1 -> 2 + 1.46947E-02 1.60592E-02 1.71368E-02 + 1.48149E-02 1.62003E-02 1.73101E-02 + 1.48831E-02 1.62972E-02 1.74286E-02 + 1.46037E-02 1.59618E-02 1.70510E-02 + 1.47201E-02 1.61085E-02 1.72160E-02 + 1.47880E-02 1.62010E-02 1.73275E-02 + 1.45105E-02 1.58686E-02 1.69458E-02 + 1.46220E-02 1.60026E-02 1.71068E-02 + 1.46952E-02 1.60872E-02 1.72124E-02 + * GROUP 2 -> 1 + 1.73180E-03 1.63635E-03 1.53978E-03 + 1.86961E-03 1.76462E-03 1.67425E-03 + 1.99704E-03 1.89561E-03 1.83505E-03 + 1.91532E-03 1.81335E-03 1.70908E-03 + 2.07829E-03 1.97702E-03 1.86874E-03 + 2.20917E-03 2.11398E-03 2.02717E-03 + 2.14244E-03 2.04614E-03 1.91687E-03 + 2.32359E-03 2.22129E-03 2.09617E-03 + 2.49748E-03 2.38332E-03 2.29132E-03 + * GROUP 2 -> 2 + 1.21744E+00 1.31350E+00 1.39171E+00 + 1.20782E+00 1.30214E+00 1.37876E+00 + 1.19918E+00 1.29229E+00 1.36748E+00 + 1.21656E+00 1.31263E+00 1.39073E+00 + 1.20714E+00 1.30157E+00 1.37858E+00 + 1.19836E+00 1.29095E+00 1.36663E+00 + 1.21636E+00 1.31155E+00 1.39013E+00 + 1.20705E+00 1.30096E+00 1.37756E+00 + 1.19789E+00 1.29010E+00 1.36627E+00 + * + * ADF Table + * + * GROUP 1 + 1.00071E+00 1.00163E+00 1.00229E+00 + 1.00309E+00 1.00322E+00 1.00257E+00 + 1.00356E+00 1.00407E+00 1.00344E+00 + 1.00071E+00 1.00128E+00 1.00126E+00 + 1.00258E+00 1.00317E+00 1.00254E+00 + 1.00342E+00 1.00422E+00 1.00478E+00 + 1.00150E+00 1.00173E+00 1.00050E+00 + 1.00306E+00 1.00310E+00 1.00251E+00 + 1.00343E+00 1.00341E+00 1.00500E+00 + * GROUP 2 + 9.43312E-01 9.44086E-01 9.40020E-01 + 9.48379E-01 9.49828E-01 9.49727E-01 + 9.55878E-01 9.53463E-01 9.52557E-01 + 9.43388E-01 9.40269E-01 9.43030E-01 + 9.49331E-01 9.48258E-01 9.49013E-01 + 9.53297E-01 9.54170E-01 9.54483E-01 + 9.41950E-01 9.42836E-01 9.40651E-01 + 9.47570E-01 9.48715E-01 9.45276E-01 + 9.53062E-01 9.51364E-01 9.56259E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21286E-01 2.28863E-01 2.34879E-01 + 2.21342E-01 2.29043E-01 2.34783E-01 + 2.21233E-01 2.28919E-01 2.35028E-01 + 2.21390E-01 2.28918E-01 2.34623E-01 + 2.21307E-01 2.28804E-01 2.34966E-01 + 2.21292E-01 2.29027E-01 2.34917E-01 + 2.21347E-01 2.28715E-01 2.34795E-01 + 2.21231E-01 2.28736E-01 2.34914E-01 + 2.21527E-01 2.28826E-01 2.34778E-01 + * GROUP 2 + 8.05925E-01 8.58565E-01 8.97555E-01 + 8.01179E-01 8.54063E-01 8.94907E-01 + 7.98597E-01 8.43005E-01 8.81248E-01 + 7.98707E-01 8.55239E-01 8.93528E-01 + 8.02723E-01 8.49122E-01 8.91178E-01 + 7.97808E-01 8.45204E-01 8.83977E-01 + 8.07214E-01 8.54738E-01 8.91140E-01 + 7.99497E-01 8.51575E-01 8.90405E-01 + 7.99656E-01 8.49032E-01 8.84177E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.60267E-02 1.62628E-02 1.64213E-02 + 1.62272E-02 1.64769E-02 1.66647E-02 + 1.64162E-02 1.66794E-02 1.68812E-02 + 1.62006E-02 1.64382E-02 1.66241E-02 + 1.63875E-02 1.66599E-02 1.68476E-02 + 1.65862E-02 1.68633E-02 1.70586E-02 + 1.63873E-02 1.66217E-02 1.68036E-02 + 1.65726E-02 1.68356E-02 1.70176E-02 + 1.67628E-02 1.70522E-02 1.72450E-02 + * GROUP 2 + 1.37063E-01 1.37557E-01 1.38118E-01 + 1.45480E-01 1.46973E-01 1.48362E-01 + 1.53859E-01 1.56192E-01 1.58045E-01 + 1.37088E-01 1.37673E-01 1.38221E-01 + 1.45538E-01 1.47045E-01 1.48291E-01 + 1.53907E-01 1.56225E-01 1.58032E-01 + 1.37233E-01 1.37844E-01 1.38286E-01 + 1.45781E-01 1.47219E-01 1.48440E-01 + 1.54149E-01 1.56326E-01 1.58250E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.11579E-03 5.18055E-03 5.23239E-03 + 5.12978E-03 5.19699E-03 5.24655E-03 + 5.14172E-03 5.21118E-03 5.26383E-03 + 5.10357E-03 5.17322E-03 5.22089E-03 + 5.11607E-03 5.19066E-03 5.24072E-03 + 5.13187E-03 5.20426E-03 5.25930E-03 + 5.09752E-03 5.16201E-03 5.21420E-03 + 5.11040E-03 5.17962E-03 5.22827E-03 + 5.12305E-03 5.19377E-03 5.25077E-03 + * GROUP 2 + 1.49102E-01 1.49664E-01 1.50155E-01 + 1.48518E-01 1.49198E-01 1.49704E-01 + 1.48162E-01 1.48888E-01 1.49225E-01 + 1.49216E-01 1.49860E-01 1.50264E-01 + 1.48805E-01 1.49345E-01 1.49881E-01 + 1.48280E-01 1.48955E-01 1.49325E-01 + 1.49498E-01 1.50147E-01 1.50582E-01 + 1.49131E-01 1.49648E-01 1.50230E-01 + 1.48785E-01 1.49296E-01 1.49739E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.24865E-14 6.32503E-14 6.38755E-14 + 6.26192E-14 6.34246E-14 6.40043E-14 + 6.27353E-14 6.35637E-14 6.41865E-14 + 6.23137E-14 6.31491E-14 6.37196E-14 + 6.24419E-14 6.33294E-14 6.39302E-14 + 6.26073E-14 6.34674E-14 6.41084E-14 + 6.22303E-14 6.30067E-14 6.36226E-14 + 6.23559E-14 6.31827E-14 6.37666E-14 + 6.24708E-14 6.33148E-14 6.39861E-14 + * GROUP 2 + 1.82661E-12 1.83505E-12 1.84249E-12 + 1.81859E-12 1.82837E-12 1.83585E-12 + 1.81340E-12 1.82365E-12 1.82898E-12 + 1.82753E-12 1.83691E-12 1.84332E-12 + 1.82167E-12 1.82971E-12 1.83759E-12 + 1.81441E-12 1.82402E-12 1.82978E-12 + 1.83042E-12 1.83990E-12 1.84665E-12 + 1.82507E-12 1.83282E-12 1.84130E-12 + 1.82004E-12 1.82763E-12 1.83429E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.80108E-01 5.03803E-01 5.22545E-01 + 4.80412E-01 5.04175E-01 5.22934E-01 + 4.80629E-01 5.04329E-01 5.23082E-01 + 4.80256E-01 5.03964E-01 5.22814E-01 + 4.80492E-01 5.04406E-01 5.23082E-01 + 4.80792E-01 5.04467E-01 5.23108E-01 + 4.80508E-01 5.04166E-01 5.22822E-01 + 4.80681E-01 5.04371E-01 5.23118E-01 + 4.80894E-01 5.04618E-01 5.23218E-01 + * GROUP 1 -> 2 + 1.13041E-02 1.25305E-02 1.35182E-02 + 1.12733E-02 1.25074E-02 1.34932E-02 + 1.12270E-02 1.24607E-02 1.34488E-02 + 1.12153E-02 1.24436E-02 1.34225E-02 + 1.11814E-02 1.24239E-02 1.33948E-02 + 1.11358E-02 1.23640E-02 1.33456E-02 + 1.11252E-02 1.23482E-02 1.33196E-02 + 1.10888E-02 1.23120E-02 1.32971E-02 + 1.10430E-02 1.22667E-02 1.32439E-02 + * GROUP 2 -> 1 + 2.21870E-03 2.12212E-03 1.99562E-03 + 2.34702E-03 2.22956E-03 2.12155E-03 + 2.48239E-03 2.36605E-03 2.25669E-03 + 2.48519E-03 2.36367E-03 2.22848E-03 + 2.61728E-03 2.50211E-03 2.35858E-03 + 2.75074E-03 2.63550E-03 2.49999E-03 + 2.82408E-03 2.64978E-03 2.51724E-03 + 2.95432E-03 2.80189E-03 2.66129E-03 + 3.09179E-03 2.96744E-03 2.81670E-03 + * GROUP 2 -> 2 + 1.15947E+00 1.24945E+00 1.32353E+00 + 1.15230E+00 1.24119E+00 1.31299E+00 + 1.14531E+00 1.23295E+00 1.30367E+00 + 1.15888E+00 1.24897E+00 1.32283E+00 + 1.15139E+00 1.24018E+00 1.31235E+00 + 1.14484E+00 1.23216E+00 1.30330E+00 + 1.15789E+00 1.24808E+00 1.32219E+00 + 1.15073E+00 1.23944E+00 1.31176E+00 + 1.14341E+00 1.23144E+00 1.30195E+00 + * + * ADF Table + * + * GROUP 1 + 1.06311E+00 1.06726E+00 1.06723E+00 + 1.06211E+00 1.06534E+00 1.06752E+00 + 1.06155E+00 1.06502E+00 1.06644E+00 + 1.06284E+00 1.06576E+00 1.06828E+00 + 1.06340E+00 1.06443E+00 1.06868E+00 + 1.06068E+00 1.06552E+00 1.06668E+00 + 1.06321E+00 1.06685E+00 1.06849E+00 + 1.06224E+00 1.06549E+00 1.06703E+00 + 1.06094E+00 1.06342E+00 1.06617E+00 + * GROUP 2 + 1.35955E+00 1.36537E+00 1.36258E+00 + 1.35478E+00 1.35682E+00 1.36214E+00 + 1.35337E+00 1.35733E+00 1.36000E+00 + 1.36127E+00 1.36622E+00 1.36651E+00 + 1.35809E+00 1.35740E+00 1.36533E+00 + 1.35241E+00 1.35172E+00 1.35940E+00 + 1.35674E+00 1.36788E+00 1.36881E+00 + 1.35086E+00 1.36125E+00 1.36220E+00 + 1.35401E+00 1.35458E+00 1.36003E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.60622E-08 2.31897E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33859E-02 3.16686E-02 1.19833E-01 3.08894E-01 8.76713E-01 2.93600E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.34247E-04 9.06046E-04 8.62473E-04 1.98519E-03 1.05692E-03 3.98040E-04 + * + * -------------------------------------------------------- + * BURNUP 37.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20107E-01 2.28083E-01 2.34364E-01 + 2.20164E-01 2.28007E-01 2.34345E-01 + 2.20215E-01 2.28060E-01 2.34387E-01 + 2.20110E-01 2.28042E-01 2.34360E-01 + 2.20040E-01 2.27964E-01 2.34247E-01 + 2.19996E-01 2.27948E-01 2.34300E-01 + 2.19902E-01 2.27885E-01 2.34231E-01 + 2.20027E-01 2.27915E-01 2.33920E-01 + 2.19946E-01 2.27726E-01 2.34030E-01 + * GROUP 2 + 8.11984E-01 8.63456E-01 9.08368E-01 + 8.07790E-01 8.58204E-01 8.99349E-01 + 7.99811E-01 8.50630E-01 8.94748E-01 + 8.10443E-01 8.63690E-01 9.06206E-01 + 8.04865E-01 8.59424E-01 8.99033E-01 + 7.97704E-01 8.48217E-01 8.89086E-01 + 8.11888E-01 8.61639E-01 9.07332E-01 + 8.05275E-01 8.58039E-01 8.99803E-01 + 7.99019E-01 8.48419E-01 8.94148E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.06152E-02 1.07539E-02 1.08514E-02 + 1.09124E-02 1.10667E-02 1.11916E-02 + 1.12019E-02 1.13767E-02 1.15151E-02 + 1.08353E-02 1.09665E-02 1.10720E-02 + 1.11272E-02 1.12938E-02 1.14170E-02 + 1.14090E-02 1.16005E-02 1.17474E-02 + 1.10611E-02 1.11988E-02 1.13028E-02 + 1.13445E-02 1.15232E-02 1.16567E-02 + 1.16341E-02 1.18378E-02 1.19796E-02 + * GROUP 2 + 9.77969E-02 9.85847E-02 9.92478E-02 + 1.07027E-01 1.08666E-01 1.10102E-01 + 1.15963E-01 1.18599E-01 1.20814E-01 + 9.78048E-02 9.85851E-02 9.92746E-02 + 1.07029E-01 1.08689E-01 1.10181E-01 + 1.16013E-01 1.18620E-01 1.20782E-01 + 9.79619E-02 9.87050E-02 9.94193E-02 + 1.07140E-01 1.08838E-01 1.10258E-01 + 1.16117E-01 1.18655E-01 1.20846E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.13343E-03 5.18485E-03 5.22122E-03 + 5.15055E-03 5.20638E-03 5.24444E-03 + 5.16985E-03 5.22257E-03 5.26102E-03 + 5.12656E-03 5.17476E-03 5.21137E-03 + 5.13982E-03 5.19372E-03 5.23399E-03 + 5.15767E-03 5.20764E-03 5.25341E-03 + 5.11660E-03 5.16461E-03 5.20191E-03 + 5.13007E-03 5.18370E-03 5.22333E-03 + 5.14832E-03 5.20323E-03 5.24281E-03 + * GROUP 2 + 1.37674E-01 1.37901E-01 1.38073E-01 + 1.37418E-01 1.37526E-01 1.37694E-01 + 1.37068E-01 1.37359E-01 1.37608E-01 + 1.37782E-01 1.37994E-01 1.38210E-01 + 1.37532E-01 1.37674E-01 1.37938E-01 + 1.37293E-01 1.37549E-01 1.37699E-01 + 1.38149E-01 1.38297E-01 1.38549E-01 + 1.37840E-01 1.38050E-01 1.38214E-01 + 1.37610E-01 1.37762E-01 1.37979E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.26458E-14 6.32535E-14 6.36812E-14 + 6.28564E-14 6.35105E-14 6.39616E-14 + 6.30903E-14 6.37075E-14 6.41612E-14 + 6.25525E-14 6.31206E-14 6.35509E-14 + 6.27205E-14 6.33542E-14 6.38284E-14 + 6.29300E-14 6.35205E-14 6.40576E-14 + 6.24209E-14 6.29920E-14 6.34285E-14 + 6.25909E-14 6.32246E-14 6.36931E-14 + 6.28099E-14 6.34581E-14 6.39221E-14 + * GROUP 2 + 1.68243E-12 1.68658E-12 1.68995E-12 + 1.67841E-12 1.68102E-12 1.68425E-12 + 1.67327E-12 1.67801E-12 1.68216E-12 + 1.68332E-12 1.68729E-12 1.69118E-12 + 1.67936E-12 1.68239E-12 1.68678E-12 + 1.67560E-12 1.67991E-12 1.68286E-12 + 1.68725E-12 1.69044E-12 1.69477E-12 + 1.68262E-12 1.68647E-12 1.68960E-12 + 1.67895E-12 1.68199E-12 1.68578E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.87066E-01 5.12217E-01 5.32107E-01 + 4.88635E-01 5.14008E-01 5.34041E-01 + 4.90005E-01 5.15445E-01 5.35542E-01 + 4.87378E-01 5.12421E-01 5.32409E-01 + 4.88948E-01 5.14281E-01 5.34318E-01 + 4.90164E-01 5.15642E-01 5.35773E-01 + 4.87581E-01 5.12733E-01 5.32535E-01 + 4.89175E-01 5.14519E-01 5.34569E-01 + 4.90355E-01 5.15877E-01 5.35931E-01 + * GROUP 1 -> 2 + 1.47093E-02 1.60718E-02 1.71469E-02 + 1.48177E-02 1.62230E-02 1.73219E-02 + 1.49028E-02 1.63116E-02 1.74282E-02 + 1.46179E-02 1.59763E-02 1.70603E-02 + 1.47268E-02 1.61184E-02 1.72170E-02 + 1.47956E-02 1.62048E-02 1.73171E-02 + 1.45169E-02 1.58677E-02 1.69456E-02 + 1.46317E-02 1.60078E-02 1.71147E-02 + 1.46900E-02 1.60911E-02 1.72019E-02 + * GROUP 2 -> 1 + 1.70885E-03 1.61684E-03 1.52451E-03 + 1.84912E-03 1.76694E-03 1.66484E-03 + 1.98838E-03 1.89913E-03 1.80840E-03 + 1.90847E-03 1.78780E-03 1.70588E-03 + 2.05636E-03 1.97035E-03 1.85548E-03 + 2.21258E-03 2.10506E-03 2.01686E-03 + 2.12643E-03 1.99974E-03 1.89865E-03 + 2.30303E-03 2.18217E-03 2.08394E-03 + 2.47346E-03 2.35385E-03 2.26130E-03 + * GROUP 2 -> 2 + 1.21806E+00 1.31386E+00 1.39265E+00 + 1.20861E+00 1.30276E+00 1.38006E+00 + 1.19985E+00 1.29262E+00 1.36815E+00 + 1.21774E+00 1.31322E+00 1.39183E+00 + 1.20828E+00 1.30253E+00 1.37931E+00 + 1.19909E+00 1.29163E+00 1.36740E+00 + 1.21680E+00 1.31235E+00 1.39124E+00 + 1.20758E+00 1.30175E+00 1.37843E+00 + 1.19867E+00 1.29121E+00 1.36650E+00 + * + * ADF Table + * + * GROUP 1 + 1.00235E+00 1.00242E+00 1.00097E+00 + 1.00377E+00 1.00309E+00 1.00347E+00 + 1.00417E+00 1.00485E+00 1.00420E+00 + 1.00217E+00 1.00279E+00 1.00245E+00 + 1.00359E+00 1.00312E+00 1.00345E+00 + 1.00375E+00 1.00484E+00 1.00399E+00 + 1.00175E+00 1.00132E+00 1.00294E+00 + 1.00375E+00 1.00285E+00 1.00340E+00 + 1.00351E+00 1.00464E+00 1.00473E+00 + * GROUP 2 + 9.42854E-01 9.40652E-01 9.37073E-01 + 9.48090E-01 9.48090E-01 9.46229E-01 + 9.57172E-01 9.52054E-01 9.54239E-01 + 9.41295E-01 9.38576E-01 9.39804E-01 + 9.47349E-01 9.45857E-01 9.46479E-01 + 9.51418E-01 9.52308E-01 9.54002E-01 + 9.43235E-01 9.39987E-01 9.38776E-01 + 9.46119E-01 9.49817E-01 9.47678E-01 + 9.52163E-01 9.57595E-01 9.52913E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21514E-01 2.28795E-01 2.34841E-01 + 2.21253E-01 2.29046E-01 2.35069E-01 + 2.21305E-01 2.29138E-01 2.34783E-01 + 2.21498E-01 2.28873E-01 2.34813E-01 + 2.21588E-01 2.29137E-01 2.34928E-01 + 2.21203E-01 2.28827E-01 2.34892E-01 + 2.21332E-01 2.28840E-01 2.34884E-01 + 2.21516E-01 2.28887E-01 2.34927E-01 + 2.21304E-01 2.28840E-01 2.34734E-01 + * GROUP 2 + 8.06737E-01 8.52377E-01 8.97355E-01 + 7.99720E-01 8.49983E-01 8.95411E-01 + 7.99937E-01 8.42954E-01 8.82660E-01 + 8.05850E-01 8.53868E-01 8.95259E-01 + 8.07460E-01 8.54254E-01 8.90279E-01 + 7.98814E-01 8.48763E-01 8.85003E-01 + 8.05006E-01 8.55250E-01 8.93568E-01 + 8.02194E-01 8.51064E-01 8.91920E-01 + 8.02359E-01 8.42778E-01 8.83536E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.60950E-02 1.63270E-02 1.64839E-02 + 1.62844E-02 1.65361E-02 1.67194E-02 + 1.64596E-02 1.67396E-02 1.69382E-02 + 1.62672E-02 1.64971E-02 1.66739E-02 + 1.64649E-02 1.67189E-02 1.68983E-02 + 1.66380E-02 1.69108E-02 1.71243E-02 + 1.64390E-02 1.66775E-02 1.68657E-02 + 1.66349E-02 1.69073E-02 1.70870E-02 + 1.68172E-02 1.71067E-02 1.73019E-02 + * GROUP 2 + 1.36083E-01 1.36737E-01 1.37155E-01 + 1.44639E-01 1.46101E-01 1.47265E-01 + 1.53072E-01 1.55309E-01 1.57256E-01 + 1.36206E-01 1.36760E-01 1.37235E-01 + 1.44701E-01 1.46229E-01 1.47420E-01 + 1.53190E-01 1.55295E-01 1.57390E-01 + 1.36382E-01 1.36920E-01 1.37390E-01 + 1.45058E-01 1.46444E-01 1.47529E-01 + 1.53420E-01 1.55528E-01 1.57384E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.00415E-03 5.06993E-03 5.11585E-03 + 5.01422E-03 5.08334E-03 5.13258E-03 + 5.02562E-03 5.09816E-03 5.15032E-03 + 4.99218E-03 5.05888E-03 5.10632E-03 + 5.00097E-03 5.07279E-03 5.12281E-03 + 5.02066E-03 5.09523E-03 5.14601E-03 + 4.97882E-03 5.04925E-03 5.09874E-03 + 4.99717E-03 5.06533E-03 5.11387E-03 + 5.00980E-03 5.08352E-03 5.13533E-03 + * GROUP 2 + 1.46052E-01 1.46677E-01 1.47068E-01 + 1.45685E-01 1.46219E-01 1.46659E-01 + 1.45337E-01 1.45892E-01 1.46260E-01 + 1.46137E-01 1.46746E-01 1.47156E-01 + 1.45871E-01 1.46424E-01 1.46836E-01 + 1.45605E-01 1.45895E-01 1.46437E-01 + 1.46646E-01 1.47017E-01 1.47456E-01 + 1.46365E-01 1.46814E-01 1.47171E-01 + 1.45921E-01 1.46379E-01 1.46743E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.09131E-14 6.16936E-14 6.22516E-14 + 6.10094E-14 6.18295E-14 6.24168E-14 + 6.11169E-14 6.19729E-14 6.25843E-14 + 6.07610E-14 6.15544E-14 6.21186E-14 + 6.08537E-14 6.16978E-14 6.22703E-14 + 6.10353E-14 6.19020E-14 6.25116E-14 + 6.05852E-14 6.14221E-14 6.20213E-14 + 6.07801E-14 6.15886E-14 6.21628E-14 + 6.09073E-14 6.17597E-14 6.23754E-14 + * GROUP 2 + 1.78292E-12 1.79198E-12 1.79803E-12 + 1.77755E-12 1.78546E-12 1.79199E-12 + 1.77255E-12 1.78060E-12 1.78623E-12 + 1.78348E-12 1.79232E-12 1.79864E-12 + 1.77941E-12 1.78747E-12 1.79377E-12 + 1.77538E-12 1.78023E-12 1.78799E-12 + 1.78917E-12 1.79509E-12 1.80181E-12 + 1.78485E-12 1.79174E-12 1.79735E-12 + 1.77870E-12 1.78558E-12 1.79122E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.80379E-01 5.04017E-01 5.22840E-01 + 4.80731E-01 5.04357E-01 5.23230E-01 + 4.80816E-01 5.04598E-01 5.23298E-01 + 4.80565E-01 5.04204E-01 5.22999E-01 + 4.80936E-01 5.04610E-01 5.23241E-01 + 4.80930E-01 5.04490E-01 5.23283E-01 + 4.80768E-01 5.04331E-01 5.23120E-01 + 4.81007E-01 5.04656E-01 5.23359E-01 + 4.81070E-01 5.04733E-01 5.23385E-01 + * GROUP 1 -> 2 + 1.12808E-02 1.25140E-02 1.35100E-02 + 1.12656E-02 1.24900E-02 1.34902E-02 + 1.12184E-02 1.24414E-02 1.34316E-02 + 1.12105E-02 1.24305E-02 1.34173E-02 + 1.11695E-02 1.24068E-02 1.33805E-02 + 1.11181E-02 1.23417E-02 1.33295E-02 + 1.11147E-02 1.23381E-02 1.33087E-02 + 1.10783E-02 1.22989E-02 1.32745E-02 + 1.10220E-02 1.22453E-02 1.32290E-02 + * GROUP 2 -> 1 + 2.25439E-03 2.09169E-03 1.97735E-03 + 2.32635E-03 2.21252E-03 2.11397E-03 + 2.45958E-03 2.35092E-03 2.23237E-03 + 2.48589E-03 2.32314E-03 2.20864E-03 + 2.61412E-03 2.46607E-03 2.35470E-03 + 2.74621E-03 2.62087E-03 2.49645E-03 + 2.77205E-03 2.61338E-03 2.48917E-03 + 2.93782E-03 2.78407E-03 2.63680E-03 + 3.08107E-03 2.96875E-03 2.83817E-03 + * GROUP 2 -> 2 + 1.16114E+00 1.25080E+00 1.32398E+00 + 1.15210E+00 1.24164E+00 1.31437E+00 + 1.14523E+00 1.23332E+00 1.30401E+00 + 1.16005E+00 1.25001E+00 1.32400E+00 + 1.15226E+00 1.24111E+00 1.31347E+00 + 1.14464E+00 1.23317E+00 1.30336E+00 + 1.15908E+00 1.24924E+00 1.32266E+00 + 1.15137E+00 1.24005E+00 1.31235E+00 + 1.14472E+00 1.23194E+00 1.30298E+00 + * + * ADF Table + * + * GROUP 1 + 1.06412E+00 1.06650E+00 1.07028E+00 + 1.06380E+00 1.06654E+00 1.06786E+00 + 1.06131E+00 1.06507E+00 1.06674E+00 + 1.06375E+00 1.06702E+00 1.06929E+00 + 1.06312E+00 1.06495E+00 1.06838E+00 + 1.06218E+00 1.06526E+00 1.06813E+00 + 1.06406E+00 1.06670E+00 1.06998E+00 + 1.06238E+00 1.06530E+00 1.06776E+00 + 1.06197E+00 1.06368E+00 1.06673E+00 + * GROUP 2 + 1.35953E+00 1.36479E+00 1.36816E+00 + 1.35747E+00 1.35758E+00 1.35987E+00 + 1.34389E+00 1.35445E+00 1.35361E+00 + 1.35442E+00 1.35922E+00 1.36301E+00 + 1.35391E+00 1.35275E+00 1.36011E+00 + 1.35066E+00 1.35289E+00 1.35418E+00 + 1.36071E+00 1.36005E+00 1.36499E+00 + 1.35550E+00 1.35514E+00 1.36025E+00 + 1.34844E+00 1.35106E+00 1.35335E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.60539E-08 2.32275E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.34053E-02 3.16169E-02 1.19680E-01 3.09314E-01 8.78226E-01 2.94537E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.29344E-04 9.01347E-04 8.50063E-04 1.95617E-03 1.03328E-03 4.21366E-04 diff --git a/smpl/xsec/SERPENT_CMM/u45.tab b/smpl/xsec/SERPENT_CMM/u45.tab new file mode 100644 index 0000000..7efa26e --- /dev/null +++ b/smpl/xsec/SERPENT_CMM/u45.tab @@ -0,0 +1,2387 @@ + * INPUT CONTROL + 1 1 * ADF and CR + * Mod Dens Boron ppm Fuel Temp Mod Temp + 3 3 3 1 + 0.66114 0.71187 0.75206 + 0.00 1000.00 2000.00 + 560.00 900.00 1320.00 + * + * -------------------------------------------------------- + * BURNUP 0.15 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20035E-01 2.28058E-01 2.34495E-01 + 2.19847E-01 2.28099E-01 2.34210E-01 + 2.19766E-01 2.27797E-01 2.34312E-01 + 2.19785E-01 2.28097E-01 2.34293E-01 + 2.19794E-01 2.28013E-01 2.34163E-01 + 2.19895E-01 2.28012E-01 2.34469E-01 + 2.19792E-01 2.27912E-01 2.33988E-01 + 2.19917E-01 2.27916E-01 2.34173E-01 + 2.19843E-01 2.27798E-01 2.34397E-01 + * GROUP 2 + 7.77507E-01 8.27501E-01 8.71673E-01 + 7.72969E-01 8.22128E-01 8.60367E-01 + 7.67852E-01 8.17314E-01 8.58296E-01 + 7.78438E-01 8.29623E-01 8.67842E-01 + 7.72503E-01 8.22232E-01 8.63246E-01 + 7.67888E-01 8.16590E-01 8.57021E-01 + 7.78542E-01 8.27467E-01 8.71660E-01 + 7.73728E-01 8.19437E-01 8.63717E-01 + 7.71360E-01 8.20564E-01 8.56665E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 9.63139E-03 9.73431E-03 9.80645E-03 + 9.91375E-03 1.00449E-02 1.01350E-02 + 1.01885E-02 1.03417E-02 1.04516E-02 + 9.80114E-03 9.90799E-03 9.98925E-03 + 1.00836E-02 1.02138E-02 1.03114E-02 + 1.03564E-02 1.05186E-02 1.06405E-02 + 9.98056E-03 1.00914E-02 1.01733E-02 + 1.02714E-02 1.04006E-02 1.04967E-02 + 1.05433E-02 1.07044E-02 1.08169E-02 + * GROUP 2 + 1.08297E-01 1.10578E-01 1.12573E-01 + 1.16271E-01 1.19334E-01 1.22015E-01 + 1.24120E-01 1.27946E-01 1.31249E-01 + 1.07935E-01 1.10227E-01 1.12234E-01 + 1.15965E-01 1.19041E-01 1.21629E-01 + 1.23781E-01 1.27588E-01 1.30865E-01 + 1.07641E-01 1.09932E-01 1.11867E-01 + 1.15555E-01 1.18641E-01 1.21293E-01 + 1.23441E-01 1.27242E-01 1.30534E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.77068E-03 7.83648E-03 7.88309E-03 + 7.80594E-03 7.87694E-03 7.92582E-03 + 7.83357E-03 7.90723E-03 7.95787E-03 + 7.76772E-03 7.83945E-03 7.88957E-03 + 7.80104E-03 7.87220E-03 7.93034E-03 + 7.83321E-03 7.90677E-03 7.96126E-03 + 7.77369E-03 7.84154E-03 7.88805E-03 + 7.80693E-03 7.87963E-03 7.92682E-03 + 7.83959E-03 7.91027E-03 7.96240E-03 + * GROUP 2 + 1.61703E-01 1.64554E-01 1.67050E-01 + 1.59917E-01 1.62487E-01 1.64920E-01 + 1.58233E-01 1.60634E-01 1.62949E-01 + 1.61134E-01 1.63916E-01 1.66507E-01 + 1.59446E-01 1.62037E-01 1.64305E-01 + 1.57744E-01 1.60179E-01 1.62412E-01 + 1.60662E-01 1.63449E-01 1.65925E-01 + 1.58769E-01 1.61442E-01 1.63870E-01 + 1.57226E-01 1.59679E-01 1.61873E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 1.00078E-13 1.00893E-13 1.01468E-13 + 1.00565E-13 1.01452E-13 1.02056E-13 + 1.00933E-13 1.01855E-13 1.02493E-13 + 1.00032E-13 1.00933E-13 1.01556E-13 + 1.00493E-13 1.01384E-13 1.02113E-13 + 1.00927E-13 1.01851E-13 1.02532E-13 + 1.00110E-13 1.00949E-13 1.01531E-13 + 1.00568E-13 1.01473E-13 1.02063E-13 + 1.01007E-13 1.01891E-13 1.02543E-13 + * GROUP 2 + 2.14999E-12 2.18791E-12 2.22112E-12 + 2.12623E-12 2.16042E-12 2.19279E-12 + 2.10382E-12 2.13577E-12 2.16656E-12 + 2.14241E-12 2.17942E-12 2.21389E-12 + 2.11995E-12 2.15443E-12 2.18460E-12 + 2.09732E-12 2.12972E-12 2.15942E-12 + 2.13613E-12 2.17321E-12 2.20615E-12 + 2.11095E-12 2.14652E-12 2.17881E-12 + 2.09043E-12 2.12305E-12 2.15226E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.80702E-01 5.05861E-01 5.25680E-01 + 4.82309E-01 5.07575E-01 5.27567E-01 + 4.83632E-01 5.09047E-01 5.29303E-01 + 4.80874E-01 5.06009E-01 5.25847E-01 + 4.82521E-01 5.07751E-01 5.27824E-01 + 4.83870E-01 5.09366E-01 5.29514E-01 + 4.81200E-01 5.06284E-01 5.26168E-01 + 4.82797E-01 5.08000E-01 5.28108E-01 + 4.84098E-01 5.09554E-01 5.29762E-01 + * GROUP 1 -> 2 + 1.49515E-02 1.63089E-02 1.73916E-02 + 1.50528E-02 1.64489E-02 1.75495E-02 + 1.51313E-02 1.65355E-02 1.76737E-02 + 1.48914E-02 1.62503E-02 1.73328E-02 + 1.50072E-02 1.63925E-02 1.74988E-02 + 1.50786E-02 1.64886E-02 1.75983E-02 + 1.48465E-02 1.62029E-02 1.72752E-02 + 1.49471E-02 1.63257E-02 1.74414E-02 + 1.50170E-02 1.64166E-02 1.75429E-02 + * GROUP 2 -> 1 + 1.91003E-03 1.82016E-03 1.73246E-03 + 2.01766E-03 1.93000E-03 1.86721E-03 + 2.13248E-03 2.04869E-03 1.97471E-03 + 2.11380E-03 1.99302E-03 1.92212E-03 + 2.24504E-03 2.15608E-03 2.05001E-03 + 2.35547E-03 2.26839E-03 2.17794E-03 + 2.38667E-03 2.24512E-03 2.16345E-03 + 2.52874E-03 2.40178E-03 2.31507E-03 + 2.64989E-03 2.53808E-03 2.45758E-03 + * GROUP 2 -> 2 + 1.19405E+00 1.28863E+00 1.36557E+00 + 1.18569E+00 1.27893E+00 1.35489E+00 + 1.17796E+00 1.27006E+00 1.34436E+00 + 1.19332E+00 1.28819E+00 1.36523E+00 + 1.18523E+00 1.27830E+00 1.35417E+00 + 1.17762E+00 1.26931E+00 1.34380E+00 + 1.19293E+00 1.28748E+00 1.36425E+00 + 1.18485E+00 1.27752E+00 1.35375E+00 + 1.17701E+00 1.26813E+00 1.34363E+00 + * + * ADF Table + * + * GROUP 1 + 1.00662E+00 1.00761E+00 1.00832E+00 + 1.00845E+00 1.00849E+00 1.00854E+00 + 1.00797E+00 1.00903E+00 1.00842E+00 + 1.00770E+00 1.00767E+00 1.00888E+00 + 1.00670E+00 1.00853E+00 1.00726E+00 + 1.00750E+00 1.00916E+00 1.00869E+00 + 1.00683E+00 1.00800E+00 1.00750E+00 + 1.00664E+00 1.00918E+00 1.00878E+00 + 1.00826E+00 1.00813E+00 1.00947E+00 + * GROUP 2 + 1.02561E+00 1.02432E+00 1.02414E+00 + 1.02374E+00 1.02655E+00 1.02661E+00 + 1.02482E+00 1.03008E+00 1.02901E+00 + 1.02112E+00 1.02288E+00 1.02410E+00 + 1.02582E+00 1.02953E+00 1.02633E+00 + 1.02798E+00 1.03121E+00 1.02960E+00 + 1.02132E+00 1.02571E+00 1.02422E+00 + 1.02324E+00 1.02468E+00 1.02800E+00 + 1.02930E+00 1.02811E+00 1.03033E+00 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21248E-01 2.28864E-01 2.34768E-01 + 2.21282E-01 2.28899E-01 2.34908E-01 + 2.21318E-01 2.28807E-01 2.34711E-01 + 2.21361E-01 2.28682E-01 2.34782E-01 + 2.21216E-01 2.28881E-01 2.34655E-01 + 2.21122E-01 2.28689E-01 2.34790E-01 + 2.21209E-01 2.28645E-01 2.34817E-01 + 2.21132E-01 2.28845E-01 2.34640E-01 + 2.21215E-01 2.28565E-01 2.34609E-01 + * GROUP 2 + 7.76837E-01 8.22368E-01 8.62238E-01 + 7.76814E-01 8.20704E-01 8.55500E-01 + 7.71100E-01 8.19408E-01 8.56044E-01 + 7.77123E-01 8.23911E-01 8.64570E-01 + 7.69830E-01 8.20497E-01 8.57234E-01 + 7.67253E-01 8.14686E-01 8.54930E-01 + 7.77288E-01 8.24963E-01 8.66590E-01 + 7.72210E-01 8.21840E-01 8.57699E-01 + 7.72638E-01 8.14934E-01 8.55634E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.52364E-02 1.54227E-02 1.55538E-02 + 1.54531E-02 1.56633E-02 1.58219E-02 + 1.56607E-02 1.58992E-02 1.60616E-02 + 1.53785E-02 1.55754E-02 1.57132E-02 + 1.55948E-02 1.58217E-02 1.59688E-02 + 1.58019E-02 1.60392E-02 1.62193E-02 + 1.55298E-02 1.57259E-02 1.58712E-02 + 1.57462E-02 1.59609E-02 1.61284E-02 + 1.59515E-02 1.61932E-02 1.63681E-02 + * GROUP 2 + 1.41432E-01 1.43486E-01 1.45423E-01 + 1.48906E-01 1.51790E-01 1.54259E-01 + 1.56367E-01 1.59796E-01 1.62954E-01 + 1.41040E-01 1.43152E-01 1.45052E-01 + 1.48584E-01 1.51353E-01 1.53880E-01 + 1.56004E-01 1.59650E-01 1.62682E-01 + 1.40641E-01 1.42821E-01 1.44698E-01 + 1.48372E-01 1.51189E-01 1.53502E-01 + 1.55749E-01 1.59154E-01 1.62350E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 7.46980E-03 7.56540E-03 7.63009E-03 + 7.48355E-03 7.57907E-03 7.65195E-03 + 7.49224E-03 7.59559E-03 7.66577E-03 + 7.46042E-03 7.55943E-03 7.62774E-03 + 7.48058E-03 7.57746E-03 7.65237E-03 + 7.49758E-03 7.59298E-03 7.66401E-03 + 7.46214E-03 7.55777E-03 7.62830E-03 + 7.47611E-03 7.57781E-03 7.65159E-03 + 7.49235E-03 7.59413E-03 7.66582E-03 + * GROUP 2 + 1.66917E-01 1.70063E-01 1.72979E-01 + 1.65000E-01 1.68187E-01 1.70693E-01 + 1.63483E-01 1.66208E-01 1.68844E-01 + 1.66311E-01 1.69572E-01 1.72398E-01 + 1.64552E-01 1.67538E-01 1.70344E-01 + 1.62921E-01 1.65895E-01 1.68263E-01 + 1.65625E-01 1.68916E-01 1.71915E-01 + 1.64132E-01 1.67134E-01 1.69708E-01 + 1.62395E-01 1.65292E-01 1.67920E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 9.60494E-14 9.72615E-14 9.80803E-14 + 9.62225E-14 9.74285E-14 9.83508E-14 + 9.63246E-14 9.76301E-14 9.85131E-14 + 9.59252E-14 9.71770E-14 9.80398E-14 + 9.61820E-14 9.74042E-14 9.83473E-14 + 9.63857E-14 9.75838E-14 9.84863E-14 + 9.59379E-14 9.71498E-14 9.80452E-14 + 9.61074E-14 9.73961E-14 9.83299E-14 + 9.63031E-14 9.75900E-14 9.84945E-14 + * GROUP 2 + 2.21928E-12 2.26113E-12 2.29992E-12 + 2.19379E-12 2.23618E-12 2.26951E-12 + 2.17361E-12 2.20984E-12 2.24492E-12 + 2.21122E-12 2.25460E-12 2.29220E-12 + 2.18782E-12 2.22754E-12 2.26486E-12 + 2.16612E-12 2.20569E-12 2.23718E-12 + 2.20209E-12 2.24586E-12 2.28577E-12 + 2.18223E-12 2.22216E-12 2.25640E-12 + 2.15912E-12 2.19766E-12 2.23262E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.75629E-01 4.99297E-01 5.18019E-01 + 4.76208E-01 4.99961E-01 5.18746E-01 + 4.76653E-01 5.00539E-01 5.19340E-01 + 4.75750E-01 4.99416E-01 5.18180E-01 + 4.76356E-01 5.00173E-01 5.18937E-01 + 4.76909E-01 5.00665E-01 5.19602E-01 + 4.75990E-01 4.99657E-01 5.18380E-01 + 4.76545E-01 5.00367E-01 5.19132E-01 + 4.77093E-01 5.00832E-01 5.19658E-01 + * GROUP 1 -> 2 + 1.15937E-02 1.28371E-02 1.38204E-02 + 1.15748E-02 1.28257E-02 1.38168E-02 + 1.15430E-02 1.28013E-02 1.38000E-02 + 1.15342E-02 1.27686E-02 1.37655E-02 + 1.15088E-02 1.27665E-02 1.37572E-02 + 1.14892E-02 1.27442E-02 1.37431E-02 + 1.14829E-02 1.27141E-02 1.36995E-02 + 1.14569E-02 1.27139E-02 1.36977E-02 + 1.14317E-02 1.26750E-02 1.36718E-02 + * GROUP 2 -> 1 + 2.29769E-03 2.20286E-03 2.09801E-03 + 2.42724E-03 2.31016E-03 2.22653E-03 + 2.50397E-03 2.41927E-03 2.30447E-03 + 2.56586E-03 2.43749E-03 2.35448E-03 + 2.68986E-03 2.57480E-03 2.47155E-03 + 2.78929E-03 2.70968E-03 2.58876E-03 + 2.89700E-03 2.73851E-03 2.64701E-03 + 3.04333E-03 2.89945E-03 2.77174E-03 + 3.15955E-03 3.04318E-03 2.92384E-03 + * GROUP 2 -> 2 + 1.14089E+00 1.22926E+00 1.30197E+00 + 1.13369E+00 1.22169E+00 1.29336E+00 + 1.12749E+00 1.21451E+00 1.28472E+00 + 1.14014E+00 1.22957E+00 1.30118E+00 + 1.13321E+00 1.22106E+00 1.29211E+00 + 1.12723E+00 1.21411E+00 1.28426E+00 + 1.13925E+00 1.22821E+00 1.30068E+00 + 1.13282E+00 1.22056E+00 1.29216E+00 + 1.12644E+00 1.21252E+00 1.28358E+00 + * + * ADF Table + * + * GROUP 1 + 1.06634E+00 1.06955E+00 1.07139E+00 + 1.06395E+00 1.06815E+00 1.06915E+00 + 1.06339E+00 1.06522E+00 1.06765E+00 + 1.06512E+00 1.06883E+00 1.07167E+00 + 1.06381E+00 1.06728E+00 1.07062E+00 + 1.06313E+00 1.06685E+00 1.06906E+00 + 1.06588E+00 1.06944E+00 1.07161E+00 + 1.06307E+00 1.06685E+00 1.06888E+00 + 1.06276E+00 1.06627E+00 1.06793E+00 + * GROUP 2 + 1.42792E+00 1.42875E+00 1.43117E+00 + 1.41733E+00 1.42059E+00 1.42485E+00 + 1.41282E+00 1.41941E+00 1.41920E+00 + 1.42551E+00 1.43035E+00 1.43254E+00 + 1.42185E+00 1.42529E+00 1.42584E+00 + 1.41027E+00 1.41567E+00 1.41919E+00 + 1.42378E+00 1.42801E+00 1.43466E+00 + 1.41165E+00 1.42132E+00 1.42354E+00 + 1.40923E+00 1.41617E+00 1.41662E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.65853E-08 2.22259E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33639E-02 3.25436E-02 1.21214E-01 3.07057E-01 8.66397E-01 2.90966E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 2.25494E-04 1.20150E-03 1.18746E-03 2.80071E-03 1.27123E-03 5.37941E-04 + * + * -------------------------------------------------------- + * BURNUP 17.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19689E-01 2.27939E-01 2.33864E-01 + 2.19610E-01 2.27933E-01 2.34206E-01 + 2.19670E-01 2.27912E-01 2.34220E-01 + 2.19696E-01 2.27800E-01 2.34091E-01 + 2.19587E-01 2.27651E-01 2.34060E-01 + 2.19629E-01 2.27572E-01 2.34038E-01 + 2.19679E-01 2.27656E-01 2.33830E-01 + 2.19622E-01 2.27731E-01 2.33701E-01 + 2.19464E-01 2.27548E-01 2.33866E-01 + * GROUP 2 + 8.01637E-01 8.52314E-01 8.94335E-01 + 7.94682E-01 8.44561E-01 8.85733E-01 + 7.91315E-01 8.40272E-01 8.81598E-01 + 8.00102E-01 8.52415E-01 8.94123E-01 + 7.93742E-01 8.50718E-01 8.83730E-01 + 7.88491E-01 8.38984E-01 8.83997E-01 + 7.98898E-01 8.53143E-01 8.96034E-01 + 7.95837E-01 8.44779E-01 8.88163E-01 + 7.90808E-01 8.37026E-01 8.79898E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.00851E-02 1.02068E-02 1.02917E-02 + 1.03741E-02 1.05158E-02 1.06286E-02 + 1.06464E-02 1.08224E-02 1.09431E-02 + 1.02815E-02 1.03986E-02 1.04805E-02 + 1.05687E-02 1.07118E-02 1.08228E-02 + 1.08445E-02 1.10233E-02 1.11489E-02 + 1.04778E-02 1.06136E-02 1.07067E-02 + 1.07698E-02 1.09276E-02 1.10275E-02 + 1.10499E-02 1.12336E-02 1.13549E-02 + * GROUP 2 + 1.07723E-01 1.09003E-01 1.10187E-01 + 1.16504E-01 1.18645E-01 1.20500E-01 + 1.25039E-01 1.28045E-01 1.30656E-01 + 1.07660E-01 1.08985E-01 1.10044E-01 + 1.16356E-01 1.18529E-01 1.20456E-01 + 1.24931E-01 1.27939E-01 1.30540E-01 + 1.07673E-01 1.08913E-01 1.10070E-01 + 1.16362E-01 1.18491E-01 1.20364E-01 + 1.24928E-01 1.27862E-01 1.30408E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.54840E-03 6.60365E-03 6.64270E-03 + 6.57624E-03 6.62840E-03 6.67634E-03 + 6.59308E-03 6.65904E-03 6.69976E-03 + 6.54001E-03 6.59701E-03 6.63352E-03 + 6.56597E-03 6.62451E-03 6.66361E-03 + 6.58718E-03 6.64980E-03 6.69433E-03 + 6.53132E-03 6.59018E-03 6.63298E-03 + 6.55611E-03 6.61805E-03 6.65977E-03 + 6.57997E-03 6.64343E-03 6.68059E-03 + * GROUP 2 + 1.67290E-01 1.68542E-01 1.69765E-01 + 1.66397E-01 1.67549E-01 1.68613E-01 + 1.65497E-01 1.66606E-01 1.67696E-01 + 1.67206E-01 1.68532E-01 1.69564E-01 + 1.66214E-01 1.67403E-01 1.68602E-01 + 1.65402E-01 1.66496E-01 1.67570E-01 + 1.67275E-01 1.68442E-01 1.69623E-01 + 1.66296E-01 1.67406E-01 1.68512E-01 + 1.65507E-01 1.66451E-01 1.67483E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 8.22746E-14 8.29464E-14 8.34182E-14 + 8.26450E-14 8.32794E-14 8.38651E-14 + 8.28774E-14 8.36790E-14 8.41711E-14 + 8.21682E-14 8.28596E-14 8.32978E-14 + 8.25117E-14 8.32217E-14 8.37017E-14 + 8.27912E-14 8.35545E-14 8.40974E-14 + 8.20490E-14 8.27683E-14 8.32879E-14 + 8.23863E-14 8.31386E-14 8.36412E-14 + 8.26981E-14 8.34710E-14 8.39125E-14 + * GROUP 2 + 2.11931E-12 2.13711E-12 2.15428E-12 + 2.10674E-12 2.12315E-12 2.13826E-12 + 2.09422E-12 2.10994E-12 2.12531E-12 + 2.11771E-12 2.13638E-12 2.15120E-12 + 2.10389E-12 2.12074E-12 2.13756E-12 + 2.09244E-12 2.10802E-12 2.12320E-12 + 2.11785E-12 2.13456E-12 2.15123E-12 + 2.10427E-12 2.12014E-12 2.13579E-12 + 2.09314E-12 2.10684E-12 2.12143E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.82310E-01 5.07330E-01 5.27147E-01 + 4.83913E-01 5.09255E-01 5.29261E-01 + 4.85334E-01 5.10788E-01 5.30861E-01 + 4.82634E-01 5.07546E-01 5.27463E-01 + 4.84287E-01 5.09440E-01 5.29524E-01 + 4.85621E-01 5.11031E-01 5.31114E-01 + 4.82819E-01 5.07934E-01 5.27693E-01 + 4.84499E-01 5.09781E-01 5.29679E-01 + 4.85847E-01 5.11319E-01 5.31375E-01 + * GROUP 1 -> 2 + 1.45721E-02 1.59125E-02 1.69730E-02 + 1.46817E-02 1.60594E-02 1.71506E-02 + 1.47692E-02 1.61555E-02 1.72731E-02 + 1.45042E-02 1.58402E-02 1.69087E-02 + 1.46118E-02 1.59776E-02 1.70755E-02 + 1.46946E-02 1.60747E-02 1.71845E-02 + 1.44339E-02 1.57733E-02 1.68181E-02 + 1.45407E-02 1.59047E-02 1.69950E-02 + 1.46101E-02 1.59979E-02 1.71036E-02 + * GROUP 2 -> 1 + 1.89165E-03 1.79575E-03 1.69293E-03 + 2.03487E-03 1.91649E-03 1.84672E-03 + 2.16485E-03 2.08040E-03 1.96699E-03 + 2.12693E-03 1.99698E-03 1.89519E-03 + 2.24942E-03 2.14763E-03 2.03751E-03 + 2.39556E-03 2.28294E-03 2.17188E-03 + 2.35950E-03 2.21867E-03 2.11871E-03 + 2.51934E-03 2.40535E-03 2.30534E-03 + 2.68210E-03 2.55404E-03 2.44986E-03 + * GROUP 2 -> 2 + 1.20870E+00 1.30429E+00 1.38235E+00 + 1.20021E+00 1.29380E+00 1.37029E+00 + 1.19136E+00 1.28415E+00 1.35980E+00 + 1.20794E+00 1.30343E+00 1.38130E+00 + 1.19934E+00 1.29345E+00 1.36980E+00 + 1.19080E+00 1.28357E+00 1.35911E+00 + 1.20724E+00 1.30299E+00 1.38077E+00 + 1.19854E+00 1.29245E+00 1.36949E+00 + 1.18970E+00 1.28308E+00 1.35805E+00 + * + * ADF Table + * + * GROUP 1 + 9.99196E-01 9.98981E-01 9.99350E-01 + 9.99106E-01 1.00070E+00 1.00053E+00 + 1.00152E+00 1.00178E+00 1.00088E+00 + 9.99751E-01 1.00011E+00 9.99105E-01 + 1.00027E+00 1.00020E+00 1.00034E+00 + 1.00087E+00 1.00174E+00 1.00140E+00 + 9.99759E-01 9.99408E-01 9.97513E-01 + 1.00049E+00 1.00092E+00 9.99069E-01 + 1.00114E+00 1.00190E+00 1.00091E+00 + * GROUP 2 + 9.62309E-01 9.59127E-01 9.60130E-01 + 9.68272E-01 9.67250E-01 9.67569E-01 + 9.69647E-01 9.71169E-01 9.70514E-01 + 9.61203E-01 9.61113E-01 9.60101E-01 + 9.65754E-01 9.65854E-01 9.64506E-01 + 9.66927E-01 9.69025E-01 9.71310E-01 + 9.58988E-01 9.61231E-01 9.58256E-01 + 9.66272E-01 9.63530E-01 9.67653E-01 + 9.70849E-01 9.69465E-01 9.72315E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21139E-01 2.28767E-01 2.34556E-01 + 2.21349E-01 2.28583E-01 2.34310E-01 + 2.21259E-01 2.28622E-01 2.34552E-01 + 2.21042E-01 2.28536E-01 2.34554E-01 + 2.21009E-01 2.28519E-01 2.34508E-01 + 2.21023E-01 2.28410E-01 2.34714E-01 + 2.21106E-01 2.28664E-01 2.34250E-01 + 2.21046E-01 2.28400E-01 2.34678E-01 + 2.20853E-01 2.28492E-01 2.34541E-01 + * GROUP 2 + 7.94979E-01 8.42418E-01 8.85712E-01 + 7.92328E-01 8.42100E-01 8.81278E-01 + 7.88541E-01 8.40832E-01 8.74931E-01 + 7.95174E-01 8.44574E-01 8.82902E-01 + 7.89449E-01 8.41359E-01 8.78205E-01 + 7.93284E-01 8.39785E-01 8.81214E-01 + 7.97765E-01 8.43630E-01 8.87579E-01 + 7.94093E-01 8.40798E-01 8.78758E-01 + 7.96604E-01 8.35476E-01 8.73600E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.56345E-02 1.58418E-02 1.59870E-02 + 1.58382E-02 1.60804E-02 1.62456E-02 + 1.60472E-02 1.62873E-02 1.64755E-02 + 1.57926E-02 1.60067E-02 1.61525E-02 + 1.59969E-02 1.62327E-02 1.64203E-02 + 1.61978E-02 1.64577E-02 1.66472E-02 + 1.59575E-02 1.61759E-02 1.63350E-02 + 1.61487E-02 1.64079E-02 1.65836E-02 + 1.63537E-02 1.66207E-02 1.68261E-02 + * GROUP 2 + 1.45530E-01 1.46611E-01 1.47581E-01 + 1.53655E-01 1.55566E-01 1.57324E-01 + 1.61690E-01 1.64383E-01 1.66671E-01 + 1.45454E-01 1.46592E-01 1.47438E-01 + 1.53546E-01 1.55467E-01 1.57205E-01 + 1.61495E-01 1.64328E-01 1.66520E-01 + 1.45423E-01 1.46601E-01 1.47582E-01 + 1.53519E-01 1.55391E-01 1.57212E-01 + 1.61526E-01 1.64189E-01 1.66534E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.32459E-03 6.40428E-03 6.46013E-03 + 6.33794E-03 6.42337E-03 6.48230E-03 + 6.35080E-03 6.42939E-03 6.49153E-03 + 6.31167E-03 6.39662E-03 6.45420E-03 + 6.32701E-03 6.40805E-03 6.46977E-03 + 6.34157E-03 6.42654E-03 6.48714E-03 + 6.30636E-03 6.38713E-03 6.44529E-03 + 6.31842E-03 6.40570E-03 6.46136E-03 + 6.33311E-03 6.41888E-03 6.47605E-03 + * GROUP 2 + 1.75148E-01 1.76734E-01 1.78259E-01 + 1.74190E-01 1.75771E-01 1.77255E-01 + 1.73209E-01 1.74738E-01 1.76011E-01 + 1.75038E-01 1.76759E-01 1.78088E-01 + 1.74022E-01 1.75660E-01 1.77071E-01 + 1.73068E-01 1.74721E-01 1.75885E-01 + 1.74926E-01 1.76677E-01 1.78144E-01 + 1.74077E-01 1.75589E-01 1.76962E-01 + 1.73236E-01 1.74633E-01 1.75947E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.93505E-14 8.03279E-14 8.10123E-14 + 7.95045E-14 8.05492E-14 8.12762E-14 + 7.96465E-14 8.06001E-14 8.13647E-14 + 7.91737E-14 8.02169E-14 8.09271E-14 + 7.93512E-14 8.03495E-14 8.11073E-14 + 7.95186E-14 8.05628E-14 8.13031E-14 + 7.90985E-14 8.00928E-14 8.08051E-14 + 7.92288E-14 8.03028E-14 8.09988E-14 + 7.93963E-14 8.04470E-14 8.11558E-14 + * GROUP 2 + 2.21571E-12 2.23782E-12 2.25888E-12 + 2.20238E-12 2.22443E-12 2.24482E-12 + 2.18905E-12 2.21020E-12 2.22792E-12 + 2.21380E-12 2.23751E-12 2.25617E-12 + 2.19988E-12 2.22241E-12 2.24200E-12 + 2.18673E-12 2.20945E-12 2.22581E-12 + 2.21169E-12 2.23578E-12 2.25619E-12 + 2.19993E-12 2.22090E-12 2.23994E-12 + 2.18821E-12 2.20768E-12 2.22592E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.77319E-01 5.01000E-01 5.19633E-01 + 4.77911E-01 5.01623E-01 5.20390E-01 + 4.78310E-01 5.02017E-01 5.20783E-01 + 4.77585E-01 5.01101E-01 5.19864E-01 + 4.78039E-01 5.01750E-01 5.20570E-01 + 4.78508E-01 5.02218E-01 5.21029E-01 + 4.77660E-01 5.01341E-01 5.20043E-01 + 4.78179E-01 5.01874E-01 5.20750E-01 + 4.78611E-01 5.02232E-01 5.21136E-01 + * GROUP 1 -> 2 + 1.13050E-02 1.25317E-02 1.35051E-02 + 1.12914E-02 1.25135E-02 1.35021E-02 + 1.12559E-02 1.24951E-02 1.34736E-02 + 1.12365E-02 1.24497E-02 1.34321E-02 + 1.12193E-02 1.24436E-02 1.34217E-02 + 1.11806E-02 1.24112E-02 1.33986E-02 + 1.11578E-02 1.23843E-02 1.33537E-02 + 1.11491E-02 1.23689E-02 1.33427E-02 + 1.11052E-02 1.23274E-02 1.33083E-02 + * GROUP 2 -> 1 + 2.37602E-03 2.26028E-03 2.14511E-03 + 2.50127E-03 2.36837E-03 2.25180E-03 + 2.58870E-03 2.46866E-03 2.38548E-03 + 2.64816E-03 2.49253E-03 2.37470E-03 + 2.76788E-03 2.63875E-03 2.52704E-03 + 2.91905E-03 2.80182E-03 2.65327E-03 + 2.98977E-03 2.83419E-03 2.68840E-03 + 3.13626E-03 2.99011E-03 2.83463E-03 + 3.25686E-03 3.13204E-03 2.97957E-03 + * GROUP 2 -> 2 + 1.15194E+00 1.24173E+00 1.31489E+00 + 1.14459E+00 1.23310E+00 1.30478E+00 + 1.13860E+00 1.22518E+00 1.29624E+00 + 1.15155E+00 1.24096E+00 1.31420E+00 + 1.14422E+00 1.23246E+00 1.30474E+00 + 1.13742E+00 1.22465E+00 1.29612E+00 + 1.15076E+00 1.23985E+00 1.31325E+00 + 1.14395E+00 1.23193E+00 1.30389E+00 + 1.13705E+00 1.22432E+00 1.29497E+00 + * + * ADF Table + * + * GROUP 1 + 1.05946E+00 1.06370E+00 1.06476E+00 + 1.05906E+00 1.06125E+00 1.06283E+00 + 1.05757E+00 1.06043E+00 1.06131E+00 + 1.05971E+00 1.06185E+00 1.06496E+00 + 1.05814E+00 1.06138E+00 1.06407E+00 + 1.05744E+00 1.06028E+00 1.06252E+00 + 1.05930E+00 1.06221E+00 1.06470E+00 + 1.05831E+00 1.06097E+00 1.06326E+00 + 1.05780E+00 1.05966E+00 1.06212E+00 + * GROUP 2 + 1.37761E+00 1.38124E+00 1.38138E+00 + 1.36760E+00 1.37290E+00 1.37688E+00 + 1.36792E+00 1.36743E+00 1.37042E+00 + 1.37442E+00 1.37942E+00 1.38137E+00 + 1.36911E+00 1.37382E+00 1.37731E+00 + 1.36727E+00 1.36671E+00 1.37534E+00 + 1.37595E+00 1.38371E+00 1.38248E+00 + 1.36923E+00 1.37279E+00 1.37709E+00 + 1.36225E+00 1.37075E+00 1.37234E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.58897E-08 2.27062E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33605E-02 3.21479E-02 1.20444E-01 3.07448E-01 8.70739E-01 2.91663E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.73193E-04 9.99871E-04 9.31320E-04 2.31996E-03 1.11852E-03 4.45859E-04 + * + * -------------------------------------------------------- + * BURNUP 20.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19715E-01 2.27786E-01 2.34136E-01 + 2.19827E-01 2.27728E-01 2.34154E-01 + 2.19834E-01 2.27579E-01 2.34146E-01 + 2.19647E-01 2.27752E-01 2.34210E-01 + 2.19828E-01 2.27760E-01 2.33920E-01 + 2.19750E-01 2.27763E-01 2.34155E-01 + 2.19734E-01 2.27601E-01 2.33834E-01 + 2.19558E-01 2.27681E-01 2.33946E-01 + 2.19646E-01 2.27821E-01 2.33894E-01 + * GROUP 2 + 8.02782E-01 8.56316E-01 8.99385E-01 + 7.98199E-01 8.42375E-01 8.89900E-01 + 7.90062E-01 8.40187E-01 8.81635E-01 + 8.04133E-01 8.55281E-01 8.99613E-01 + 7.93706E-01 8.47410E-01 8.88906E-01 + 7.91937E-01 8.44935E-01 8.81352E-01 + 8.03311E-01 8.55649E-01 8.94830E-01 + 7.94943E-01 8.47858E-01 8.87161E-01 + 7.92821E-01 8.39805E-01 8.83856E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.01709E-02 1.02866E-02 1.03787E-02 + 1.04584E-02 1.06082E-02 1.07118E-02 + 1.07327E-02 1.09124E-02 1.10406E-02 + 1.03723E-02 1.04925E-02 1.05799E-02 + 1.06584E-02 1.08087E-02 1.09151E-02 + 1.09352E-02 1.11072E-02 1.12385E-02 + 1.05726E-02 1.06975E-02 1.07943E-02 + 1.08593E-02 1.10171E-02 1.11372E-02 + 1.11320E-02 1.13233E-02 1.14547E-02 + * GROUP 2 + 1.07190E-01 1.08375E-01 1.09475E-01 + 1.15971E-01 1.18104E-01 1.19930E-01 + 1.24609E-01 1.27561E-01 1.30112E-01 + 1.07130E-01 1.08357E-01 1.09347E-01 + 1.15959E-01 1.18043E-01 1.19854E-01 + 1.24544E-01 1.27482E-01 1.29932E-01 + 1.07143E-01 1.08379E-01 1.09349E-01 + 1.15923E-01 1.17965E-01 1.19824E-01 + 1.24545E-01 1.27504E-01 1.29920E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.38572E-03 6.43789E-03 6.47678E-03 + 6.41041E-03 6.47283E-03 6.50779E-03 + 6.43086E-03 6.49500E-03 6.53578E-03 + 6.37876E-03 6.43213E-03 6.47374E-03 + 6.39640E-03 6.46076E-03 6.50163E-03 + 6.42176E-03 6.48342E-03 6.52448E-03 + 6.36735E-03 6.41826E-03 6.46427E-03 + 6.39179E-03 6.44826E-03 6.49220E-03 + 6.41038E-03 6.47126E-03 6.51913E-03 + * GROUP 2 + 1.65165E-01 1.66229E-01 1.67306E-01 + 1.64266E-01 1.65384E-01 1.66382E-01 + 1.63519E-01 1.64514E-01 1.65503E-01 + 1.65108E-01 1.66238E-01 1.67123E-01 + 1.64310E-01 1.65343E-01 1.66325E-01 + 1.63483E-01 1.64477E-01 1.65272E-01 + 1.65169E-01 1.66324E-01 1.67172E-01 + 1.64332E-01 1.65282E-01 1.66328E-01 + 1.63574E-01 1.64611E-01 1.65366E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.99707E-14 8.06048E-14 8.10672E-14 + 8.03031E-14 8.10595E-14 8.14759E-14 + 8.05695E-14 8.13468E-14 8.18401E-14 + 7.98802E-14 8.05282E-14 8.10240E-14 + 8.01193E-14 8.08984E-14 8.13953E-14 + 8.04466E-14 8.11980E-14 8.16927E-14 + 7.97373E-14 8.03440E-14 8.09079E-14 + 8.00583E-14 8.07370E-14 8.12734E-14 + 8.02994E-14 8.10394E-14 8.16197E-14 + * GROUP 2 + 2.08290E-12 2.09821E-12 2.11352E-12 + 2.07032E-12 2.08616E-12 2.10039E-12 + 2.05972E-12 2.07396E-12 2.08796E-12 + 2.08160E-12 2.09772E-12 2.11064E-12 + 2.07029E-12 2.08509E-12 2.09909E-12 + 2.05870E-12 2.07291E-12 2.08450E-12 + 2.08165E-12 2.09812E-12 2.11054E-12 + 2.06987E-12 2.08366E-12 2.09849E-12 + 2.05919E-12 2.07391E-12 2.08501E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.82870E-01 5.07909E-01 5.27692E-01 + 4.84504E-01 5.09746E-01 5.29773E-01 + 4.85903E-01 5.11282E-01 5.31370E-01 + 4.83080E-01 5.08157E-01 5.27940E-01 + 4.84776E-01 5.10015E-01 5.30021E-01 + 4.86113E-01 5.11514E-01 5.31701E-01 + 4.83410E-01 5.08452E-01 5.28259E-01 + 4.85024E-01 5.10270E-01 5.30216E-01 + 4.86359E-01 5.11806E-01 5.31855E-01 + * GROUP 1 -> 2 + 1.45639E-02 1.59090E-02 1.69655E-02 + 1.46694E-02 1.60466E-02 1.71403E-02 + 1.47611E-02 1.61379E-02 1.72490E-02 + 1.44799E-02 1.58289E-02 1.68883E-02 + 1.46024E-02 1.59692E-02 1.70548E-02 + 1.46731E-02 1.60625E-02 1.71739E-02 + 1.44080E-02 1.57538E-02 1.68116E-02 + 1.45193E-02 1.58884E-02 1.69697E-02 + 1.45945E-02 1.59733E-02 1.70823E-02 + * GROUP 2 -> 1 + 1.90610E-03 1.78393E-03 1.68887E-03 + 2.00826E-03 1.92766E-03 1.83478E-03 + 2.14702E-03 2.05915E-03 1.96843E-03 + 2.10211E-03 1.98238E-03 1.86750E-03 + 2.24417E-03 2.13687E-03 2.02716E-03 + 2.38550E-03 2.28218E-03 2.17441E-03 + 2.35568E-03 2.22743E-03 2.11619E-03 + 2.49205E-03 2.38843E-03 2.27542E-03 + 2.66066E-03 2.55342E-03 2.45244E-03 + * GROUP 2 -> 2 + 1.20993E+00 1.30555E+00 1.38374E+00 + 1.20120E+00 1.29496E+00 1.37185E+00 + 1.19254E+00 1.28518E+00 1.36049E+00 + 1.20957E+00 1.30485E+00 1.38321E+00 + 1.20077E+00 1.29433E+00 1.37088E+00 + 1.19201E+00 1.28450E+00 1.36019E+00 + 1.20858E+00 1.30395E+00 1.38190E+00 + 1.19954E+00 1.29372E+00 1.37047E+00 + 1.19156E+00 1.28393E+00 1.35912E+00 + * + * ADF Table + * + * GROUP 1 + 9.99624E-01 9.99867E-01 9.99345E-01 + 1.00111E+00 1.00022E+00 1.00046E+00 + 1.00203E+00 1.00245E+00 1.00113E+00 + 9.98654E-01 1.00035E+00 9.99223E-01 + 9.99519E-01 1.00015E+00 1.00018E+00 + 1.00166E+00 1.00120E+00 1.00163E+00 + 9.99861E-01 9.99990E-01 9.99448E-01 + 9.99841E-01 1.00148E+00 1.00035E+00 + 1.00152E+00 1.00100E+00 1.00124E+00 + * GROUP 2 + 9.57611E-01 9.56984E-01 9.54835E-01 + 9.62875E-01 9.62799E-01 9.63609E-01 + 9.67212E-01 9.67267E-01 9.67604E-01 + 9.58649E-01 9.58777E-01 9.55747E-01 + 9.63772E-01 9.63983E-01 9.62839E-01 + 9.67417E-01 9.67435E-01 9.70434E-01 + 9.59740E-01 9.57790E-01 9.55345E-01 + 9.62828E-01 9.63552E-01 9.62284E-01 + 9.71633E-01 9.66039E-01 9.67286E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21048E-01 2.28799E-01 2.34587E-01 + 2.21267E-01 2.28557E-01 2.34623E-01 + 2.21290E-01 2.28684E-01 2.34571E-01 + 2.21133E-01 2.28679E-01 2.34514E-01 + 2.21109E-01 2.28745E-01 2.34568E-01 + 2.21141E-01 2.28601E-01 2.34515E-01 + 2.20940E-01 2.28479E-01 2.34473E-01 + 2.21019E-01 2.28648E-01 2.34303E-01 + 2.21083E-01 2.28782E-01 2.34517E-01 + * GROUP 2 + 8.00069E-01 8.48194E-01 8.85139E-01 + 7.91077E-01 8.42900E-01 8.80177E-01 + 7.93585E-01 8.37464E-01 8.76329E-01 + 7.98447E-01 8.47999E-01 8.85736E-01 + 7.98526E-01 8.44680E-01 8.83475E-01 + 7.94274E-01 8.37306E-01 8.77826E-01 + 7.96742E-01 8.48494E-01 8.84487E-01 + 7.95848E-01 8.41760E-01 8.81910E-01 + 7.91147E-01 8.37618E-01 8.76522E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.57000E-02 1.59115E-02 1.60638E-02 + 1.59058E-02 1.61545E-02 1.63177E-02 + 1.61069E-02 1.63735E-02 1.65584E-02 + 1.58733E-02 1.60929E-02 1.62429E-02 + 1.60737E-02 1.63244E-02 1.64905E-02 + 1.62706E-02 1.65315E-02 1.67228E-02 + 1.60263E-02 1.62663E-02 1.64169E-02 + 1.62283E-02 1.64907E-02 1.66626E-02 + 1.64328E-02 1.66937E-02 1.68989E-02 + * GROUP 2 + 1.45195E-01 1.46183E-01 1.47138E-01 + 1.53309E-01 1.55244E-01 1.56871E-01 + 1.61424E-01 1.63930E-01 1.66259E-01 + 1.45140E-01 1.46072E-01 1.47142E-01 + 1.53240E-01 1.55184E-01 1.56784E-01 + 1.61232E-01 1.63925E-01 1.66301E-01 + 1.45294E-01 1.46269E-01 1.47096E-01 + 1.53366E-01 1.55204E-01 1.56849E-01 + 1.61424E-01 1.63965E-01 1.66384E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.16871E-03 6.25551E-03 6.30674E-03 + 6.18400E-03 6.26445E-03 6.32396E-03 + 6.19464E-03 6.27846E-03 6.33341E-03 + 6.16090E-03 6.24394E-03 6.29923E-03 + 6.17596E-03 6.25626E-03 6.31518E-03 + 6.18638E-03 6.26933E-03 6.32996E-03 + 6.15086E-03 6.23492E-03 6.29131E-03 + 6.16634E-03 6.24607E-03 6.30627E-03 + 6.17864E-03 6.25595E-03 6.31771E-03 + * GROUP 2 + 1.73192E-01 1.74750E-01 1.76111E-01 + 1.72283E-01 1.73766E-01 1.75038E-01 + 1.71508E-01 1.72661E-01 1.73866E-01 + 1.73073E-01 1.74573E-01 1.75968E-01 + 1.72213E-01 1.73709E-01 1.74916E-01 + 1.71285E-01 1.72734E-01 1.73952E-01 + 1.73365E-01 1.74809E-01 1.75999E-01 + 1.72414E-01 1.73826E-01 1.75077E-01 + 1.71519E-01 1.72790E-01 1.74170E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.71353E-14 7.81996E-14 7.88246E-14 + 7.73123E-14 7.82988E-14 7.90279E-14 + 7.74277E-14 7.84480E-14 7.91233E-14 + 7.70259E-14 7.80458E-14 7.87218E-14 + 7.71915E-14 7.81881E-14 7.89109E-14 + 7.73043E-14 7.83245E-14 7.90599E-14 + 7.68870E-14 7.79171E-14 7.86105E-14 + 7.70656E-14 7.80432E-14 7.87825E-14 + 7.71978E-14 7.81447E-14 7.89111E-14 + * GROUP 2 + 2.18099E-12 2.20260E-12 2.22158E-12 + 2.16845E-12 2.18898E-12 2.20669E-12 + 2.15759E-12 2.17388E-12 2.19076E-12 + 2.17892E-12 2.19979E-12 2.21918E-12 + 2.16701E-12 2.18773E-12 2.20459E-12 + 2.15433E-12 2.17423E-12 2.19123E-12 + 2.18190E-12 2.20208E-12 2.21884E-12 + 2.16883E-12 2.18850E-12 2.20597E-12 + 2.15648E-12 2.17442E-12 2.19329E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.77724E-01 5.01279E-01 5.20097E-01 + 4.78225E-01 5.01994E-01 5.20700E-01 + 4.78664E-01 5.02408E-01 5.21253E-01 + 4.77888E-01 5.01495E-01 5.20296E-01 + 4.78374E-01 5.02211E-01 5.20887E-01 + 4.78767E-01 5.02593E-01 5.21281E-01 + 4.78044E-01 5.01731E-01 5.20467E-01 + 4.78595E-01 5.02268E-01 5.21025E-01 + 4.78945E-01 5.02679E-01 5.21501E-01 + * GROUP 1 -> 2 + 1.12855E-02 1.25056E-02 1.34889E-02 + 1.12616E-02 1.24962E-02 1.34727E-02 + 1.12346E-02 1.24587E-02 1.34452E-02 + 1.12074E-02 1.24179E-02 1.34121E-02 + 1.11857E-02 1.24058E-02 1.33968E-02 + 1.11539E-02 1.23901E-02 1.33604E-02 + 1.11415E-02 1.23511E-02 1.33277E-02 + 1.11184E-02 1.23361E-02 1.33076E-02 + 1.10759E-02 1.23063E-02 1.32837E-02 + * GROUP 2 -> 1 + 2.39240E-03 2.25469E-03 2.13955E-03 + 2.46982E-03 2.36232E-03 2.26112E-03 + 2.58693E-03 2.47456E-03 2.36612E-03 + 2.66829E-03 2.50373E-03 2.38203E-03 + 2.76824E-03 2.63596E-03 2.50894E-03 + 2.88983E-03 2.77655E-03 2.61939E-03 + 2.98224E-03 2.81418E-03 2.68808E-03 + 3.12403E-03 2.97471E-03 2.83105E-03 + 3.27258E-03 3.11198E-03 2.98553E-03 + * GROUP 2 -> 2 + 1.15324E+00 1.24282E+00 1.31541E+00 + 1.14615E+00 1.23395E+00 1.30590E+00 + 1.13897E+00 1.22648E+00 1.29777E+00 + 1.15217E+00 1.24262E+00 1.31536E+00 + 1.14513E+00 1.23378E+00 1.30593E+00 + 1.13846E+00 1.22653E+00 1.29732E+00 + 1.15145E+00 1.24165E+00 1.31394E+00 + 1.14487E+00 1.23300E+00 1.30520E+00 + 1.13798E+00 1.22557E+00 1.29546E+00 + * + * ADF Table + * + * GROUP 1 + 1.06000E+00 1.06230E+00 1.06432E+00 + 1.05921E+00 1.06179E+00 1.06390E+00 + 1.05806E+00 1.06049E+00 1.06163E+00 + 1.05943E+00 1.06394E+00 1.06565E+00 + 1.05818E+00 1.06163E+00 1.06347E+00 + 1.05796E+00 1.06057E+00 1.06308E+00 + 1.05983E+00 1.06261E+00 1.06473E+00 + 1.05922E+00 1.06169E+00 1.06321E+00 + 1.05738E+00 1.06060E+00 1.06232E+00 + * GROUP 2 + 1.37126E+00 1.37778E+00 1.37770E+00 + 1.36634E+00 1.37536E+00 1.37502E+00 + 1.36270E+00 1.36527E+00 1.36848E+00 + 1.37125E+00 1.37684E+00 1.37978E+00 + 1.36578E+00 1.37001E+00 1.37331E+00 + 1.36258E+00 1.36857E+00 1.36970E+00 + 1.37327E+00 1.38001E+00 1.37536E+00 + 1.36870E+00 1.37750E+00 1.37188E+00 + 1.36341E+00 1.37064E+00 1.36189E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.58311E-08 2.27600E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33773E-02 3.20840E-02 1.20328E-01 3.07571E-01 8.71997E-01 2.92413E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.64556E-04 9.46398E-04 9.30036E-04 2.22407E-03 1.13298E-03 4.42450E-04 + * + * -------------------------------------------------------- + * BURNUP 22.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19887E-01 2.27778E-01 2.34034E-01 + 2.19721E-01 2.27775E-01 2.33851E-01 + 2.19814E-01 2.27822E-01 2.34086E-01 + 2.19486E-01 2.27915E-01 2.34149E-01 + 2.19518E-01 2.27841E-01 2.33834E-01 + 2.19746E-01 2.27552E-01 2.33995E-01 + 2.19625E-01 2.27849E-01 2.34117E-01 + 2.19710E-01 2.27539E-01 2.33955E-01 + 2.19448E-01 2.27664E-01 2.34002E-01 + * GROUP 2 + 8.04590E-01 8.54913E-01 8.99583E-01 + 7.97589E-01 8.49921E-01 8.92048E-01 + 7.95164E-01 8.41927E-01 8.85095E-01 + 8.03477E-01 8.56125E-01 8.99733E-01 + 7.98353E-01 8.47634E-01 8.90182E-01 + 7.92612E-01 8.42279E-01 8.80296E-01 + 8.02431E-01 8.55820E-01 8.97691E-01 + 7.96610E-01 8.49371E-01 8.94518E-01 + 7.93717E-01 8.41274E-01 8.82343E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.02501E-02 1.03712E-02 1.04706E-02 + 1.05398E-02 1.06926E-02 1.08073E-02 + 1.08166E-02 1.09910E-02 1.11161E-02 + 1.04504E-02 1.05799E-02 1.06769E-02 + 1.07403E-02 1.09079E-02 1.10123E-02 + 1.10200E-02 1.12030E-02 1.13287E-02 + 1.06638E-02 1.07948E-02 1.08885E-02 + 1.09580E-02 1.11150E-02 1.12278E-02 + 1.12300E-02 1.14166E-02 1.15557E-02 + * GROUP 2 + 1.06548E-01 1.07714E-01 1.08680E-01 + 1.15418E-01 1.17479E-01 1.19174E-01 + 1.24094E-01 1.26959E-01 1.29482E-01 + 1.06549E-01 1.07719E-01 1.08626E-01 + 1.15359E-01 1.17383E-01 1.19168E-01 + 1.24110E-01 1.27003E-01 1.29414E-01 + 1.06624E-01 1.07678E-01 1.08641E-01 + 1.15446E-01 1.17438E-01 1.19168E-01 + 1.24134E-01 1.26928E-01 1.29376E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.22772E-03 6.28122E-03 6.32044E-03 + 6.25206E-03 6.31117E-03 6.35015E-03 + 6.27119E-03 6.33238E-03 6.37437E-03 + 6.22068E-03 6.27230E-03 6.31236E-03 + 6.24278E-03 6.30238E-03 6.33946E-03 + 6.26466E-03 6.32368E-03 6.36357E-03 + 6.21235E-03 6.26300E-03 6.30729E-03 + 6.23032E-03 6.29121E-03 6.32938E-03 + 6.25297E-03 6.31307E-03 6.35839E-03 + * GROUP 2 + 1.62710E-01 1.63729E-01 1.64559E-01 + 1.61950E-01 1.62908E-01 1.63670E-01 + 1.61221E-01 1.62097E-01 1.62995E-01 + 1.62753E-01 1.63773E-01 1.64516E-01 + 1.61903E-01 1.62822E-01 1.63722E-01 + 1.61356E-01 1.62242E-01 1.62989E-01 + 1.62928E-01 1.63761E-01 1.64581E-01 + 1.62122E-01 1.62992E-01 1.63815E-01 + 1.61504E-01 1.62228E-01 1.63024E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.77427E-14 7.83903E-14 7.88581E-14 + 7.80621E-14 7.87737E-14 7.92418E-14 + 7.83175E-14 7.90553E-14 7.95557E-14 + 7.76475E-14 7.82729E-14 7.87529E-14 + 7.79349E-14 7.86650E-14 7.91076E-14 + 7.82212E-14 7.89363E-14 7.94198E-14 + 7.75396E-14 7.81532E-14 7.86827E-14 + 7.77826E-14 7.85204E-14 7.89761E-14 + 7.80670E-14 7.87993E-14 7.93408E-14 + * GROUP 2 + 2.04299E-12 2.05767E-12 2.06984E-12 + 2.03224E-12 2.04603E-12 2.05721E-12 + 2.02191E-12 2.03461E-12 2.04740E-12 + 2.04295E-12 2.05765E-12 2.06868E-12 + 2.03111E-12 2.04442E-12 2.05733E-12 + 2.02306E-12 2.03588E-12 2.04674E-12 + 2.04444E-12 2.05682E-12 2.06887E-12 + 2.03316E-12 2.04584E-12 2.05782E-12 + 2.02425E-12 2.03504E-12 2.04650E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.83295E-01 5.08422E-01 5.28308E-01 + 4.85039E-01 5.10238E-01 5.30242E-01 + 4.86403E-01 5.11764E-01 5.31922E-01 + 4.83619E-01 5.08743E-01 5.28584E-01 + 4.85157E-01 5.10586E-01 5.30518E-01 + 4.86675E-01 5.12016E-01 5.32270E-01 + 4.83921E-01 5.09069E-01 5.28756E-01 + 4.85597E-01 5.10848E-01 5.30904E-01 + 4.86813E-01 5.12331E-01 5.32443E-01 + * GROUP 1 -> 2 + 1.45447E-02 1.58912E-02 1.69630E-02 + 1.46716E-02 1.60375E-02 1.71253E-02 + 1.47393E-02 1.61354E-02 1.72536E-02 + 1.44744E-02 1.58151E-02 1.68791E-02 + 1.45847E-02 1.59562E-02 1.70404E-02 + 1.46615E-02 1.60432E-02 1.71681E-02 + 1.43998E-02 1.57420E-02 1.67903E-02 + 1.45073E-02 1.58750E-02 1.69596E-02 + 1.45726E-02 1.59671E-02 1.70699E-02 + * GROUP 2 -> 1 + 1.86195E-03 1.76107E-03 1.68147E-03 + 2.01138E-03 1.91227E-03 1.81670E-03 + 2.12581E-03 2.05209E-03 1.95483E-03 + 2.08084E-03 1.95883E-03 1.85740E-03 + 2.23255E-03 2.12412E-03 2.01219E-03 + 2.38101E-03 2.27459E-03 2.16112E-03 + 2.32976E-03 2.20884E-03 2.08928E-03 + 2.49527E-03 2.36835E-03 2.25076E-03 + 2.66593E-03 2.55048E-03 2.43194E-03 + * GROUP 2 -> 2 + 1.21116E+00 1.30662E+00 1.38505E+00 + 1.20218E+00 1.29639E+00 1.37305E+00 + 1.19397E+00 1.28597E+00 1.36157E+00 + 1.21051E+00 1.30634E+00 1.38425E+00 + 1.20138E+00 1.29563E+00 1.37244E+00 + 1.19293E+00 1.28567E+00 1.36068E+00 + 1.20969E+00 1.30536E+00 1.38332E+00 + 1.20113E+00 1.29491E+00 1.37167E+00 + 1.19206E+00 1.28477E+00 1.36026E+00 + * + * ADF Table + * + * GROUP 1 + 9.99975E-01 9.98739E-01 9.99513E-01 + 1.00115E+00 1.00061E+00 1.00028E+00 + 1.00219E+00 1.00167E+00 1.00303E+00 + 9.99247E-01 9.98813E-01 9.98931E-01 + 1.00111E+00 1.00122E+00 9.99856E-01 + 1.00089E+00 1.00147E+00 1.00179E+00 + 1.00135E+00 9.99391E-01 9.99593E-01 + 1.00117E+00 1.00080E+00 1.00061E+00 + 1.00210E+00 1.00201E+00 1.00113E+00 + * GROUP 2 + 9.55922E-01 9.54741E-01 9.55490E-01 + 9.60871E-01 9.61375E-01 9.62205E-01 + 9.62350E-01 9.65285E-01 9.67007E-01 + 9.53259E-01 9.53084E-01 9.52469E-01 + 9.61677E-01 9.58898E-01 9.59715E-01 + 9.60868E-01 9.66719E-01 9.65018E-01 + 9.54323E-01 9.51621E-01 9.52673E-01 + 9.58650E-01 9.60942E-01 9.57566E-01 + 9.62563E-01 9.62682E-01 9.67344E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21171E-01 2.28826E-01 2.34778E-01 + 2.21225E-01 2.28583E-01 2.34729E-01 + 2.21503E-01 2.28874E-01 2.34567E-01 + 2.21114E-01 2.28735E-01 2.34773E-01 + 2.21092E-01 2.28378E-01 2.34594E-01 + 2.21159E-01 2.28627E-01 2.34606E-01 + 2.20925E-01 2.28546E-01 2.34313E-01 + 2.20945E-01 2.28297E-01 2.34826E-01 + 2.21195E-01 2.28443E-01 2.34566E-01 + * GROUP 2 + 8.00804E-01 8.47527E-01 8.86222E-01 + 7.95230E-01 8.43070E-01 8.82403E-01 + 7.96297E-01 8.44007E-01 8.80546E-01 + 8.01386E-01 8.53146E-01 8.88290E-01 + 7.90100E-01 8.46579E-01 8.85821E-01 + 7.96908E-01 8.39048E-01 8.74549E-01 + 7.98145E-01 8.50627E-01 8.89383E-01 + 7.96008E-01 8.38953E-01 8.81449E-01 + 7.93001E-01 8.40678E-01 8.81238E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.57687E-02 1.59828E-02 1.61484E-02 + 1.59805E-02 1.62271E-02 1.63993E-02 + 1.61747E-02 1.64383E-02 1.66287E-02 + 1.59414E-02 1.61573E-02 1.63202E-02 + 1.61417E-02 1.63902E-02 1.65697E-02 + 1.63309E-02 1.65980E-02 1.68024E-02 + 1.61096E-02 1.63356E-02 1.64929E-02 + 1.63021E-02 1.65724E-02 1.67468E-02 + 1.65026E-02 1.67770E-02 1.69841E-02 + * GROUP 2 + 1.44735E-01 1.45715E-01 1.46557E-01 + 1.52959E-01 1.54835E-01 1.56314E-01 + 1.60907E-01 1.63739E-01 1.65785E-01 + 1.44630E-01 1.45617E-01 1.46472E-01 + 1.52980E-01 1.54696E-01 1.56249E-01 + 1.61029E-01 1.63725E-01 1.65871E-01 + 1.44800E-01 1.45683E-01 1.46556E-01 + 1.53100E-01 1.54807E-01 1.56400E-01 + 1.61013E-01 1.63656E-01 1.65825E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 6.02501E-03 6.10152E-03 6.15413E-03 + 6.03688E-03 6.11521E-03 6.16878E-03 + 6.04821E-03 6.12820E-03 6.18172E-03 + 6.01190E-03 6.08928E-03 6.14905E-03 + 6.02654E-03 6.10593E-03 6.16108E-03 + 6.03610E-03 6.11900E-03 6.17448E-03 + 6.00705E-03 6.08277E-03 6.13520E-03 + 6.01834E-03 6.09927E-03 6.15141E-03 + 6.02800E-03 6.10902E-03 6.17059E-03 + * GROUP 2 + 1.70847E-01 1.72333E-01 1.73486E-01 + 1.70138E-01 1.71474E-01 1.72547E-01 + 1.69276E-01 1.70643E-01 1.71613E-01 + 1.70830E-01 1.72207E-01 1.73375E-01 + 1.70062E-01 1.71311E-01 1.72456E-01 + 1.69362E-01 1.70656E-01 1.71754E-01 + 1.71105E-01 1.72375E-01 1.73561E-01 + 1.70362E-01 1.71525E-01 1.72640E-01 + 1.69493E-01 1.70765E-01 1.71710E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 7.50854E-14 7.60241E-14 7.66676E-14 + 7.52209E-14 7.61782E-14 7.68297E-14 + 7.53344E-14 7.63225E-14 7.70033E-14 + 7.49116E-14 7.58643E-14 7.65893E-14 + 7.50822E-14 7.60526E-14 7.67195E-14 + 7.51812E-14 7.61836E-14 7.68574E-14 + 7.48411E-14 7.57702E-14 7.64057E-14 + 7.49664E-14 7.59500E-14 7.65929E-14 + 7.50658E-14 7.60469E-14 7.67994E-14 + * GROUP 2 + 2.14212E-12 2.16269E-12 2.17897E-12 + 2.13206E-12 2.15072E-12 2.16591E-12 + 2.12027E-12 2.13920E-12 2.15299E-12 + 2.14131E-12 2.16054E-12 2.17695E-12 + 2.13061E-12 2.14814E-12 2.16422E-12 + 2.12080E-12 2.13879E-12 2.15414E-12 + 2.14404E-12 2.16201E-12 2.17862E-12 + 2.13371E-12 2.15012E-12 2.16581E-12 + 2.12184E-12 2.13946E-12 2.15297E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.78073E-01 5.01703E-01 5.20453E-01 + 4.78476E-01 5.02326E-01 5.21176E-01 + 4.78937E-01 5.02709E-01 5.21514E-01 + 4.78270E-01 5.01910E-01 5.20622E-01 + 4.78771E-01 5.02419E-01 5.21307E-01 + 4.79097E-01 5.02796E-01 5.21598E-01 + 4.78411E-01 5.02123E-01 5.20735E-01 + 4.78940E-01 5.02524E-01 5.21486E-01 + 4.79273E-01 5.02975E-01 5.21792E-01 + * GROUP 1 -> 2 + 1.12691E-02 1.24902E-02 1.34690E-02 + 1.12365E-02 1.24729E-02 1.34535E-02 + 1.12062E-02 1.24435E-02 1.34225E-02 + 1.11901E-02 1.24172E-02 1.33893E-02 + 1.11652E-02 1.23888E-02 1.33740E-02 + 1.11343E-02 1.23497E-02 1.33333E-02 + 1.11028E-02 1.23297E-02 1.33018E-02 + 1.10874E-02 1.22999E-02 1.32912E-02 + 1.10530E-02 1.22717E-02 1.32459E-02 + * GROUP 2 -> 1 + 2.35626E-03 2.23882E-03 2.12244E-03 + 2.47632E-03 2.35038E-03 2.24167E-03 + 2.57348E-03 2.48902E-03 2.36344E-03 + 2.64414E-03 2.51521E-03 2.36741E-03 + 2.75660E-03 2.65489E-03 2.50685E-03 + 2.89848E-03 2.75642E-03 2.63558E-03 + 2.96482E-03 2.81547E-03 2.67132E-03 + 3.12822E-03 2.95283E-03 2.80642E-03 + 3.25023E-03 3.09901E-03 2.97111E-03 + * GROUP 2 -> 2 + 1.15401E+00 1.24366E+00 1.31655E+00 + 1.14687E+00 1.23494E+00 1.30770E+00 + 1.13975E+00 1.22751E+00 1.29809E+00 + 1.15371E+00 1.24322E+00 1.31651E+00 + 1.14653E+00 1.23493E+00 1.30625E+00 + 1.13917E+00 1.22629E+00 1.29810E+00 + 1.15244E+00 1.24246E+00 1.31545E+00 + 1.14560E+00 1.23418E+00 1.30583E+00 + 1.13927E+00 1.22563E+00 1.29726E+00 + * + * ADF Table + * + * GROUP 1 + 1.06117E+00 1.06271E+00 1.06577E+00 + 1.05954E+00 1.06188E+00 1.06418E+00 + 1.05824E+00 1.06095E+00 1.06238E+00 + 1.06043E+00 1.06305E+00 1.06565E+00 + 1.05923E+00 1.06157E+00 1.06535E+00 + 1.05810E+00 1.06004E+00 1.06318E+00 + 1.06002E+00 1.06338E+00 1.06386E+00 + 1.05901E+00 1.06247E+00 1.06450E+00 + 1.05861E+00 1.06088E+00 1.06241E+00 + * GROUP 2 + 1.36462E+00 1.37332E+00 1.37509E+00 + 1.36360E+00 1.36692E+00 1.36601E+00 + 1.36128E+00 1.36136E+00 1.36727E+00 + 1.36890E+00 1.37237E+00 1.37773E+00 + 1.36752E+00 1.36929E+00 1.37369E+00 + 1.36052E+00 1.36234E+00 1.36648E+00 + 1.37076E+00 1.37458E+00 1.37652E+00 + 1.36727E+00 1.36897E+00 1.36922E+00 + 1.36210E+00 1.36244E+00 1.36758E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.58172E-08 2.28135E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33718E-02 3.20133E-02 1.20263E-01 3.08054E-01 8.71809E-01 2.92317E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.51478E-04 9.70572E-04 9.66721E-04 2.14936E-03 1.07990E-03 4.50015E-04 + * + * -------------------------------------------------------- + * BURNUP 32.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20016E-01 2.28002E-01 2.34418E-01 + 2.20185E-01 2.27816E-01 2.34325E-01 + 2.19772E-01 2.27790E-01 2.34375E-01 + 2.19798E-01 2.27981E-01 2.33982E-01 + 2.19977E-01 2.27743E-01 2.34163E-01 + 2.20031E-01 2.27712E-01 2.33913E-01 + 2.19910E-01 2.27954E-01 2.34165E-01 + 2.19738E-01 2.27819E-01 2.33913E-01 + 2.19702E-01 2.27738E-01 2.34073E-01 + * GROUP 2 + 8.08747E-01 8.63695E-01 9.04876E-01 + 8.01482E-01 8.53167E-01 8.96792E-01 + 7.98970E-01 8.47617E-01 8.87704E-01 + 8.07528E-01 8.60225E-01 9.02915E-01 + 8.04444E-01 8.55257E-01 8.93748E-01 + 8.00040E-01 8.46662E-01 8.83562E-01 + 8.04831E-01 8.62386E-01 9.05074E-01 + 8.00540E-01 8.52936E-01 8.96244E-01 + 7.96741E-01 8.51955E-01 8.91195E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.05455E-02 1.06777E-02 1.07773E-02 + 1.08487E-02 1.09946E-02 1.11090E-02 + 1.11172E-02 1.12942E-02 1.14401E-02 + 1.07601E-02 1.08914E-02 1.09926E-02 + 1.10455E-02 1.12146E-02 1.13318E-02 + 1.13342E-02 1.15161E-02 1.16622E-02 + 1.09896E-02 1.11251E-02 1.12232E-02 + 1.12646E-02 1.14511E-02 1.15685E-02 + 1.15484E-02 1.17385E-02 1.18761E-02 + * GROUP 2 + 1.03423E-01 1.04268E-01 1.05086E-01 + 1.12426E-01 1.14358E-01 1.15888E-01 + 1.21268E-01 1.23960E-01 1.26300E-01 + 1.03396E-01 1.04306E-01 1.05147E-01 + 1.12470E-01 1.14254E-01 1.15866E-01 + 1.21281E-01 1.23998E-01 1.26302E-01 + 1.03498E-01 1.04432E-01 1.05183E-01 + 1.12582E-01 1.14362E-01 1.15933E-01 + 1.21419E-01 1.23970E-01 1.26352E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.64181E-03 5.69779E-03 5.73305E-03 + 5.66611E-03 5.71403E-03 5.75540E-03 + 5.67821E-03 5.73324E-03 5.77509E-03 + 5.63243E-03 5.68373E-03 5.72185E-03 + 5.65393E-03 5.70705E-03 5.74407E-03 + 5.66642E-03 5.72301E-03 5.76891E-03 + 5.62271E-03 5.67288E-03 5.70843E-03 + 5.64012E-03 5.69613E-03 5.73482E-03 + 5.65766E-03 5.71323E-03 5.75222E-03 + * GROUP 2 + 1.51395E-01 1.51797E-01 1.52293E-01 + 1.50811E-01 1.51472E-01 1.51878E-01 + 1.50356E-01 1.50794E-01 1.51331E-01 + 1.51429E-01 1.51927E-01 1.52458E-01 + 1.50974E-01 1.51401E-01 1.51927E-01 + 1.50494E-01 1.50980E-01 1.51440E-01 + 1.51676E-01 1.52207E-01 1.52604E-01 + 1.51262E-01 1.51688E-01 1.52148E-01 + 1.50830E-01 1.51087E-01 1.51667E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.95478E-14 7.02105E-14 7.06252E-14 + 6.98533E-14 7.04184E-14 7.09140E-14 + 7.00030E-14 7.06581E-14 7.11570E-14 + 6.94178E-14 7.00263E-14 7.04843E-14 + 6.96964E-14 7.03253E-14 7.07662E-14 + 6.98569E-14 7.05220E-14 7.10767E-14 + 6.93000E-14 6.98969E-14 7.03156E-14 + 6.95168E-14 7.01903E-14 7.06465E-14 + 6.97375E-14 7.03933E-14 7.08573E-14 + * GROUP 2 + 1.87109E-12 1.87773E-12 1.88539E-12 + 1.86277E-12 1.87252E-12 1.87896E-12 + 1.85613E-12 1.86305E-12 1.87099E-12 + 1.87099E-12 1.87882E-12 1.88692E-12 + 1.86431E-12 1.87113E-12 1.87909E-12 + 1.85729E-12 1.86483E-12 1.87184E-12 + 1.87339E-12 1.88164E-12 1.88806E-12 + 1.86721E-12 1.87406E-12 1.88118E-12 + 1.86089E-12 1.86554E-12 1.87404E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.85486E-01 5.10549E-01 5.30516E-01 + 4.87183E-01 5.12441E-01 5.32420E-01 + 4.88371E-01 5.13863E-01 5.34055E-01 + 4.85882E-01 5.10920E-01 5.30726E-01 + 4.87402E-01 5.12681E-01 5.32740E-01 + 4.88758E-01 5.14144E-01 5.34309E-01 + 4.86159E-01 5.11205E-01 5.31073E-01 + 4.87627E-01 5.12977E-01 5.32963E-01 + 4.88994E-01 5.14307E-01 5.34463E-01 + * GROUP 1 -> 2 + 1.45647E-02 1.59171E-02 1.69965E-02 + 1.46694E-02 1.60558E-02 1.71556E-02 + 1.47515E-02 1.61525E-02 1.72637E-02 + 1.44922E-02 1.58303E-02 1.68966E-02 + 1.45987E-02 1.59601E-02 1.70533E-02 + 1.46600E-02 1.60504E-02 1.71672E-02 + 1.43924E-02 1.57326E-02 1.68041E-02 + 1.45024E-02 1.58661E-02 1.69593E-02 + 1.45641E-02 1.59519E-02 1.70616E-02 + * GROUP 2 -> 1 + 1.81146E-03 1.70437E-03 1.60065E-03 + 1.94535E-03 1.85845E-03 1.75181E-03 + 2.07734E-03 1.99285E-03 1.89023E-03 + 2.01271E-03 1.90479E-03 1.79961E-03 + 2.14651E-03 2.05398E-03 1.96091E-03 + 2.30832E-03 2.21673E-03 2.09726E-03 + 2.26850E-03 2.12938E-03 2.01123E-03 + 2.43247E-03 2.28684E-03 2.17828E-03 + 2.57523E-03 2.46951E-03 2.36130E-03 + * GROUP 2 -> 2 + 1.21477E+00 1.31080E+00 1.38908E+00 + 1.20558E+00 1.29997E+00 1.37649E+00 + 1.19680E+00 1.29001E+00 1.36502E+00 + 1.21390E+00 1.30986E+00 1.38854E+00 + 1.20519E+00 1.29935E+00 1.37586E+00 + 1.19603E+00 1.28909E+00 1.36481E+00 + 1.21341E+00 1.30908E+00 1.38727E+00 + 1.20438E+00 1.29846E+00 1.37520E+00 + 1.19582E+00 1.28837E+00 1.36394E+00 + * + * ADF Table + * + * GROUP 1 + 1.00122E+00 1.00137E+00 1.00046E+00 + 1.00242E+00 1.00171E+00 1.00191E+00 + 1.00369E+00 1.00286E+00 1.00405E+00 + 1.00038E+00 1.00065E+00 9.99937E-01 + 1.00141E+00 1.00262E+00 1.00238E+00 + 1.00290E+00 1.00349E+00 1.00322E+00 + 1.00194E+00 1.00069E+00 1.00037E+00 + 1.00112E+00 1.00155E+00 1.00304E+00 + 1.00287E+00 1.00375E+00 1.00264E+00 + * GROUP 2 + 9.44752E-01 9.45101E-01 9.44254E-01 + 9.52401E-01 9.51443E-01 9.50400E-01 + 9.55987E-01 9.55645E-01 9.55067E-01 + 9.44927E-01 9.44253E-01 9.42569E-01 + 9.53766E-01 9.49435E-01 9.51189E-01 + 9.56871E-01 9.56124E-01 9.55064E-01 + 9.44227E-01 9.44201E-01 9.41821E-01 + 9.50642E-01 9.48460E-01 9.51878E-01 + 9.55631E-01 9.56574E-01 9.56123E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21350E-01 2.28919E-01 2.34977E-01 + 2.21137E-01 2.29154E-01 2.34807E-01 + 2.21503E-01 2.28759E-01 2.34721E-01 + 2.21440E-01 2.29003E-01 2.34745E-01 + 2.21399E-01 2.28937E-01 2.34656E-01 + 2.21275E-01 2.29005E-01 2.34836E-01 + 2.21388E-01 2.28844E-01 2.34810E-01 + 2.21283E-01 2.28846E-01 2.34525E-01 + 2.21295E-01 2.28788E-01 2.34782E-01 + * GROUP 2 + 8.01890E-01 8.55274E-01 8.92595E-01 + 8.03328E-01 8.52373E-01 8.89904E-01 + 7.95032E-01 8.44805E-01 8.82821E-01 + 8.01086E-01 8.49287E-01 8.91785E-01 + 8.00307E-01 8.48577E-01 8.85900E-01 + 7.94320E-01 8.40275E-01 8.83927E-01 + 8.07984E-01 8.52304E-01 8.89456E-01 + 8.02715E-01 8.50001E-01 8.89482E-01 + 7.98567E-01 8.46881E-01 8.82985E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.60215E-02 1.62536E-02 1.64185E-02 + 1.62229E-02 1.64647E-02 1.66526E-02 + 1.64182E-02 1.66752E-02 1.68769E-02 + 1.61930E-02 1.64265E-02 1.65920E-02 + 1.63873E-02 1.66355E-02 1.68395E-02 + 1.65725E-02 1.68465E-02 1.70543E-02 + 1.63626E-02 1.66064E-02 1.67926E-02 + 1.65575E-02 1.68326E-02 1.70181E-02 + 1.67443E-02 1.70188E-02 1.72406E-02 + * GROUP 2 + 1.41855E-01 1.42675E-01 1.43282E-01 + 1.50404E-01 1.51886E-01 1.53227E-01 + 1.58626E-01 1.60979E-01 1.62996E-01 + 1.42001E-01 1.42689E-01 1.43438E-01 + 1.50297E-01 1.51912E-01 1.53230E-01 + 1.58602E-01 1.61068E-01 1.63124E-01 + 1.42148E-01 1.42781E-01 1.43556E-01 + 1.50542E-01 1.52126E-01 1.53349E-01 + 1.58866E-01 1.61220E-01 1.63152E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.47113E-03 5.54581E-03 5.60074E-03 + 5.48672E-03 5.55974E-03 5.61151E-03 + 5.49795E-03 5.58006E-03 5.62639E-03 + 5.46543E-03 5.53424E-03 5.58825E-03 + 5.47677E-03 5.54812E-03 5.59965E-03 + 5.49044E-03 5.56394E-03 5.61637E-03 + 5.45369E-03 5.52474E-03 5.57775E-03 + 5.46459E-03 5.53960E-03 5.59774E-03 + 5.47788E-03 5.55605E-03 5.60598E-03 + * GROUP 2 + 1.59928E-01 1.60920E-01 1.61568E-01 + 1.59442E-01 1.60228E-01 1.60961E-01 + 1.58875E-01 1.59735E-01 1.60353E-01 + 1.60082E-01 1.60945E-01 1.61827E-01 + 1.59311E-01 1.60366E-01 1.61007E-01 + 1.58939E-01 1.59747E-01 1.60524E-01 + 1.60292E-01 1.61075E-01 1.62074E-01 + 1.59714E-01 1.60698E-01 1.61345E-01 + 1.59361E-01 1.60112E-01 1.60794E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.73041E-14 6.82047E-14 6.88658E-14 + 6.74683E-14 6.83449E-14 6.89692E-14 + 6.75867E-14 6.85545E-14 6.91225E-14 + 6.72261E-14 6.80527E-14 6.87036E-14 + 6.73327E-14 6.81935E-14 6.88171E-14 + 6.74617E-14 6.83693E-14 6.89863E-14 + 6.70704E-14 6.79224E-14 6.85644E-14 + 6.71896E-14 6.80770E-14 6.87540E-14 + 6.73149E-14 6.82363E-14 6.88514E-14 + * GROUP 2 + 1.97404E-12 1.98800E-12 1.99763E-12 + 1.96703E-12 1.97835E-12 1.98893E-12 + 1.95907E-12 1.97124E-12 1.98033E-12 + 1.97542E-12 1.98781E-12 2.00032E-12 + 1.96493E-12 1.97957E-12 1.98896E-12 + 1.95941E-12 1.97093E-12 1.98195E-12 + 1.97734E-12 1.98876E-12 2.00271E-12 + 1.96929E-12 1.98306E-12 1.99250E-12 + 1.96397E-12 1.97478E-12 1.98460E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79477E-01 5.03180E-01 5.21988E-01 + 4.79930E-01 5.03603E-01 5.22345E-01 + 4.80257E-01 5.03808E-01 5.22644E-01 + 4.79693E-01 5.03346E-01 5.22112E-01 + 4.79972E-01 5.03674E-01 5.22553E-01 + 4.80202E-01 5.04033E-01 5.22807E-01 + 4.79772E-01 5.03475E-01 5.22285E-01 + 4.80210E-01 5.03908E-01 5.22575E-01 + 4.80415E-01 5.03999E-01 5.22895E-01 + * GROUP 1 -> 2 + 1.12178E-02 1.24420E-02 1.34282E-02 + 1.11998E-02 1.24285E-02 1.34062E-02 + 1.11575E-02 1.23816E-02 1.33634E-02 + 1.11406E-02 1.23567E-02 1.33380E-02 + 1.11129E-02 1.23325E-02 1.33105E-02 + 1.10621E-02 1.22944E-02 1.32769E-02 + 1.10575E-02 1.22661E-02 1.32298E-02 + 1.10240E-02 1.22326E-02 1.32119E-02 + 1.09802E-02 1.21943E-02 1.31705E-02 + * GROUP 2 -> 1 + 2.31773E-03 2.19598E-03 2.05765E-03 + 2.44298E-03 2.30544E-03 2.19013E-03 + 2.54370E-03 2.42686E-03 2.33047E-03 + 2.55420E-03 2.43672E-03 2.32838E-03 + 2.70498E-03 2.57347E-03 2.44867E-03 + 2.82020E-03 2.70896E-03 2.58771E-03 + 2.89670E-03 2.76373E-03 2.58701E-03 + 3.03085E-03 2.90996E-03 2.75163E-03 + 3.18717E-03 3.02659E-03 2.91402E-03 + * GROUP 2 -> 2 + 1.15713E+00 1.24692E+00 1.32091E+00 + 1.14999E+00 1.23877E+00 1.31097E+00 + 1.14329E+00 1.22996E+00 1.30182E+00 + 1.15692E+00 1.24695E+00 1.31974E+00 + 1.14971E+00 1.23799E+00 1.31019E+00 + 1.14302E+00 1.23031E+00 1.30123E+00 + 1.15589E+00 1.24616E+00 1.31945E+00 + 1.14914E+00 1.23707E+00 1.30967E+00 + 1.14218E+00 1.22925E+00 1.30002E+00 + * + * ADF Table + * + * GROUP 1 + 1.06204E+00 1.06404E+00 1.06708E+00 + 1.06065E+00 1.06442E+00 1.06509E+00 + 1.06045E+00 1.06367E+00 1.06398E+00 + 1.06135E+00 1.06510E+00 1.06730E+00 + 1.06146E+00 1.06478E+00 1.06575E+00 + 1.06081E+00 1.06353E+00 1.06413E+00 + 1.06139E+00 1.06457E+00 1.06725E+00 + 1.06153E+00 1.06381E+00 1.06541E+00 + 1.06062E+00 1.06201E+00 1.06487E+00 + * GROUP 2 + 1.36190E+00 1.36219E+00 1.36953E+00 + 1.35460E+00 1.36554E+00 1.35930E+00 + 1.35588E+00 1.35702E+00 1.35458E+00 + 1.36274E+00 1.36563E+00 1.37224E+00 + 1.36179E+00 1.36357E+00 1.36145E+00 + 1.35356E+00 1.35478E+00 1.35441E+00 + 1.36156E+00 1.36409E+00 1.37300E+00 + 1.35444E+00 1.35852E+00 1.36344E+00 + 1.35109E+00 1.35964E+00 1.36097E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.57209E-08 2.30124E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33811E-02 3.18117E-02 1.19895E-01 3.08230E-01 8.75204E-01 2.93207E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.43115E-04 9.55951E-04 8.49612E-04 2.05304E-03 1.06871E-03 4.13310E-04 + * + * -------------------------------------------------------- + * BURNUP 35.00 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.20024E-01 2.27887E-01 2.34190E-01 + 2.19886E-01 2.27818E-01 2.34297E-01 + 2.19932E-01 2.28025E-01 2.34458E-01 + 2.19823E-01 2.27893E-01 2.33991E-01 + 2.19848E-01 2.27959E-01 2.34135E-01 + 2.19947E-01 2.27900E-01 2.34130E-01 + 2.19857E-01 2.28150E-01 2.34250E-01 + 2.19758E-01 2.27790E-01 2.34121E-01 + 2.19828E-01 2.28002E-01 2.34167E-01 + * GROUP 2 + 8.10617E-01 8.65705E-01 9.03396E-01 + 8.04158E-01 8.56878E-01 8.96340E-01 + 7.97981E-01 8.50911E-01 8.89814E-01 + 8.09507E-01 8.58862E-01 9.03833E-01 + 8.03835E-01 8.54076E-01 8.96498E-01 + 8.01018E-01 8.45274E-01 8.90397E-01 + 8.07236E-01 8.60256E-01 9.05313E-01 + 8.01099E-01 8.55967E-01 8.95342E-01 + 7.97138E-01 8.49543E-01 8.88330E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.06168E-02 1.07510E-02 1.08396E-02 + 1.09096E-02 1.10649E-02 1.11846E-02 + 1.11829E-02 1.13697E-02 1.15180E-02 + 1.08342E-02 1.09612E-02 1.10653E-02 + 1.11256E-02 1.12886E-02 1.14103E-02 + 1.13991E-02 1.15919E-02 1.17369E-02 + 1.10585E-02 1.11938E-02 1.13041E-02 + 1.13459E-02 1.15124E-02 1.16409E-02 + 1.16263E-02 1.18237E-02 1.19642E-02 + * GROUP 2 + 1.02421E-01 1.03361E-01 1.04106E-01 + 1.11557E-01 1.13300E-01 1.14877E-01 + 1.20366E-01 1.23090E-01 1.25364E-01 + 1.02425E-01 1.03336E-01 1.04132E-01 + 1.11595E-01 1.13350E-01 1.14832E-01 + 1.20468E-01 1.23096E-01 1.25359E-01 + 1.02600E-01 1.03402E-01 1.04217E-01 + 1.11652E-01 1.13461E-01 1.14948E-01 + 1.20610E-01 1.23181E-01 1.25406E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.50807E-03 5.55676E-03 5.59457E-03 + 5.52499E-03 5.57716E-03 5.61915E-03 + 5.54065E-03 5.59690E-03 5.63946E-03 + 5.49672E-03 5.54905E-03 5.58248E-03 + 5.51496E-03 5.56832E-03 5.60673E-03 + 5.53175E-03 5.58950E-03 5.63148E-03 + 5.48530E-03 5.53749E-03 5.57326E-03 + 5.50433E-03 5.55967E-03 5.59581E-03 + 5.52088E-03 5.57589E-03 5.61386E-03 + * GROUP 2 + 1.48197E-01 1.48713E-01 1.49077E-01 + 1.47813E-01 1.48149E-01 1.48597E-01 + 1.47294E-01 1.47783E-01 1.48161E-01 + 1.48275E-01 1.48763E-01 1.49191E-01 + 1.47984E-01 1.48346E-01 1.48626E-01 + 1.47571E-01 1.47916E-01 1.48273E-01 + 1.48658E-01 1.48957E-01 1.49417E-01 + 1.48195E-01 1.48640E-01 1.48939E-01 + 1.47967E-01 1.48222E-01 1.48517E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.76878E-14 6.82677E-14 6.87096E-14 + 6.78956E-14 6.85195E-14 6.90230E-14 + 6.80957E-14 6.87582E-14 6.92739E-14 + 6.75426E-14 6.81613E-14 6.85568E-14 + 6.77711E-14 6.84026E-14 6.88593E-14 + 6.79756E-14 6.86588E-14 6.91583E-14 + 6.73915E-14 6.80121E-14 6.84363E-14 + 6.76321E-14 6.82890E-14 6.87207E-14 + 6.78379E-14 6.84876E-14 6.89357E-14 + * GROUP 2 + 1.82491E-12 1.83285E-12 1.83878E-12 + 1.81914E-12 1.82474E-12 1.83162E-12 + 1.81175E-12 1.81918E-12 1.82513E-12 + 1.82540E-12 1.83297E-12 1.83971E-12 + 1.82072E-12 1.82664E-12 1.83149E-12 + 1.81472E-12 1.82032E-12 1.82601E-12 + 1.82942E-12 1.83473E-12 1.84186E-12 + 1.82274E-12 1.82970E-12 1.83474E-12 + 1.81895E-12 1.82346E-12 1.82841E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.86078E-01 5.11194E-01 5.31091E-01 + 4.87614E-01 5.12923E-01 5.32979E-01 + 4.88875E-01 5.14403E-01 5.34685E-01 + 4.86359E-01 5.11415E-01 5.31232E-01 + 4.87920E-01 5.13166E-01 5.33277E-01 + 4.89168E-01 5.14568E-01 5.34741E-01 + 4.86752E-01 5.11757E-01 5.31658E-01 + 4.88200E-01 5.13500E-01 5.33520E-01 + 4.89393E-01 5.14852E-01 5.35020E-01 + * GROUP 1 -> 2 + 1.45820E-02 1.59300E-02 1.70068E-02 + 1.46828E-02 1.60644E-02 1.71768E-02 + 1.47569E-02 1.61717E-02 1.72866E-02 + 1.44911E-02 1.58374E-02 1.69019E-02 + 1.46000E-02 1.59680E-02 1.70843E-02 + 1.46613E-02 1.60535E-02 1.71657E-02 + 1.44017E-02 1.57519E-02 1.68142E-02 + 1.44996E-02 1.58695E-02 1.69719E-02 + 1.45630E-02 1.59522E-02 1.70671E-02 + * GROUP 2 -> 1 + 1.79453E-03 1.69522E-03 1.59004E-03 + 1.93265E-03 1.83241E-03 1.74742E-03 + 2.05403E-03 1.97311E-03 1.87664E-03 + 2.00047E-03 1.86844E-03 1.76888E-03 + 2.15359E-03 2.02873E-03 1.94249E-03 + 2.28184E-03 2.17894E-03 2.08069E-03 + 2.24393E-03 2.10807E-03 1.99049E-03 + 2.41037E-03 2.27265E-03 2.16512E-03 + 2.55974E-03 2.42499E-03 2.33331E-03 + * GROUP 2 -> 2 + 1.21591E+00 1.31195E+00 1.38989E+00 + 1.20668E+00 1.30095E+00 1.37750E+00 + 1.19772E+00 1.29031E+00 1.36639E+00 + 1.21546E+00 1.31045E+00 1.38916E+00 + 1.20572E+00 1.29982E+00 1.37733E+00 + 1.19722E+00 1.28993E+00 1.36593E+00 + 1.21419E+00 1.31044E+00 1.38869E+00 + 1.20515E+00 1.29920E+00 1.37629E+00 + 1.19613E+00 1.28890E+00 1.36466E+00 + * + * ADF Table + * + * GROUP 1 + 1.00187E+00 1.00114E+00 1.00098E+00 + 1.00198E+00 1.00250E+00 1.00321E+00 + 1.00319E+00 1.00309E+00 1.00417E+00 + 1.00267E+00 1.00082E+00 1.00129E+00 + 1.00242E+00 1.00248E+00 1.00279E+00 + 1.00308E+00 1.00379E+00 1.00289E+00 + 1.00114E+00 1.00074E+00 1.00126E+00 + 1.00216E+00 1.00224E+00 1.00302E+00 + 1.00377E+00 1.00352E+00 1.00268E+00 + * GROUP 2 + 9.42862E-01 9.43702E-01 9.42586E-01 + 9.49667E-01 9.48216E-01 9.50514E-01 + 9.52833E-01 9.56501E-01 9.57546E-01 + 9.44236E-01 9.44012E-01 9.42679E-01 + 9.49132E-01 9.49489E-01 9.47924E-01 + 9.57994E-01 9.54717E-01 9.55380E-01 + 9.42944E-01 9.41990E-01 9.42429E-01 + 9.48445E-01 9.48002E-01 9.50538E-01 + 9.51748E-01 9.55618E-01 9.52098E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21584E-01 2.28847E-01 2.34886E-01 + 2.21494E-01 2.28862E-01 2.34923E-01 + 2.21442E-01 2.28823E-01 2.34884E-01 + 2.21517E-01 2.28721E-01 2.34997E-01 + 2.21419E-01 2.28852E-01 2.34735E-01 + 2.21357E-01 2.28858E-01 2.34735E-01 + 2.21238E-01 2.28792E-01 2.34627E-01 + 2.21369E-01 2.29002E-01 2.34462E-01 + 2.21448E-01 2.28987E-01 2.34561E-01 + * GROUP 2 + 8.06282E-01 8.52198E-01 8.91476E-01 + 8.03739E-01 8.52099E-01 8.88104E-01 + 8.03119E-01 8.45055E-01 8.83140E-01 + 8.04854E-01 8.53997E-01 8.93474E-01 + 7.99207E-01 8.48640E-01 8.87538E-01 + 8.01472E-01 8.44219E-01 8.84075E-01 + 8.03088E-01 8.54804E-01 8.91193E-01 + 8.00495E-01 8.46064E-01 8.87022E-01 + 8.00133E-01 8.41627E-01 8.82358E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.60819E-02 1.63053E-02 1.64701E-02 + 1.62616E-02 1.65300E-02 1.67115E-02 + 1.64589E-02 1.67336E-02 1.69369E-02 + 1.62481E-02 1.64798E-02 1.66584E-02 + 1.64364E-02 1.66878E-02 1.68891E-02 + 1.66365E-02 1.69154E-02 1.71102E-02 + 1.64187E-02 1.66701E-02 1.68464E-02 + 1.66253E-02 1.68791E-02 1.70822E-02 + 1.67925E-02 1.70887E-02 1.73020E-02 + * GROUP 2 + 1.41121E-01 1.41707E-01 1.42347E-01 + 1.49564E-01 1.51031E-01 1.52483E-01 + 1.57789E-01 1.60170E-01 1.62076E-01 + 1.41160E-01 1.41739E-01 1.42430E-01 + 1.49673E-01 1.51117E-01 1.52348E-01 + 1.57868E-01 1.60148E-01 1.62143E-01 + 1.41393E-01 1.42073E-01 1.42487E-01 + 1.49719E-01 1.51161E-01 1.52516E-01 + 1.57933E-01 1.60416E-01 1.62263E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.34463E-03 5.41569E-03 5.46922E-03 + 5.36229E-03 5.42879E-03 5.48087E-03 + 5.37454E-03 5.44725E-03 5.49284E-03 + 5.34139E-03 5.40582E-03 5.45519E-03 + 5.34981E-03 5.42257E-03 5.47286E-03 + 5.36375E-03 5.43447E-03 5.48915E-03 + 5.32540E-03 5.39812E-03 5.44654E-03 + 5.34317E-03 5.41349E-03 5.46037E-03 + 5.35039E-03 5.42864E-03 5.48026E-03 + * GROUP 2 + 1.57031E-01 1.57692E-01 1.58361E-01 + 1.56396E-01 1.57221E-01 1.57961E-01 + 1.55890E-01 1.56605E-01 1.57188E-01 + 1.57078E-01 1.57827E-01 1.58462E-01 + 1.56686E-01 1.57475E-01 1.57970E-01 + 1.56023E-01 1.56762E-01 1.57371E-01 + 1.57434E-01 1.58305E-01 1.58750E-01 + 1.56892E-01 1.57582E-01 1.58214E-01 + 1.56376E-01 1.57198E-01 1.57728E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.55375E-14 6.63920E-14 6.70348E-14 + 6.57219E-14 6.65264E-14 6.71444E-14 + 6.58477E-14 6.67124E-14 6.72887E-14 + 6.54908E-14 6.62557E-14 6.68514E-14 + 6.55655E-14 6.64374E-14 6.70338E-14 + 6.57097E-14 6.65550E-14 6.72024E-14 + 6.52764E-14 6.61562E-14 6.67351E-14 + 6.54651E-14 6.63074E-14 6.68886E-14 + 6.55260E-14 6.64526E-14 6.70809E-14 + * GROUP 2 + 1.93131E-12 1.94111E-12 1.95087E-12 + 1.92258E-12 1.93427E-12 1.94476E-12 + 1.91543E-12 1.92571E-12 1.93422E-12 + 1.93138E-12 1.94225E-12 1.95157E-12 + 1.92560E-12 1.93688E-12 1.94438E-12 + 1.91661E-12 1.92718E-12 1.93598E-12 + 1.93513E-12 1.94748E-12 1.95448E-12 + 1.92756E-12 1.93762E-12 1.94683E-12 + 1.92032E-12 1.93190E-12 1.93980E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.79873E-01 5.03390E-01 5.22209E-01 + 4.80115E-01 5.03959E-01 5.22584E-01 + 4.80335E-01 5.04082E-01 5.23016E-01 + 4.80005E-01 5.03587E-01 5.22432E-01 + 4.80277E-01 5.03943E-01 5.22749E-01 + 4.80522E-01 5.04353E-01 5.23009E-01 + 4.80141E-01 5.03846E-01 5.22507E-01 + 4.80418E-01 5.04069E-01 5.22975E-01 + 4.80649E-01 5.04271E-01 5.23072E-01 + * GROUP 1 -> 2 + 1.12182E-02 1.24368E-02 1.34223E-02 + 1.11893E-02 1.24156E-02 1.33858E-02 + 1.11383E-02 1.23710E-02 1.33551E-02 + 1.11284E-02 1.23520E-02 1.33258E-02 + 1.11080E-02 1.23255E-02 1.32952E-02 + 1.10564E-02 1.22743E-02 1.32655E-02 + 1.10519E-02 1.22617E-02 1.32281E-02 + 1.10011E-02 1.22266E-02 1.32030E-02 + 1.09764E-02 1.21754E-02 1.31474E-02 + * GROUP 2 -> 1 + 2.28324E-03 2.17250E-03 2.03951E-03 + 2.41964E-03 2.27449E-03 2.18308E-03 + 2.50889E-03 2.41288E-03 2.30371E-03 + 2.55792E-03 2.39859E-03 2.29470E-03 + 2.71641E-03 2.57982E-03 2.43227E-03 + 2.81268E-03 2.68490E-03 2.58897E-03 + 2.91522E-03 2.74653E-03 2.56898E-03 + 3.02263E-03 2.87468E-03 2.76051E-03 + 3.17585E-03 3.04634E-03 2.91286E-03 + * GROUP 2 -> 2 + 1.15826E+00 1.24833E+00 1.32158E+00 + 1.15076E+00 1.23931E+00 1.31150E+00 + 1.14378E+00 1.23174E+00 1.30245E+00 + 1.15702E+00 1.24752E+00 1.32108E+00 + 1.15013E+00 1.23856E+00 1.31132E+00 + 1.14372E+00 1.23132E+00 1.30217E+00 + 1.15646E+00 1.24622E+00 1.32023E+00 + 1.14922E+00 1.23825E+00 1.30999E+00 + 1.14208E+00 1.22974E+00 1.30062E+00 + * + * ADF Table + * + * GROUP 1 + 1.06307E+00 1.06477E+00 1.06803E+00 + 1.06202E+00 1.06443E+00 1.06752E+00 + 1.06084E+00 1.06421E+00 1.06604E+00 + 1.06301E+00 1.06437E+00 1.06800E+00 + 1.06152E+00 1.06515E+00 1.06615E+00 + 1.06096E+00 1.06456E+00 1.06518E+00 + 1.06230E+00 1.06632E+00 1.06674E+00 + 1.06181E+00 1.06428E+00 1.06669E+00 + 1.06092E+00 1.06433E+00 1.06439E+00 + * GROUP 2 + 1.35979E+00 1.36197E+00 1.36831E+00 + 1.35483E+00 1.35865E+00 1.36110E+00 + 1.34547E+00 1.35217E+00 1.35678E+00 + 1.35851E+00 1.36072E+00 1.36343E+00 + 1.35415E+00 1.35639E+00 1.36384E+00 + 1.35414E+00 1.35586E+00 1.36267E+00 + 1.36281E+00 1.36509E+00 1.36701E+00 + 1.35475E+00 1.36025E+00 1.36314E+00 + 1.35276E+00 1.35854E+00 1.35684E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.57338E-08 2.30611E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33921E-02 3.17534E-02 1.19817E-01 3.08870E-01 8.75684E-01 2.93685E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.56236E-04 9.56555E-04 8.65970E-04 2.03135E-03 1.05280E-03 4.25898E-04 + * + * -------------------------------------------------------- + * BURNUP 37.50 + * -------------------------------------------------------- + * + * Transport XSEC Table + * + * GROUP 1 + 2.19928E-01 2.27986E-01 2.34311E-01 + 2.19954E-01 2.28049E-01 2.34595E-01 + 2.20116E-01 2.27928E-01 2.34329E-01 + 2.19952E-01 2.27916E-01 2.34542E-01 + 2.19789E-01 2.28024E-01 2.34088E-01 + 2.19970E-01 2.28138E-01 2.34333E-01 + 2.20135E-01 2.27945E-01 2.33921E-01 + 2.19884E-01 2.27637E-01 2.34298E-01 + 2.19946E-01 2.27761E-01 2.34275E-01 + * GROUP 2 + 8.10871E-01 8.63732E-01 9.03107E-01 + 8.04688E-01 8.56011E-01 8.98788E-01 + 8.01275E-01 8.52554E-01 8.91650E-01 + 8.09650E-01 8.65659E-01 9.06053E-01 + 8.01494E-01 8.57290E-01 8.98771E-01 + 7.97878E-01 8.53893E-01 8.94155E-01 + 8.08382E-01 8.59008E-01 9.03793E-01 + 8.02745E-01 8.59255E-01 8.97104E-01 + 7.97029E-01 8.47407E-01 8.91654E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.06821E-02 1.08220E-02 1.09109E-02 + 1.09773E-02 1.11401E-02 1.12536E-02 + 1.12525E-02 1.14361E-02 1.15800E-02 + 1.08983E-02 1.10318E-02 1.11320E-02 + 1.11878E-02 1.13527E-02 1.14774E-02 + 1.14696E-02 1.16610E-02 1.17943E-02 + 1.11218E-02 1.12661E-02 1.13756E-02 + 1.14032E-02 1.15862E-02 1.17109E-02 + 1.16945E-02 1.18950E-02 1.20376E-02 + * GROUP 2 + 1.01463E-01 1.02298E-01 1.03077E-01 + 1.10613E-01 1.12380E-01 1.13996E-01 + 1.19513E-01 1.22223E-01 1.24386E-01 + 1.01482E-01 1.02359E-01 1.03102E-01 + 1.10651E-01 1.12411E-01 1.13890E-01 + 1.19578E-01 1.22223E-01 1.24408E-01 + 1.01656E-01 1.02499E-01 1.03202E-01 + 1.10779E-01 1.12545E-01 1.14012E-01 + 1.19760E-01 1.22309E-01 1.24493E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.37869E-03 5.42860E-03 5.46048E-03 + 5.39696E-03 5.44673E-03 5.48584E-03 + 5.41069E-03 5.46692E-03 5.50482E-03 + 5.36588E-03 5.41607E-03 5.45033E-03 + 5.38338E-03 5.43379E-03 5.47417E-03 + 5.39994E-03 5.45529E-03 5.49327E-03 + 5.35567E-03 5.40464E-03 5.44625E-03 + 5.36887E-03 5.42398E-03 5.46425E-03 + 5.39142E-03 5.44427E-03 5.48318E-03 + * GROUP 2 + 1.45087E-01 1.45418E-01 1.45810E-01 + 1.44737E-01 1.45070E-01 1.45567E-01 + 1.44372E-01 1.44796E-01 1.44987E-01 + 1.45215E-01 1.45612E-01 1.45936E-01 + 1.44908E-01 1.45246E-01 1.45503E-01 + 1.44569E-01 1.44918E-01 1.45153E-01 + 1.45593E-01 1.45943E-01 1.46201E-01 + 1.45235E-01 1.45579E-01 1.45838E-01 + 1.45039E-01 1.45228E-01 1.45436E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.58913E-14 6.64824E-14 6.68597E-14 + 6.61214E-14 6.67055E-14 6.71711E-14 + 6.62901E-14 6.69556E-14 6.73998E-14 + 6.57269E-14 6.63249E-14 6.67325E-14 + 6.59504E-14 6.65418E-14 6.70251E-14 + 6.61461E-14 6.68097E-14 6.72505E-14 + 6.55961E-14 6.61747E-14 6.66709E-14 + 6.57658E-14 6.64156E-14 6.68930E-14 + 6.60354E-14 6.66634E-14 6.71227E-14 + * GROUP 2 + 1.78025E-12 1.78585E-12 1.79198E-12 + 1.77493E-12 1.78044E-12 1.78784E-12 + 1.76950E-12 1.77607E-12 1.77960E-12 + 1.78134E-12 1.78769E-12 1.79306E-12 + 1.77656E-12 1.78211E-12 1.78657E-12 + 1.77152E-12 1.77708E-12 1.78117E-12 + 1.78535E-12 1.79114E-12 1.79570E-12 + 1.78002E-12 1.78564E-12 1.79009E-12 + 1.77666E-12 1.78029E-12 1.78413E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.86517E-01 5.11658E-01 5.31605E-01 + 4.88135E-01 5.13453E-01 5.33537E-01 + 4.89396E-01 5.14866E-01 5.35059E-01 + 4.86858E-01 5.11890E-01 5.31905E-01 + 4.88411E-01 5.13686E-01 5.33769E-01 + 4.89648E-01 5.15176E-01 5.35248E-01 + 4.87125E-01 5.12303E-01 5.32066E-01 + 4.88624E-01 5.13898E-01 5.34050E-01 + 4.89967E-01 5.15317E-01 5.35521E-01 + * GROUP 1 -> 2 + 1.45842E-02 1.59321E-02 1.70207E-02 + 1.46945E-02 1.60764E-02 1.71856E-02 + 1.47669E-02 1.61699E-02 1.72887E-02 + 1.45005E-02 1.58424E-02 1.69295E-02 + 1.46010E-02 1.59835E-02 1.70862E-02 + 1.46646E-02 1.60707E-02 1.71852E-02 + 1.44096E-02 1.57589E-02 1.68170E-02 + 1.45153E-02 1.58746E-02 1.69798E-02 + 1.45724E-02 1.59530E-02 1.70708E-02 + * GROUP 2 -> 1 + 1.77385E-03 1.67293E-03 1.58562E-03 + 1.91238E-03 1.81432E-03 1.71294E-03 + 2.04927E-03 1.95013E-03 1.87460E-03 + 1.97187E-03 1.85085E-03 1.74806E-03 + 2.11463E-03 2.00354E-03 1.92677E-03 + 2.26798E-03 2.17400E-03 2.05742E-03 + 2.22468E-03 2.08319E-03 1.97338E-03 + 2.37768E-03 2.25234E-03 2.14366E-03 + 2.54909E-03 2.40943E-03 2.31067E-03 + * GROUP 2 -> 2 + 1.21690E+00 1.31285E+00 1.39094E+00 + 1.20741E+00 1.30187E+00 1.37816E+00 + 1.19819E+00 1.29123E+00 1.36668E+00 + 1.21611E+00 1.31211E+00 1.39017E+00 + 1.20686E+00 1.30079E+00 1.37790E+00 + 1.19817E+00 1.29080E+00 1.36626E+00 + 1.21520E+00 1.31106E+00 1.38943E+00 + 1.20586E+00 1.30031E+00 1.37682E+00 + 1.19704E+00 1.28984E+00 1.36554E+00 + * + * ADF Table + * + * GROUP 1 + 1.00174E+00 1.00125E+00 1.00219E+00 + 1.00358E+00 1.00354E+00 1.00248E+00 + 1.00318E+00 1.00367E+00 1.00482E+00 + 1.00169E+00 1.00149E+00 1.00162E+00 + 1.00305E+00 1.00271E+00 1.00306E+00 + 1.00346E+00 1.00442E+00 1.00480E+00 + 1.00169E+00 1.00100E+00 1.00155E+00 + 1.00167E+00 1.00316E+00 1.00249E+00 + 1.00383E+00 1.00309E+00 1.00464E+00 + * GROUP 2 + 9.41584E-01 9.41804E-01 9.40518E-01 + 9.49730E-01 9.48356E-01 9.46750E-01 + 9.54305E-01 9.55712E-01 9.54767E-01 + 9.42340E-01 9.43286E-01 9.40393E-01 + 9.47144E-01 9.48272E-01 9.48157E-01 + 9.51843E-01 9.54437E-01 9.52470E-01 + 9.38821E-01 9.42686E-01 9.38115E-01 + 9.45159E-01 9.46264E-01 9.46234E-01 + 9.52016E-01 9.52024E-01 9.54453E-01 + * + * Transport XSEC Table + * + * GROUP 1 + 2.21409E-01 2.29185E-01 2.34761E-01 + 2.21497E-01 2.28990E-01 2.35039E-01 + 2.21555E-01 2.28908E-01 2.35030E-01 + 2.21296E-01 2.29012E-01 2.35027E-01 + 2.21364E-01 2.28941E-01 2.34986E-01 + 2.21339E-01 2.29004E-01 2.34792E-01 + 2.21164E-01 2.28992E-01 2.34756E-01 + 2.21385E-01 2.28984E-01 2.34760E-01 + 2.21246E-01 2.28781E-01 2.34793E-01 + * GROUP 2 + 8.05507E-01 8.58695E-01 8.97453E-01 + 8.02800E-01 8.50805E-01 8.90765E-01 + 7.98870E-01 8.50829E-01 8.82048E-01 + 8.07880E-01 8.49044E-01 8.95816E-01 + 8.06959E-01 8.48824E-01 8.91470E-01 + 7.96074E-01 8.53574E-01 8.86737E-01 + 8.01625E-01 8.56232E-01 8.93994E-01 + 8.03243E-01 8.47789E-01 8.90141E-01 + 7.93872E-01 8.44444E-01 8.86172E-01 + * + * Absorption XSEC Table + * + * GROUP 1 + 1.61353E-02 1.63653E-02 1.65312E-02 + 1.63288E-02 1.65798E-02 1.67724E-02 + 1.65245E-02 1.67902E-02 1.69778E-02 + 1.63088E-02 1.65359E-02 1.67122E-02 + 1.64936E-02 1.67433E-02 1.69550E-02 + 1.66783E-02 1.69531E-02 1.71564E-02 + 1.64765E-02 1.67189E-02 1.68934E-02 + 1.66676E-02 1.69357E-02 1.71415E-02 + 1.68443E-02 1.71359E-02 1.73593E-02 + * GROUP 2 + 1.40230E-01 1.40749E-01 1.41319E-01 + 1.48686E-01 1.50181E-01 1.51366E-01 + 1.56950E-01 1.59286E-01 1.61308E-01 + 1.40276E-01 1.40874E-01 1.41362E-01 + 1.48762E-01 1.50229E-01 1.51399E-01 + 1.56971E-01 1.59256E-01 1.61234E-01 + 1.40428E-01 1.40990E-01 1.41519E-01 + 1.48881E-01 1.50259E-01 1.51496E-01 + 1.57153E-01 1.59385E-01 1.61359E-01 + * + * NU-Fission XSEC Table + * + * GROUP 1 + 5.22440E-03 5.29181E-03 5.34425E-03 + 5.23786E-03 5.30972E-03 5.36125E-03 + 5.25154E-03 5.32542E-03 5.38510E-03 + 5.21719E-03 5.28299E-03 5.33342E-03 + 5.22464E-03 5.29806E-03 5.34876E-03 + 5.23341E-03 5.31386E-03 5.36827E-03 + 5.19727E-03 5.27136E-03 5.32564E-03 + 5.21827E-03 5.29013E-03 5.34714E-03 + 5.23093E-03 5.30909E-03 5.35742E-03 + * GROUP 2 + 1.54009E-01 1.54547E-01 1.55097E-01 + 1.53437E-01 1.54150E-01 1.54621E-01 + 1.53032E-01 1.53586E-01 1.54213E-01 + 1.54067E-01 1.54739E-01 1.55229E-01 + 1.53649E-01 1.54251E-01 1.54742E-01 + 1.53104E-01 1.53779E-01 1.54276E-01 + 1.54342E-01 1.55006E-01 1.55521E-01 + 1.53853E-01 1.54490E-01 1.55055E-01 + 1.53453E-01 1.54037E-01 1.54508E-01 + * + * Kappa-Fission XSEC Table + * + * GROUP 1 + 6.38568E-14 6.46660E-14 6.52944E-14 + 6.39972E-14 6.48548E-14 6.54697E-14 + 6.41329E-14 6.50129E-14 6.56578E-14 + 6.37543E-14 6.45477E-14 6.51523E-14 + 6.38212E-14 6.46966E-14 6.53078E-14 + 6.39279E-14 6.48578E-14 6.54940E-14 + 6.35430E-14 6.44109E-14 6.50442E-14 + 6.37265E-14 6.45915E-14 6.52686E-14 + 6.38534E-14 6.47799E-14 6.53550E-14 + * GROUP 2 + 1.88750E-12 1.89569E-12 1.90389E-12 + 1.87959E-12 1.88983E-12 1.89692E-12 + 1.87382E-12 1.88199E-12 1.89089E-12 + 1.88776E-12 1.89757E-12 1.90500E-12 + 1.88172E-12 1.89059E-12 1.89798E-12 + 1.87426E-12 1.88391E-12 1.89123E-12 + 1.89054E-12 1.90024E-12 1.90801E-12 + 1.88365E-12 1.89293E-12 1.90124E-12 + 1.87800E-12 1.88647E-12 1.89353E-12 + * + * Scattering XSEC Table + * + * GROUP 1 -> 1 + 4.80085E-01 5.03781E-01 5.22451E-01 + 4.80506E-01 5.04129E-01 5.22934E-01 + 4.80655E-01 5.04249E-01 5.22979E-01 + 4.80282E-01 5.04020E-01 5.22679E-01 + 4.80548E-01 5.04267E-01 5.23100E-01 + 4.80879E-01 5.04422E-01 5.23055E-01 + 4.80534E-01 5.04186E-01 5.22731E-01 + 4.80680E-01 5.04372E-01 5.23176E-01 + 4.80793E-01 5.04509E-01 5.23307E-01 + * GROUP 1 -> 2 + 1.11997E-02 1.24378E-02 1.34124E-02 + 1.11754E-02 1.24025E-02 1.33871E-02 + 1.11271E-02 1.23492E-02 1.33401E-02 + 1.11200E-02 1.23508E-02 1.33177E-02 + 1.10837E-02 1.23111E-02 1.32925E-02 + 1.10586E-02 1.22693E-02 1.32408E-02 + 1.10406E-02 1.22609E-02 1.32125E-02 + 1.09912E-02 1.22154E-02 1.31896E-02 + 1.09510E-02 1.21639E-02 1.31397E-02 + * GROUP 2 -> 1 + 2.26842E-03 2.14956E-03 2.03196E-03 + 2.40306E-03 2.26787E-03 2.15770E-03 + 2.50021E-03 2.40027E-03 2.27582E-03 + 2.52261E-03 2.38066E-03 2.30076E-03 + 2.66536E-03 2.51275E-03 2.40238E-03 + 2.81560E-03 2.70711E-03 2.55790E-03 + 2.85916E-03 2.71147E-03 2.54621E-03 + 3.00233E-03 2.85011E-03 2.73130E-03 + 3.15877E-03 3.00787E-03 2.90454E-03 + * GROUP 2 -> 2 + 1.15880E+00 1.24912E+00 1.32270E+00 + 1.15121E+00 1.24056E+00 1.31257E+00 + 1.14445E+00 1.23194E+00 1.30299E+00 + 1.15821E+00 1.24844E+00 1.32224E+00 + 1.15074E+00 1.23931E+00 1.31142E+00 + 1.14366E+00 1.23120E+00 1.30246E+00 + 1.15742E+00 1.24733E+00 1.32084E+00 + 1.15014E+00 1.23848E+00 1.31089E+00 + 1.14340E+00 1.23050E+00 1.30140E+00 + * + * ADF Table + * + * GROUP 1 + 1.06250E+00 1.06680E+00 1.06746E+00 + 1.06184E+00 1.06514E+00 1.06716E+00 + 1.06115E+00 1.06352E+00 1.06585E+00 + 1.06372E+00 1.06599E+00 1.06913E+00 + 1.06169E+00 1.06456E+00 1.06744E+00 + 1.06204E+00 1.06425E+00 1.06593E+00 + 1.06311E+00 1.06583E+00 1.06947E+00 + 1.06236E+00 1.06439E+00 1.06678E+00 + 1.06094E+00 1.06422E+00 1.06697E+00 + * GROUP 2 + 1.35480E+00 1.36281E+00 1.36610E+00 + 1.35433E+00 1.35539E+00 1.36005E+00 + 1.35241E+00 1.35341E+00 1.35561E+00 + 1.35895E+00 1.35915E+00 1.36849E+00 + 1.35528E+00 1.35837E+00 1.36023E+00 + 1.35256E+00 1.35126E+00 1.35649E+00 + 1.36022E+00 1.36373E+00 1.36766E+00 + 1.35554E+00 1.35952E+00 1.36048E+00 + 1.34619E+00 1.35078E+00 1.36106E+00 + * + * Fission Spectrum + * + * GROUP 1 2 + 1.00000E+00 0.00000E+00 + * + * Inverse velocity + * + * GROUP 1 2 + 4.57202E-08 2.31057E-06 + * + * Delay Neutron Decay Constant (Lambda) + * + * GROUP 1 2 3 4 5 6 + 1.33927E-02 3.16943E-02 1.19785E-01 3.08953E-01 8.76954E-01 2.94272E+00 + * + * Delay Neutron Fraction (Beta) + * + * GROUP 1 2 3 4 5 6 + 1.52090E-04 8.98118E-04 8.14572E-04 2.05198E-03 1.11312E-03 4.17227E-04 diff --git a/src/ADPRES.f90 b/src/ADPRES.f90 new file mode 100644 index 0000000..2e62595 --- /dev/null +++ b/src/ADPRES.f90 @@ -0,0 +1,89 @@ +PROGRAM main + +USE sdata, ONLY: dp, mode, tranw, fdm_time, nod_time, xs_time, & +inp_time, th_time, get_time +USE io, ONLY: ounit, scr, inp_read, bther +USE control, ONLY: forward, adjoint, fixedsrc +USE trans, ONLY: rod_eject, rod_eject_th +USE th, ONLY: cbsearch, cbsearcht + +IMPLICIT NONE + +REAL(DP) :: st, fn, tot_time + +! Read input +st = get_time() +call inp_read() +fn = get_time() +inp_time = fn - st + +if (scr) then + write(*,*) + write(*,*) ' reading input ... done' +end if + +SELECT CASE(mode) + CASE('FIXEDSRC') + CALL fixedsrc() + CASE('ADJOINT') + CALL adjoint() + CASE('RODEJECT') + IF (bther == 0) THEN + CALL rod_eject() + ELSE + CALL rod_eject_th() + END IF + CASE('BCSEARCH') + IF (bther == 0) THEN + CALL cbsearch() + ELSE + CALL cbsearcht() + END IF + CASE DEFAULT + CALL forward() +END SELECT + +IF (tranw) THEN + WRITE(ounit,*) + WRITE(ounit,*) ' WARNING: ONE OR MORE OUTER ITERATIONS DID NOT CONVERGE.'& + // 'YOU MAY NEED TO REDUCE TIME STEP' + WRITE(*,*) + WRITE(*,*) ' WARNING: ONE OR MORE OUTER ITERATIONS DID NOT CONVERGE.'& + // 'YOU MAY NEED TO REDUCE TIME STEP' +END IF + +tot_time = fdm_time + th_time + nod_time + xs_time + inp_time +WRITE(ounit,*); WRITE(ounit,*); WRITE(ounit,1123) +WRITE(ounit,1124)inp_time, inp_time/tot_time*100. +WRITE(ounit,1125)xs_time, xs_time/tot_time*100. +WRITE(ounit,1126)fdm_time, fdm_time/tot_time*100. +WRITE(ounit,1127)nod_time, nod_time/tot_time*100. +WRITE(ounit,1128)th_time, th_time/tot_time*100. +WRITE(ounit,1129) +WRITE(ounit,1130)tot_time +if (scr) then + WRITE(*,*); WRITE(*,*); WRITE(*,1123) + WRITE(*,1124)inp_time, inp_time/tot_time*100. + WRITE(*,1125)xs_time, xs_time/tot_time*100. + WRITE(*,1126)fdm_time, fdm_time/tot_time*100. + WRITE(*,1127)nod_time, nod_time/tot_time*100. + WRITE(*,1128)th_time, th_time/tot_time*100. + WRITE(*,1129) + WRITE(*,1130)tot_time +end if +1123 format (2X,'CPU time breakdown in seconds') +1124 format (4X,'Input reading time :', F10.4, ' (', F4.1,'%)') +1125 format (4X,'XSEC processing time :', F10.4, ' (', F4.1,'%)') +1126 format (4X,'CMFD time :', F10.4, ' (', F4.1,'%)') +1127 format (4X,'Nodal update time :', F10.4, ' (', F4.1,'%)') +1128 format (4X,'T-H time :', F10.4, ' (', F4.1,'%)') +1129 format (4X,'------------------------------------------') +1130 format (4X,'Total time :', F10.4) + +WRITE(*,*) +WRITE(*,*) " ADPRES EXIT NORMALLY" + +! ADPRES stop to prevent remain memory not allocated for g95 compiler +stop + +END PROGRAM diff --git a/src/mod_cmfd.f90 b/src/mod_cmfd.f90 new file mode 100644 index 0000000..6565f1c --- /dev/null +++ b/src/mod_cmfd.f90 @@ -0,0 +1,1337 @@ +module CMFD + + use sdata, only: dp + implicit none + save + +contains + + !****************************************************************************! + + subroutine coup_coef() + + !Purpose: to calculate FDM nodal coupling coefficients + + use sdata, only: ng, nnod, ix, iy, iz, xyz, D, xdel, ydel, zdel, & + ystag, xstag, nod, nzz, xeast, xwest, ysouth, ynorth, zbott, ztop + + implicit none + + real(dp) :: alb = 1.e30_dp + real(dp) :: d1, d2 + integer :: n, g, i, j, k + logical :: first = .true. + + if (first) then + allocate(nod(nnod,ng)) + do g = 1, ng + do n = 1, nnod + nod(n,g)%dn = 0._dp ! initial nodal coupling coefficients + end do + end do + first = .false. + end if + + ! Calculate FDM coupling coefficients + do g = 1, ng + do n = 1, nnod + + ! Set i, j, k + i = ix(n); j = iy(n); k = iz(n) + + ! Set FDM coupling coefficients in x direction + if (i == ystag(j)%smax) then + if (xeast == 0) then + nod(n,g)%df(1) = 2._dp * alb * D(n,g) / & + (2._dp * D(n,g) + alb * xdel(i)) + else if (xeast == 1) then + nod(n,g)%df(1) = D(n,g) / (2._dp * D(n,g) + 0.5_dp * xdel(i)) + else + nod(n,g)%df(1) = 0._dp + end if + else + d2 = D(xyz(i+1, j, k), g) + nod(n,g)%df(1) = 2._dp * D(n,g) * d2 / & + (D(n,g) * xdel(i+1) + d2 * xdel(i)) + end if + + if (i == ystag(j)%smin) then + if (xwest == 0) then + nod(n,g)%df(2) = 2._dp * alb * D(n,g) / & + (2._dp * D(n,g) + alb * xdel(i)) + else if (xwest == 1) then + nod(n,g)%df(2) = D(n,g) / (2._dp * D(n,g) + 0.5_dp * xdel(i)) + else + nod(n,g)%df(2) = 0._dp + end if + else + d1 = D(xyz(i-1, j, k), g) + nod(n,g)%df(2) = 2._dp * D(n,g) * d1 / & + (D(n,g) * xdel(i-1) + d1 * xdel(i)) + end if + + ! Set nodal coupling coefficients in y direction + if (j == xstag(i)%smax) then + if (ynorth == 0) then + nod(n,g)%df(3) = 2._dp * alb * D(n,g) / & + (2._dp * D(n,g) + alb * ydel(j)) + else if (ynorth == 1) then + nod(n,g)%df(3) = D(n,g) / (2._dp * D(n,g) + 0.5_dp * ydel(j)) + else + nod(n,g)%df(3) = 0._dp + end if + else + d2 = D(xyz(i, j+1, k), g) + nod(n,g)%df(3) = 2._dp * D(n,g) * d2 / & + (D(n,g) * ydel(j+1) + d2 * ydel(j)) + end if + + if (j == xstag(i)%smin) then + if (ysouth == 0) then + nod(n,g)%df(4) = 2._dp * alb * D(n,g) / & + (2._dp * D(n,g) + alb * ydel(j)) + else if (ysouth == 1) then + nod(n,g)%df(4) = D(n,g) / (2._dp * D(n,g) + 0.5_dp * ydel(j)) + else + nod(n,g)%df(4) = 0._dp + end if + else + d1 = D(xyz(i, j-1, k), g) + nod(n,g)%df(4) = 2._dp * D(n,g) * d1 / & + (D(n,g) * ydel(j-1) + d1 * ydel(j)) + end if + + ! Set nodal coupling coefficients in z direction + if (k == nzz) then + if (ztop == 0) then + nod(n,g)%df(5) = 2._dp * alb * D(n,g) / & + (2._dp * D(n,g) + alb * zdel(k)) + else if (ztop == 1) then + nod(n,g)%df(5) = D(n,g) / (2._dp * D(n,g) + 0.5_dp * zdel(k)) + else + nod(n,g)%df(5) = 0._dp + end if + else + d2 = D(xyz(i, j, k+1), g) + nod(n,g)%df(5) = 2._dp * D(n,g) * d2 / & + (D(n,g) * zdel(k+1) + d2 * zdel(k)) + end if + + if (k == 1) then + if (zbott == 0) then + nod(n,g)%df(6) = 2._dp * alb * D(n,g) / & + (2._dp * D(n,g) + alb * zdel(k)) + else if (zbott == 1) then + nod(n,g)%df(6) = D(n,g) / (2._dp * D(n,g) + 0.5_dp * zdel(k)) + else + nod(n,g)%df(6) = 0._dp + end if + else + d1 = D(xyz(i, j, k-1), g) + nod(n,g)%df(6) = 2._dp * D(n,g) * d1 / & + (D(n,g) * zdel(k-1) + d1 * zdel(k)) + end if + end do + end do + + end subroutine coup_coef + + !****************************************************************************! + + subroutine set_ind() + + !Purpose: to set indexes for CMFD matrix + + use sdata, only: ix, iy, iz, ystag, xstag, nnod, nxx, nyy, nzz, ind + + implicit none + + integer, dimension(nxx,nyy) :: nodp !radial node position + integer :: n, np, rec, i, j, k + + ! setup radial node position nodp + nodp = 0 + rec = 0 + do j = 1, nyy + do i = ystag(j)%smin, ystag(j)%smax + rec = rec + 1 + nodp(i,j) = rec + end do + end do + + ! Calculate number of nodes for one planar + np = rec + + do n = 1, nnod + + ! Set i, j, k + i = ix(n); j = iy(n); k = iz(n) + rec = 0 + + ! Lower diagonal matrix element for z-direction + if (k /= 1) then + rec = rec + 1 + ind(n)%col(rec) = n - np + end if + + ! Lower diagonal matrix element for y-direction + if (j /= xstag(i)%smin) then + rec = rec + 1 + ind(n)%col(rec) = n - (nodp(i,j) - nodp(i,j-1)) + end if + + ! Lower diagonal matrix element for x-direction + if (i /= ystag(j)%smin) then + rec = rec + 1 + ind(n)%col(rec) = n - 1 + end if + + ! Diagonal matrix elementss + rec = rec + 1 + ind(n)%col(rec) = n + + ! Upper diagonal matrix element for x-direction + if (i /= ystag(j)%smax) then + rec = rec + 1 + ind(n)%col(rec) = n + 1 + end if + + ! Upper diagonal matrix element for y-direction + if (j /= xstag(i)%smax) then + rec = rec + 1 + ind(n)%col(rec) = n + (nodp(i,j+1) - nodp(i,j)) + end if + + ! Upper diagonal matrix element for z-direction + if (k /= nzz) then + rec = rec + 1 + ind(n)%col(rec) = n + np + end if + + end do + + end subroutine set_ind + + !****************************************************************************! + + subroutine matrix_setup(opt) + + !Purpose: to setup sparse penta-diagonal matrix. Elements are indexed in + ! two-dimensional vector ind and non-zero elements strored in A + + use sdata, only: nod, ix, iy, iz, xdel, ydel, zdel, & + ystag, xstag, nnod, sigr, nzz, ng, A, ind + + implicit none + + integer, intent(in) :: opt + integer :: n, g, rec, i, j, k + logical :: first = .true. + + ! Allocate FDM matrix for first time + if (first) then + allocate(A(nnod,ng)) + do n = 1, nnod + do g = 1, ng + allocate(A(n,g)%elmn(ind(n)%ncol)) + end do + end do + call set_ind() + first = .false. + end if + + ! If need to recalculate FDM coupling coefficients + if (opt > 0) call coup_coef() + + + ! Setup CMFD linear system + do g = 1, ng + do n = 1, nnod + + ! Set i, j, k + i = ix(n); j = iy(n); k = iz(n) + rec = 0 + + ! Lower diagonal matrix element for z-direction + if (k /= 1) then + rec = rec + 1 + A(n,g)%elmn(rec) = -(nod(n,g)%df(6) - nod(n,g)%dn(6)) / zdel(k) + end if + + ! Lower diagonal matrix element for y-direction + if (j /= xstag(i)%smin) then + rec = rec + 1 + A(n,g)%elmn(rec) = -(nod(n,g)%df(4) - nod(n,g)%dn(4)) / ydel(j) + end if + + ! Lower diagonal matrix element for x-direction + if (i /= ystag(j)%smin) then + rec = rec + 1 + A(n,g)%elmn(rec) = -(nod(n,g)%df(2) - nod(n,g)%dn(2)) / xdel(i) + end if + + ! Diagonal matrix elementss + rec = rec + 1 + A(n,g)%elmn(rec) = (nod(n,g)%df(1) + nod(n,g)%df(2) - & + nod(n,g)%dn(1) + nod(n,g)%dn(2)) / xdel(i) + & + (nod(n,g)%df(3) + nod(n,g)%df(4) - & + nod(n,g)%dn(3) + nod(n,g)%dn(4)) / ydel(j) + & + (nod(n,g)%df(5) + nod(n,g)%df(6) - & + nod(n,g)%dn(5) + nod(n,g)%dn(6)) / zdel(k) + & + sigr(n,g) + + ! Upper diagonal matrix element for x-direction + if (i /= ystag(j)%smax) then + rec = rec + 1 + A(n,g)%elmn(rec) = -(nod(n,g)%df(1) + nod(n,g)%dn(1)) / xdel(i) + end if + + ! Upper diagonal matrix element for y-direction + if (j /= xstag(i)%smax) then + rec = rec + 1 + A(n,g)%elmn(rec) = -(nod(n,g)%df(3) + nod(n,g)%dn(3)) / ydel(j) + end if + + ! Upper diagonal matrix element for z-direction + if (k /= nzz) then + rec = rec + 1 + A(n,g)%elmn(rec) = -(nod(n,g)%df(5) + nod(n,g)%dn(5)) / zdel(k) + end if + + end do + end do + + end subroutine matrix_setup + + !****************************************************************************! + + subroutine fiss_extrp(popt,e1,e2,erro,errn,fs) + + ! + ! Purpose: + ! To perform fission source extrapolation + + USE io, ONLY: ounit, scr + + implicit none + + integer, intent(in) :: popt + real(dp), intent(in) :: e1, e2 + real(dp), dimension(:), intent(in) :: erro, errn + real(dp), dimension(:), intent(inout) :: fs + + + real(dp) :: domiR, mval + + domiR = e2 / e1 + mval = MAXVAL(ABS(erro)) + if (mval * mval < 0.0) domiR = -domiR + fs = fs + domiR / (1._DP - domiR) * errn + if (popt > 0) then + write(ounit,*) ' ...FISSION SOURCE EXTRAPOLATED...' + if (scr) write(*,*) ' ...FISSION SOURCE EXTRAPOLATED...' + end if + + end subroutine fiss_extrp + + !****************************************************************************! + + subroutine nodal_upd(popt, nmode) + + ! + ! Purpose: + ! To update nodal coupling coefficients + + USE sdata, ONLY: ndmax, im, jm ,km, kern, get_time, nod_time + USE nodal, ONLY: nodal_update, nodal_update_pnm + USE io, ONLY: ounit, scr + + + implicit none + + integer, intent(in) :: popt + integer, intent(in) :: nmode ! Nodal update mode + real(dp) :: st, fn + + st = get_time() + + ndmax = 0._dp + !Update nodal coupling coefficients + if (kern == 'SANM') then + call nodal_update(nmode) + else + call nodal_update_pnm(nmode) + end if + !Update CMFD matrix + call matrix_setup(0) + if (popt > 0) then + write(ounit,*) ' .....NODAL COUPLING UPDATED..... ' + write(ounit,1145) ndmax, im, jm, km + if (scr) then + write(*,*) ' .....NODAL COUPLING UPDATED..... ' + write(*,1145) ndmax, im, jm, km + end if + end if + + fn = get_time() + + nod_time = nod_time + (fn-st) + + 1145 FORMAT ('MAX. CHANGE IN NODAL COUPLING COEF.= ', ES12.5, & + ' AT NODE I = ', I2, ', J = ', I2, ', K = ', I2) + +end subroutine nodal_upd + +!****************************************************************************! + +subroutine print_keff(popt) + +! +! Purpose: +! To update nodal coupling coefficients + +USE sdata, ONLY: Ke +USE io, ONLY: ounit, scr + +implicit none + +integer, intent(in) :: popt + +if (popt > 0) then + write(ounit,*) + write(ounit,1146) Ke + if (scr) then + write(*,*) + write(*,1146) Ke + end if +end if + +1146 format(2X,'MULTIPLICATION EFFECTIVE (K-EFF) = ', F9.6) + +end subroutine print_keff + + !****************************************************************************! + + subroutine outer(popt) + + ! + ! Purpose: + ! To perform forward outer iteration + + + USE sdata, ONLY: ng, nnod, nout, nin, serc, ferc, fer, ser, f0, nupd, & + Ke, nac, fs0, s0, ndmax, kern, get_time, fdm_time + USE io, ONLY: ounit, scr, bther + USE nodal, ONLY: nodal_update + + implicit none + + integer, optional, intent(in) :: popt + + real(dp) :: Keo !Old Multiplication factor (Keff) + real(dp), dimension(nnod) :: fs0c !old fission source + real(dp), dimension(nnod) :: bs !total source + real(dp), dimension(nnod,ng) :: f0c !Old flux + real(dp) :: f, fc ! new and old integrated fission sources + integer :: p, g + real(dp) :: e1, e2 + real(dp), dimension(nnod) :: errn, erro ! current and past error vectors + logical :: first = .true. + real(dp) :: st, fn + + st = get_time() + + !Setup CMFD matrix + CALL matrix_setup(1) + + !Allocate flux and fission source for first time + if (first .and. bther == 0) then + allocate (f0(nnod,ng), fs0(nnod), s0(nnod,ng)) + Ke = 1._dp + f0 = 1._dp + call FSrc(fs0) + first = .false. + end if + + ! Initialize keff and fission source + f = Integrate(fs0) + errn = 1._DP + e1 = Integrate(errn) + + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + + !Start outer iteration + do p=1, nout + st = get_time() + fc = f ! Save old integrated fission source + fs0c = fs0 ! Save old fission source + f0c = f0 ! Save old flux + Keo = Ke ! Save old multiplication factor + erro = errn ! Save old fission source error/difference + do g = 1, ng + !!!Calculate total source + call TSrc(g, Ke, bs) + + !!!Inner Iteration + call bicg(nin, g, bs, f0(:,g)) + end do + CALL FSrc (fs0) !Update fission source + errn = fs0 - fs0c + e2 = l2norm(errn) + if (MOD(p,nac) == 0) call fiss_extrp(popt,e1,e2,erro,errn,fs0) ! Fission source extrapolation + e1 = e2 ! Save l2 norm of the fission source error + f = Integrate(fs0) ! Integrate fission source + Ke = Keo * f / fc ! Update Keff + CALL RelE(fs0, fs0c, ser) ! Search maximum point wise fission source Relative Error + CALL RelEg(f0, f0c, fer) ! Search maximum point wise flux error + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + if (MOD(p,nupd) == 0 .and. kern /= ' FDM') call nodal_upd(popt, 1) ! Nodal coefficients update + if (popt > 0) then + write(ounit,'(I5,F13.6,2ES15.5)') p, Ke, ser, fer ! Write outer iteration evolution + if (scr) write(*,'(I5,F13.6,2ES15.5)') p, Ke, ser, fer ! Write outer iteration evolution + end if + if ((ser < serc) .AND. (fer < ferc) .AND. (ndmax < 1.e-2)) exit + end do + + if (p-1 == nout) THEN + write(*,*) + write(*,*) ' MAXIMUM NUMBER OF OUTER ITERATION IS REACHED IN FORWARD CALCULATION.' + write(*,*) ' CHECK PROBLEM SPECIFICATION OR CHANGE ITERATION CONTROL (%ITER).' + write(*,*) ' PERHAPS BY MAKING FISSION SOURCE INTERPOLATION MORE FREQUENT' + write(*,*) ' ADPRES IS STOPING...' + STOP + end if + + call print_keff(popt) + + end subroutine outer + + !****************************************************************************! + + subroutine outer_fs(popt) + + ! + ! Purpose: + ! To perform fixed-source outer iteration + + + USE sdata, ONLY: ng, nnod, nout, nin, serc, ferc, fer, ser, f0, nupd, & + Ke, nac, fs0, s0, ndmax, kern, get_time, fdm_time + USE io, ONLY: ounit, scr + USE nodal, ONLY: nodal_update + + implicit none + + integer, optional, intent(in) :: popt + + real(dp), dimension(nnod) :: fs0c !old fission source + real(dp), dimension(nnod,ng) :: f0c !Old flux + real(dp), dimension(nnod) :: bs !total source + integer :: p, g + real(dp) :: e1, e2 + real(dp), dimension(nnod) :: errn, erro ! current and past error vectors + logical :: first = .true. + real(dp) :: st, fn + + st = get_time() + + !Setup CMFD matrix + CALL matrix_setup(1) + + !Allocate flux and fission source for first time + if (first) then + allocate (f0(nnod,ng), fs0(nnod), s0(nnod,ng)) + Ke = 1._dp + f0 = 1._dp + call FSrc(fs0) + first = .false. + end if + + ! Initialize keff and fission source + errn = 1._DP + e1 = Integrate(errn) + + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + + !Start outer iteration + do p=1, nout + st = get_time() + fs0c = fs0 ! Save old fission source + f0c = f0 ! Save old flux + erro = errn ! Save old fission source error/difference + do g = 1, ng + !!!Calculate total source + call TSrc(g, Ke, bs) + + !!!Inner Iteration + call bicg(nin, g, bs, f0(:,g)) + end do + CALL FSrc (fs0) !Update fission source + errn = fs0 - fs0c + e2 = l2norm(errn) + if (MOD(p,nac) == 0) call fiss_extrp(popt,e1,e2,erro,errn,fs0) ! Fission source extrapolation + e1 = e2 ! Save l2 norm of the fission source error + CALL RelE(fs0, fs0c, ser) ! Search maximum point wise fission source Relative Error + CALL RelEg(f0, f0c, fer) ! Search maximum point wise flux error + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + if (MOD(p,nupd) == 0 .and. kern /= ' FDM') call nodal_upd(popt, 1) ! Nodal coefficients update + if (popt > 0) then + write(ounit,'(I5,2ES15.5)') p, ser, fer ! Write outer iteration evolution + if (scr) write(*,'(I5,2ES15.5)') p, ser, fer ! Write outer iteration evolution + end if + if ((ser < serc) .AND. (fer < ferc) .AND. (ndmax < 1.e-2)) exit + end do + + if (p-1 == nout) THEN + write(*,*) + write(*,*) ' MAXIMUM NUMBER OF OUTER ITERATION IS REACHED IN FIXED-SOURCE CALCULATION.' + write(*,*) ' CHECK PROBLEM SPECIFICATION OR CHANGE ITERATION CONTROL (%ITER).' + write(*,*) ' PERHAPS BY MAKING FISSION SOURCE INTERPOLATION MORE FREQUENT' + write(*,*) ' ADPRES IS STOPING...' + STOP + end if + + end subroutine outer_fs + + !****************************************************************************! + + subroutine outer_ad(popt) + + ! + ! Purpose: + ! To perform adjoint outer iteration + + + USE sdata, ONLY: ng, nnod, nout, nin, serc, ferc, fer, ser, f0, nupd, & + Ke, nac, fs0, s0, ndmax, kern, get_time, fdm_time + USE io, ONLY: ounit, scr + USE nodal, ONLY: nodal_update + + implicit none + + integer, optional, intent(in) :: popt + + real(dp) :: Keo !Old Multiplication factor (Keff) + real(dp), dimension(nnod) :: fs0c !old fission source + real(dp), dimension(nnod,ng) :: f0c !Old flux + real(dp), dimension(nnod) :: bs !total source + real(dp) :: f, fc ! new and old integrated fission sources + integer :: p, g + real(dp) :: e1, e2 + real(dp), dimension(nnod) :: errn, erro ! current and past error vectors + logical :: first = .true. + real(dp) :: st, fn + + st = get_time() + + !Setup CMFD matrix + CALL matrix_setup(1) + + !Allocate flux and fission source for first time + if (first .and. popt > 0) then + allocate (f0(nnod,ng), fs0(nnod), s0(nnod,ng)) + Ke = 1._dp + f0 = 1._dp + call FSrcAd(fs0) + first = .false. + end if + + ! Initialize keff and fission source + f = Integrate(fs0) + errn = 1._DP + e1 = Integrate(errn) + + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + + !Start outer iteration + do p=1, nout + st = get_time() + fc = f ! Save old integrated fission source + fs0c = fs0 ! Save old fission source + f0c = f0 ! Save old flux + Keo = Ke ! Save old multiplication factor + erro = errn ! Save old fission source error/difference + do g = ng,1,-1 + !!!Calculate total source + call TSrcAd(g, Ke, bs) + + !!!Inner Iteration + call bicg(nin, g, bs, f0(:,g)) + end do + CALL FSrcAd (fs0) !Update fission source + errn = fs0 - fs0c + e2 = l2norm(errn) + if (MOD(p,nac) == 0) call fiss_extrp(popt,e1,e2,erro,errn,fs0) ! Fission source extrapolation + e1 = e2 ! Save l2 norm of the fission source error + f = Integrate(fs0) ! Integrate fission source + Ke = Keo * f / fc ! Update Keff + CALL RelE(fs0, fs0c, ser) ! Search maximum point wise fission source Relative Error + CALL RelEg(f0, f0c, fer) ! Search maximum point wise flux error + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + ! For RODEJECT mode, adjoint calculation is approximated using + ! nodal coefficients from forward calculation. + if (MOD(p,nupd) == 0 .and. kern /= ' FDM' & + .and. popt > 0) call nodal_upd(popt, 0) ! Nodal coefficients update + if (popt > 0) then + write(ounit,'(I5,F13.6,2ES15.5)') p, Ke, ser, fer ! Write outer iteration evolution + if (scr) write(*,'(I5,F13.6,2ES15.5)') p, Ke, ser, fer ! Write outer iteration evolution + end if + if ((ser < serc) .AND. (fer < ferc) .AND. (ndmax < 1.e-2)) exit + end do + + if (p-1 == nout) THEN + write(*,*) + write(*,*) ' MAXIMUM NUMBER OF OUTER ITERATION IS REACHED IN ADJOINT CALCULATION.' + write(*,*) ' CHECK PROBLEM SPECIFICATION OR CHANGE ITERATION CONTROL (%ITER).' + write(*,*) ' PERHAPS BY MAKING FISSION SOURCE INTERPOLATION MORE FREQUENT' + write(*,*) ' ADPRES IS STOPING...' + STOP + end if + + call print_keff(popt) + + end subroutine outer_ad + + !****************************************************************************! + + subroutine outer_th(maxn) + + ! + ! Purpose: + ! To perform TH outer iteration + + + USE sdata, ONLY: ng, nnod, nin, serc, ferc, fer, ser, f0, nupd, & + Ke, nac, s0, fs0, ndmax, nth, kern, get_time, fdm_time + USE io, ONLY: ounit, biter + USE nodal, ONLY: nodal_update + + implicit none + + integer, intent(in) :: maxn ! Max. number of outer iteration + + real(dp) :: Keo !Old Multiplication factor (Keff) + real(dp), dimension(nnod) :: fs0c !old fission source + real(dp), dimension(nnod,ng) :: f0c !Old flux + real(dp), dimension(nnod) :: bs !total source + real(dp) :: f, fc ! new and old integrated fission sources + integer :: p, g + real(dp) :: e1, e2 + real(dp), dimension(nnod) :: errn, erro ! current and past error vectors + logical :: first = .true. + real(dp) :: st, fn + logical :: lnupd + + st = get_time() + + !Setup CMFD matrix + CALL matrix_setup(1) + + !Allocate flux and fission source for first time + if (first) then + allocate (f0(nnod,ng), fs0(nnod), s0(nnod,ng)) + Ke = 1._dp + f0 = 1._dp + call FSrc(fs0) + first = .false. + end if + + ! Initialize keff and fission source + f = Integrate(fs0) + errn = 1._DP + e1 = Integrate(errn) + + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + + if (biter == 0) nupd = int(nth/2) + + !Start outer iteration + do p=1, maxn + st = get_time() + fc = f ! Save old integrated fission source + fs0c = fs0 ! Save old fission source + f0c = f0 ! Save old flux + Keo = Ke ! Save old multiplication factor + erro = errn ! Save old fission source error/difference + do g = 1, ng + !!!Calculate total source + call TSrc(g, Ke, bs) + + !!!Inner Iteration + call bicg(nin, g, bs, f0(:,g)) + end do + CALL FSrc (fs0) !Update fission source + errn = fs0 - fs0c + e2 = l2norm(errn) + if (MOD(p,nac) == 0) call fiss_extrp(0,e1,e2,erro,errn,fs0) ! Fission source extrapolation + e1 = e2 ! Save l2 norm of the fission source error + f = Integrate(fs0) ! Integrate fission source + Ke = Keo * f / fc ! Update Keff + CALL RelE(fs0, fs0c, ser) ! Search maximum point wise fission source Relative Error + CALL RelEg(f0, f0c, fer) ! Search maximum point wise flux error + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + if (MOD(p,nupd) == 0 .and. kern /= ' FDM') then + lnupd = .false. + call nodal_upd(0, 1) ! Nodal coefficients update + end if + if ((ser < serc) .AND. (fer < ferc) .AND. (ndmax < 1.e-2)) exit + end do + + if (lnupd .and. kern /= ' FDM') then + write(*,*) 'ERROR: OUTER ITERATION WITHIN T-H ITERATION FINISHED WITHOUT NODAL UPDATE' + write(*,*) 'CHANGE ITERATION CONTROL USING %ITER CARD' + write(ounit,*) 'ERROR: OUTER ITERATION WITHIN T-H ITERATION FINISHED WITHOUT NODAL UPDATE' + write(ounit,*) 'CHANGE ITERATION CONTROL USING %ITER CARD' + stop + end if + + end subroutine outer_th + + !****************************************************************************! + + subroutine outer_tr(ht,maxi) + + ! + ! Purpose: + ! To perform transient fixed source outer iteration + + + USE sdata, ONLY: ng, nnod, nout, nin, serc, ferc, fer, ser, f0, nupd, & + nac, fs0, ndmax, exsrc, kern, get_time, fdm_time + USE nodal, ONLY: nodal_update + + implicit none + + real(dp), intent(in) :: ht ! Time step + logical, intent(out) :: maxi ! Does it reach max number of iteration? + + real(dp), dimension(nnod) :: fs0c !old fission source + real(dp), dimension(nnod,ng) :: f0c !Old flux + real(dp), dimension(nnod) :: bs !total source + integer :: p, g + real(dp) :: e1, e2 + real(dp), dimension(nnod) :: errn, erro ! current and past error vectors + real(dp) :: st, fn + + st = get_time() + + !Setup CMFD matrix + CALL matrix_setup(1) + + ! Get terms that do not appear in static calculation + call get_exsrc(ht, exsrc) + + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + + !Start outer iteration + do p=1, nout + st = get_time() + fs0c = fs0 ! Save old fission source + f0c = f0 ! Save old flux + erro = errn ! Save old fission source error/difference + do g = 1, ng + !!!Calculate total source + call TSrcTr(g, bs) + + !!!Inner Iteration + call bicg(nin, g, bs, f0(:,g)) + end do + CALL FSrc (fs0) !Update fission source + errn = fs0 - fs0c + e2 = l2norm(errn) + if (MOD(p,nac) == 0) call fiss_extrp(0,e1,e2,erro,errn,fs0) ! Fission source extrapolation + e1 = e2 ! Save l2 norm of the fission source error + CALL RelE(fs0, fs0c, ser) ! Search maximum point wise fission source Relative Error + CALL RelEg(f0, f0c, fer) ! Search maximum point wise flux error + fn = get_time() + fdm_time = fdm_time + (fn-st) ! Get FDM time + if (MOD(p,nupd) == 0 .and. kern /= ' FDM') call nodal_upd(0, 2) ! Nodal coefficients update + if ((ser < serc) .AND. (fer < ferc) .AND. (ndmax < 1.e-2)) exit + end do + + if (p==nout+1) THEN + maxi = .TRUE. + ELSE + maxi = .FALSE. + end if + + + end subroutine outer_tr + + !****************************************************************************! + + subroutine get_exsrc(ht, exsrc) + + ! + ! Purpose: + ! To calculate paramaters from previous time step + ! + + USE sdata, ONLY: lamb, c0, iBeta, chi, mat, velo, & + fst, ft, nf, m, omeg, ng, nnod, dfis, nuf, & + bth, sth, s0, tbeta, sigrp, L + USE io, ONLY: bxtab + + ! Purpose: + ! To update get external source for transient fixed source problem + ! This external source is the terms that do not appear in .. + ! static calculation + + implicit none + + real(dp), intent(in) :: ht + real(dp), dimension(:,:), intent(out) :: exsrc + + real(dp) :: dt, dtp + integer :: n, i, g + real(dp) :: a1, a2, pxe, pthet + + if (bxtab == 1) then + dfis = 0._dp + do n = 1, nnod + dt = 0._dp; dtp = 0._dp + do i = 1, nf + pxe = exp(-m(mat(n))%lamb(i)*ht) + if (nuf(n,ng) > 0.) then + a1 = (1._dp - pxe) / (m(mat(n))%lamb(i)*ht) + else + a1 = 0._dp + end if + a2 = 1._dp - a1 + a1 = a1 - pxe + dfis(n) = dfis(n) + m(mat(n))%iBeta(i) * a2 + dt = dt + m(mat(n))%lamb(i) * c0(n,i) * pxe & + + m(mat(n))%iBeta(i) * a1 * fst(n) + dtp = dtp + m(mat(n))%lamb(i) * c0(n,i) + end do + + do g = 1, ng + pthet = -L(n,g) - sigrp(n,g) * ft(n,g) + s0(n,g) & + + (1._dp - tbeta(mat(n))) * chi(mat(n),g) * fst(n) & + + chi(mat(n),g) * dtp + exsrc(n,g) = chi(mat(n),g) * dt & + + exp(omeg(n,g) * ht) * ft(n,g) & + / (sth * m(mat(n))%velo(g) * ht) + bth * pthet + end do + end do + else + dfis = 0._dp + do n = 1, nnod + dt = 0._dp; dtp = 0._dp + do i = 1, nf + pxe = exp(-lamb(i)*ht) + a1 = (1._dp - pxe) / (lamb(i)*ht) + a2 = 1._dp - a1 + a1 = a1 - pxe + dfis(n) = dfis(n) + iBeta(i) * a2 + dt = dt + lamb(i) * c0(n,i) * pxe & + + iBeta(i) * a1 * fst(n) + dtp = dtp + lamb(i) * c0(n,i) + end do + + do g = 1, ng + pthet = -L(n,g) - sigrp(n,g) * ft(n,g) + s0(n,g) & + + (1._dp - tbeta(mat(n))) * chi(mat(n),g) * fst(n) & + + chi(mat(n),g) * dtp + exsrc(n,g) = chi(mat(n),g) * dt & + + exp(omeg(n,g) * ht) * ft(n,g) / (sth * velo(g) * ht) & + + bth * pthet + end do + end do + end if + + end subroutine get_exsrc + + !****************************************************************************! + + subroutine FSrc(fs) + ! + ! Purpose: + ! To calculate fission source and fission source moments + ! + + USE sdata, ONLY: nnod, nuf, ng, f0 + + implicit none + + real(dp), dimension(:), intent(out) :: fs + + integer :: n, g + + fs = 0._dp + do g = 1, ng + do n = 1, nnod + fs(n) = fs(n) + f0 (n,g) * nuf(n,g) + end do + end do + + END subroutine FSrc + + !******************************************************************************! + + subroutine FSrcAd(fs) + ! + ! Purpose: + ! To calculate fission source (adjoint) + ! + + USE sdata, ONLY: nnod, chi, mat, ng, f0 + + implicit none + + real(dp), dimension(:), intent(out) :: fs + + integer :: n, g + + fs = 0._dp + do g = 1, ng + do n = 1, nnod + fs(n) = fs(n) + f0 (n,g) * chi(mat(n),g) + end do + end do + + end subroutine FSrcAd + + !****************************************************************************! + + subroutine TSrc(g, Keff, bs) + ! + ! Purpose: + ! To update total source + ! + + USE sdata, ONLY: chi, mat, nnod, fs0, f0, ng, sigs, chi, s0, exsrc + + implicit none + + integer, intent(in) :: g + real(dp), intent(in) :: Keff + real(dp), dimension(:), intent(out) :: bs + + integer :: n, h + + s0 = 0._dp + do h = 1, ng + do n = 1, nnod + if (g /= h) s0(n,g) = s0(n,g) + sigs(n,h,g) * f0(n,h) + end do + end do + + do n = 1, nnod + bs(n) = chi(mat(n),g) * fs0(n)/Keff + s0(n,g) + exsrc(n,g) + end do + + end subroutine TSrc + + !******************************************************************************! + + subroutine TSrcAd(g, Keff, bs) + ! + ! Purpose: + ! To update total source (adjoint) + ! + + USE sdata, ONLY: nnod, fs0, f0, ng, sigs, nuf, s0, exsrc + + implicit none + + integer, intent(in) :: g + real(dp), intent(in) :: Keff + real(dp), dimension(:), intent(out) :: bs + + integer :: n, h + + s0 = 0._dp + do h = 1, ng + do n = 1, nnod + if (g /= h) s0(n,g) = s0(n,g) + sigs(n,g,h) * f0(n,h) + end do + end do + + do n = 1, nnod + bs(n) = nuf(n,g) * fs0(n)/Keff + s0(n,g) + exsrc(n,g) + end do + + end subroutine TSrcAd + + !****************************************************************************! + + subroutine TSrcTr(g, bs) + ! + ! Purpose: + ! To update total source for transient fixed source problem + ! + + USE sdata, ONLY: chi, mat, nnod, fs0, f0, ng, sigs, chi, exsrc, & + tbeta, s0, dfis + + implicit none + + integer, intent(in) :: g + real(dp), dimension(:), intent(out) :: bs + + integer :: n, h + + s0 = 0._dp + do h = 1, ng + do n = 1, nnod + if (g /= h) s0(n,g) = s0(n,g) + sigs(n,h,g) * f0(n,h) + end do + end do + + do n = 1, nnod + bs(n) = (1._dp - tbeta(mat(n)) + dfis(n)) * chi(mat(n),g) * fs0(n) & + + s0(n,g) + exsrc(n,g) + end do + + end subroutine TSrcTr + + !****************************************************************************! + + function l2norm(a) result(x) + + !purpose: to perform dot product + + real(dp), dimension(:), intent(in) :: a + real(dp) :: x ! resulting vector + + integer :: n + + x = 0._dp + do n = 1, size(a) + x = x + a(n)**2 + end do + + x = sqrt(x) + + end function l2norm + + !****************************************************************************! + + FUNCTION Integrate(s) RESULT(intg) + + ! + ! Purpose: + ! To perform volume integration + + USE sdata, ONLY: nnod, vdel + + implicit none + + real(dp), dimension (:), intent(in) :: s + real(dp) :: intg + integer :: n + + intg = 0. + do n = 1, nnod + intg = intg + vdel(n) * s(n) + end do + + end FUNCTION Integrate + + !******************************************************************************! + + subroutine RelE(newF, oldF, rel) + + ! + ! Purpose: + ! To calculate Max Relative error + + USE sdata, ONLY: nnod + + implicit none + + real(dp), dimension(:), intent(in) :: newF, oldF + real(dp), intent(out) :: rel + + real(dp) :: error + integer :: n + + rel = 0. + + do n= 1, nnod + if (ABS(newF(n)) > 1.e-10_DP) THEN + error = ABS(newF(n) - oldF(n)) / ABS(newF(n)) + if (error > rel) rel = error + end if + end do + + end subroutine RelE + + !******************************************************************************! + + subroutine RelEg(newF, oldF, rel) + + ! + ! Purpose: + ! To calculate Max Relative error for flux + + USE sdata, ONLY: nnod, ng + + implicit none + + real(dp), dimension(:,:), intent(in) :: newF, oldF + real(dp), intent(out) :: rel + + real(dp) :: error + integer :: n, g + + rel = 0. + + do n= 1, nnod + do g = 1, ng + if (ABS(newF(n,g)) > 1.d-10) THEN + error = ABS(newF(n,g) - oldF(n,g)) / ABS(newF(n,g)) + if (error > rel) rel = error + end if + end do + end do + + end subroutine RelEg + + !****************************************************************************! + + subroutine bicg(imax,g,b,x) + + !Purpose: to solve linear of system equation with BiCGSTAB method + ! (without preconditioner). Sparse matrix saved in a and indexed in rc. + ! a dimension is (#non_zero_elements) + ! rc dimension is (2,#non_zero_elements+1) + ! adapted from: + ! https://www.cfd-online.com/Wiki/Sample_code_for_BiCGSTAB_-_Fortran_90 + + implicit none + + integer, intent(in) :: imax, g ! Max. number of iteration and group number + real(dp), dimension(:), intent(in) :: b ! source + real(dp), dimension(:), intent(inout) :: x + + real(dp), dimension(size(b, dim=1)) :: r, rs, v, p, s, t + real(dp) :: rho , rho_prev + real(dp) :: alpha , omega , beta, theta + integer :: i + + r = b - sp_matvec(g,x) + rs = r + rho = 1.0_dp; alpha = 1.0_dp; omega = 1.0_dp + v = 0.0_dp; p = 0.0_dp + + do i = 1, imax + rho_prev = rho + rho = dproduct(rs,r) + beta = (rho/rho_prev) * (alpha/omega) + p = r + beta * (p - omega*v) + v = sp_matvec(g,p) + alpha = rho/dproduct(rs,v) + s = r - alpha*v + t = sp_matvec(g,s) + theta = dproduct(t,t) + omega = dproduct(t,s)/theta + x = x + alpha*p + omega*s + r = s - omega*t + end do + + end subroutine bicg + + !****************************************************************************! + + function sp_matvec(g,x) result(v) + + USE sdata, ONLY: A, ind, nnod + + !purpose: to perform matrix vector multiplication Axb. A is a square matrix. + ! Sparse matrix saved in A and indexed in ind + + integer, intent(in) :: g ! group number of FDM matrix + real(dp), dimension(:), intent(in) :: x ! vector + real(dp), dimension(size(x)) :: v ! resulting vector + + integer :: n + integer :: i + + v = 0._dp + do n = 1, nnod + do i = 1, ind(n)%ncol + v(n) = v(n) + A(n,g)%elmn(i)*x(ind(n)%col(i)) + end do + end do + + end function sp_matvec + + !****************************************************************************! + + function dproduct(a,b) result(x) + + !purpose: to perform dot product + + real(dp), dimension(:), intent(in) :: a, b ! vector + real(dp) :: x ! resulting vector + + integer :: n + + x = 0._dp + do n = 1, size(a) + x = x + a(n) * b(n) + end do + + end function dproduct + + !****************************************************************************! + + subroutine PowDis (p) + + ! + ! Purpose: + ! To calculate power distribution + ! + + + USE sdata, ONLY: ng, nnod, sigf, f0, vdel, mode + USE io, ONLY: ounit + + implicit none + + real(dp), dimension(:), intent(out) :: p + integer :: g, n + real(dp) :: tpow, pow + + p = 0._DP + do g= 1, ng + do n= 1, nnod + pow = f0(n,g) * sigf(n,g) * vdel(n) + if (pow < 0.) pow = 0. + p(n) = p(n) + pow + end do + end do + + ! Normalize to 1._DP + tpow = 0._DP + do n = 1, nnod + tpow = tpow + p(n) + end do + + if (tpow <= 0 .AND. mode /= 'FIXEDSRC') THEN + write(ounit, *) ' ERROR: TOTAL NODES POWER IS ZERO OR LESS' + write(ounit, *) ' STOP IN subroutine POWDIS' + STOP + end if + + do n = 1, nnod + p(n) = p(n) / tpow + end do + + + end subroutine PowDis + + !****************************************************************************! + +end module diff --git a/src/mod_control.f90 b/src/mod_control.f90 new file mode 100644 index 0000000..945eb2d --- /dev/null +++ b/src/mod_control.f90 @@ -0,0 +1,179 @@ +module control + + use sdata, only: dp + implicit none + save + +contains + + !******************************************************************************! + + SUBROUTINE forward() + + ! + ! Purpose: + ! To solve forward (normal) problems + ! + + use sdata, only: nnod, f0, aprad, apaxi, afrad, ftem, mtem, cden, bcon, bpos + use io, only: AsmPow, AxiPow, AsmFlux, inp_read + use xsec, only: XS_updt + use cmfd, only: outer, powdis + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), ALLOCATABLE :: pow + + !Update xsec + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + + call print_head() + + !Outer iteration + CALL outer(1) + + IF (aprad == 1 .OR. apaxi == 1) THEN + ALLOCATE(pow(nnod)) + CALL PowDis(pow) + END IF + + IF (aprad == 1) CALL AsmPow(pow) + + IF (apaxi == 1) CALL AxiPow(pow) + + IF (afrad == 1) CALL AsmFlux(f0, 1.e0_DP) + + + END SUBROUTINE forward + + !******************************************************************************! + + SUBROUTINE adjoint() + + ! + ! Purpose: + ! To solve adjoint problems + ! + + use sdata, only: nnod, f0, aprad, apaxi, afrad, ftem, mtem, cden, bcon, bpos + use io, only: AsmPow, AxiPow, AsmFlux, inp_read + use xsec, only: XS_updt + use cmfd, only: outer_ad, powdis + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), ALLOCATABLE :: pow + + !Update xsec + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + + call print_head() + + !Outer iteration + CALL outer_ad(1) + + IF (aprad == 1 .OR. apaxi == 1) THEN + ALLOCATE(pow(nnod)) + CALL PowDis(pow) + END IF + + IF (aprad == 1) CALL AsmPow(pow) + + IF (apaxi == 1) CALL AxiPow(pow) + + IF (afrad == 1) CALL AsmFlux(f0, 1.e0_DP) + + END SUBROUTINE adjoint + + !******************************************************************************! + + SUBROUTINE fixedsrc() + + ! + ! Purpose: + ! To solve fixed source problems + ! + + use sdata, only: nnod, f0, aprad, apaxi, afrad, ftem, mtem, cden, bcon, bpos + use io, only: AsmPow, AxiPow, AsmFlux, inp_read + use xsec, only: XS_updt + use cmfd, only: outer_fs, powdis + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), ALLOCATABLE :: pow + + !Update xsec + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + + call print_head() + + !Outer iteration + CALL outer_fs(1) + + IF (aprad == 1 .OR. apaxi == 1) THEN + ALLOCATE(pow(nnod)) + CALL PowDis(pow) + END IF + + IF (aprad == 1) CALL AsmPow(pow) + + IF (apaxi == 1) CALL AxiPow(pow) + + IF (afrad == 1) CALL AsmFlux(f0) + + END SUBROUTINE fixedsrc + + !******************************************************************************! + + SUBROUTINE print_head() + + ! + ! Purpose: + ! To print header + ! + + use sdata, only: mode + use io, only: ounit, scr + + IMPLICIT NONE + + if (mode == 'FORWARD' .or. mode == 'ADJOINT') then + WRITE(ounit,*); WRITE(ounit,*) + WRITE(ounit,3245); WRITE(ounit,3247); WRITE(ounit,3245) + WRITE(ounit,*) + WRITE(ounit,3248); WRITE(ounit,3249) + if (scr) then + WRITE(*,*); WRITE(*,*) + WRITE(*,3245); WRITE(*,3247); WRITE(*,3245) + WRITE(*,*) + WRITE(*,3248); WRITE(*,3249) + end if + else + WRITE(ounit,*); WRITE(ounit,*) + WRITE(ounit,3245); WRITE(ounit,3247); WRITE(ounit,3245) + WRITE(ounit,*) + WRITE(ounit,3248); WRITE(ounit,3249) + if (scr) then + WRITE(*,*); WRITE(*,*) + WRITE(*,3245); WRITE(*,3247); WRITE(*,3245) + WRITE(*,*) + WRITE(*,3250); WRITE(*,3249) + end if + end if + + + + 3245 format (1X, ' ==============================================', & + '================================') + 3247 format(27X,'CALCULATION RESULTS') + 3248 format(2X,'Itr k-eff Fis.Src Error Inner Error') + 3249 format(1X,'----------------------------------------------------') + 3250 format(2X,'Itr Fis.Src Error Inner Error') + + + END SUBROUTINE print_head + + + +end module diff --git a/src/mod_data.f90 b/src/mod_data.f90 new file mode 100644 index 0000000..d88b708 --- /dev/null +++ b/src/mod_data.f90 @@ -0,0 +1,219 @@ +MODULE sdata + +save + +integer, parameter :: dp = selected_real_kind(10, 15) + +CHARACTER(LEN=100) :: mode + +INTEGER :: ng ! number of groups +INTEGER :: nmat ! number of materials + +! XSECs Assigned to Nodes +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: sigtr ! Transport macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: siga ! Absorption macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: nuf ! nu* fission macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: sigf ! fission macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: chi ! neutron fission spectrum +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: sigs ! Scattering macroscopic XSEC +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: dc ! ADF +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: D ! Diffusion coefficient +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: sigr ! Removal macroscopic XSEC + +! XSECs Assigned to Materials +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: xsigtr ! Transport macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: xsiga ! Absorption macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: xnuf ! nu* fission macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: xsigf ! fission macroscopic XSEC +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: xD ! Diffusion coefficient +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: xsigr ! Removal macroscopic XSEC +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: xsigs ! Scattering macroscopic XSEC +LOGICAL :: ccnuf = .TRUE. ! Logical variable to check the presence of fissile material +LOGICAL :: ccsigf = .TRUE. ! Logical variable to check the presence of fissile material + +! Geometry +INTEGER :: nx, ny, nz ! Number of assemblies in x, y, and z directions +INTEGER :: nxx, nyy, nzz ! Number of nodes in x, y, and z directions +INTEGER :: nnod ! Number of nodes +INTEGER, DIMENSION(:), ALLOCATABLE :: ix, iy, iz +INTEGER, DIMENSION(:,:,:), ALLOCATABLE :: xyz +INTEGER, DIMENSION(:), ALLOCATABLE :: xdiv, ydiv, zdiv ! Assembly division +REAL(DP), DIMENSION(:), ALLOCATABLE :: xdel, ydel, zdel, vdel ! Delta x, y and z and nodes' volume in cm3 +INTEGER :: xwest, xeast, ysouth, ynorth, zbott, ztop ! Boundary conditions +INTEGER, DIMENSION(:), ALLOCATABLE :: mat ! Material assignment to nodes + +! FDM Matrix +TYPE :: FDM_MATR + REAL(DP), DIMENSION(:), ALLOCATABLE :: elmn ! Non-zero elements of FDM matrix for a row +END TYPE +TYPE(FDM_MATR), DIMENSION(:,:), ALLOCATABLE :: A ! FDM matrix +TYPE :: FDM_IND + INTEGER :: ncol ! Number of non-zero column in a row for the FDM Matrix + INTEGER, DIMENSION(:), ALLOCATABLE :: col ! Column index for the non-zero element of the FDM matrix +END TYPE +TYPE(FDM_IND), DIMENSION(:), ALLOCATABLE :: ind ! Index of the FDM matrix + +! Keff, flux and currents +REAL(DP) :: Ke +TYPE :: NODE_DATA + REAL(DP), DIMENSION(6) :: df ! FDM nodal coupling coefficients (X+,X-,Y+, Y-, Z+, Z-) + REAL(DP), DIMENSION(6) :: dn ! Corrected (higher order) nodal coupling coefficients (X+,X-,Y+, Y-, Z+, Z-) +END TYPE +TYPE(NODE_DATA), DIMENSION(:,:), ALLOCATABLE :: nod + +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: f0, ft ! current and previous Fluxes +REAL(DP), DIMENSION(:), ALLOCATABLE :: fs0, fst ! Fission source +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: c0 ! neutron precusor density +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: s0 ! neutron precusor density + +TYPE :: STAGGERED + INTEGER :: smax, smin ! imax and imin along x and y direction for staggered nodes +END TYPE +TYPE(STAGGERED), DIMENSION(:), ALLOCATABLE :: ystag, xstag + +! Extra Sources +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: exsrc + +! Iteration Control +REAL(DP) :: ferc = 1.e-5 ! Flux Error Criteria +REAL(DP) :: serc = 1.e-5 ! Fission source Error CRITERIA +REAL(DP) :: fer, ser ! Flux and Fission source error in BCSEARCH calcs. +INTEGER :: nin = 2 ! Maximum inner iteration +INTEGER :: nout = 500 ! Maximum outer iteration +INTEGER :: nac = 5 ! Fission source extrapolation interval +INTEGER :: th_niter = 30 ! Maximum number of thermal-hydraulics iteration +INTEGER :: nth = 20 ! Maximum number of outer iterations per thermal-hydraulics iteration +integer :: nupd ! Nodal update interval + +! OUTPUT PRINT OPTION +INTEGER :: aprad=1, apaxi=1, afrad=1 + +! FUEL TEMPERATURE +REAL(DP), DIMENSION(:), ALLOCATABLE :: ftem ! Fuel temperature in Kelvin for each nodes +REAL(DP) :: rftem ! Fuel temperature Reference in Kelvin +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: fsigtr, fsiga, fnuf, fsigf ! XSEC changes per fuel temp changes +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: fsigs + +! MODERATOR TEMPERATURE +REAL(DP), DIMENSION(:), ALLOCATABLE :: mtem ! Moderator temperature in Kelvin for each nodes +REAL(DP) :: rmtem ! Moderator temperature Reference in Kelvin +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: msigtr, msiga, mnuf, msigf ! XSEC changes per Moderator temp changes +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: msigs + +! COOLANT DENSITY +REAL(DP), DIMENSION(:), ALLOCATABLE :: cden ! Coolant Density in g/cm3 for each nodes +REAL(DP) :: rcden ! Coolant Density Reference in g/cm3 +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: lsigtr, lsiga, lnuf, lsigf ! XSEC changes per Coolant density changes +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: lsigs + +! Crod changes +INTEGER :: nb ! Number of CR banks +REAL(DP), DIMENSION(:), ALLOCATABLE :: bpos ! CR bank position +REAL(DP), DIMENSION(:), ALLOCATABLE :: fbpos ! Final CR bank position +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: dsigtr, dsiga, dnuf, dsigf ! XSEC incerement or decrement due to CR insertion +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: dsigs +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: ddc ! increment or decreent for ADF +REAL(DP), DIMENSION(:), ALLOCATABLE :: tmove ! Time when CR bank starts moving +REAL(DP), DIMENSION(:), ALLOCATABLE :: bspeed ! CR bank movement speed +INTEGER, DIMENSION(:), ALLOCATABLE :: mdir ! To indicate CR movement direction (0=do not move, 1=down, 2 = up) +REAL(DP) :: nstep ! Number of steps +REAL(DP) :: coreh ! Core Height +INTEGER, DIMENSION(:,:), ALLOCATABLE :: fbmap ! Radial control rod bank map (node wise) +REAL(DP) :: pos0, ssize ! Zero step position and step size + +! Boron Concentration +REAL(DP) :: bcon ! Boron concentration in ppm +REAL(DP) :: rbcon ! Boron concentration in ppm Reference +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: csigtr, csiga, cnuf, csigf ! XSEC changes due to boron concentration +REAL(DP), DIMENSION(:,:,:), ALLOCATABLE :: csigs ! Used only for CBCS card + +! Transient parameters +INTEGER, PARAMETER :: nf = 6 ! Number of delayed neutron precusor family +REAL(DP) :: sth = 1._dp, bth = 0._dp ! Small theta and big theta for transient using theta method +REAL(DP), DIMENSION(nf) :: ibeta, lamb ! beta (delayed neutron fraction) and precusor decay constant +REAL(DP), DIMENSION(:), ALLOCATABLE :: tbeta ! total beta +REAL(DP) :: ctbeta ! Core averaged +REAL(DP), DIMENSION(:), ALLOCATABLE :: velo ! Neutron velocity +REAL(DP) :: ttot ! TOTAL SIMULATION TIME +REAL(DP) :: tstep1 ! FIRST TIME STEP +REAL(DP) :: tstep2 ! SECOND TIME STEP +REAL(DP) :: tdiv ! WHEN SECOND TIME STEP APPLY +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: omeg ! Exponential transformation constant +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: sigrp ! Initial removal cross sections before added by parameters required for transient +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: L ! Total leakages for node n and group g +REAL(DP), DIMENSION(:), ALLOCATABLE :: dfis +LOGICAL :: tranw = .FALSE. ! To activate unconverged outer iteration warning + +! Thermal-hydraulics parameters +REAL(DP) :: pow ! Reactor power for given geometry (watt) +REAL(DP) :: ppow ! Reactor percent power in percent +REAL(DP) :: tpow ! Total reactor power +REAL(DP), DIMENSION(:), ALLOCATABLE :: npow ! nodes power (watt) +REAL(DP) :: tin ! coolant inlet temperature (kelvin) +REAL(DP) :: cflow ! Sub-channel mass flow rate (kg/s) +REAL(DP) :: rf, tg, tc, ppitch ! Fuel meat radius, gap thickness, clad thickness, and pin picth (m) +REAL(DP) :: rg, rc ! Outer radius of gap and cladding +REAL(DP) :: dia, dh, farea ! Pi diameter, Hydraulic diameter (m) and sub-channel area (m2) +REAL(DP) :: cf ! heat fraction deposited into coolant +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: node_nf ! Number of fuel pin per node +INTEGER, PARAMETER :: nm = 10 ! number of Fuel meat mesh +INTEGER, PARAMETER :: nt = nm+2 ! Number Total mesh (+2 mesh for gap and clad) +REAL(DP), DIMENSION(:,:), ALLOCATABLE :: tfm ! Fuel pin mesh temperature for each nodes +REAL(DP), DIMENSION(:), ALLOCATABLE :: rdel ! mesh delta +REAL(DP), DIMENSION(:), ALLOCATABLE :: rpos ! mesh position +REAL(DP) :: th_err ! Doppler error +REAL(DP), DIMENSION(:), ALLOCATABLE :: ent ! Coolant Enthalpy (J/Kg) +REAL(DP), DIMENSION(:), ALLOCATABLE :: heatf ! Heat flux (W/m2 +REAL(DP), DIMENSION(:), ALLOCATABLE :: frate ! coolant mass flow rate +INTEGER, PARAMETER :: thunit = 300 ! Unit number to open steam table file +REAL(DP), PARAMETER :: pi = 3.14159265 + +! Steam Table data +INTEGER, PARAMETER:: ntem = 9 ! Number of temperature in steam table +REAL(DP), DIMENSION(ntem,6) :: stab ! Steam table matrixs + +! Data type for branch xsec data used if XTAB file present +TYPE :: XBRANCH + REAL(DP), DIMENSION(:), ALLOCATABLE :: sigtr, siga, nuf, sigf !XSEC + REAL(DP), DIMENSION(:,:), ALLOCATABLE :: sigs + REAL(DP), DIMENSION(:,:), ALLOCATABLE :: dc !ASSEMBLY DISCONTINUITY FACTOR +END TYPE +! Data Type to store data in XTAB file +TYPE :: MBRANCH + INTEGER :: nd, nb, nf, nm ! BRANCH PARAMETER DIMENSION (Coolant dens., boron conc., fuel and moderator temp.) + REAL(DP), DIMENSION(:), ALLOCATABLE :: pd, pb, pf, pm !Branch paramaters (Coolant dens., boron conc., fuel and moderator temp.) + TYPE(XBRANCH), DIMENSION(:,:,:,:), ALLOCATABLE :: xsec !Unrodded XSEC + TYPE(XBRANCH), DIMENSION(:,:,:,:), ALLOCATABLE :: rxsec !Rodded XSEC + REAL(DP), DIMENSION(:), ALLOCATABLE :: velo ! Neutron velocity + REAL(DP), DIMENSION(nf) :: ibeta, lamb ! beta and decay constant + INTEGER :: tadf !Control input: adf + INTEGER :: trod !Control input: control rod +END TYPE +TYPE(MBRANCH), DIMENSION(:), ALLOCATABLE :: m + + +! CMFD +real(dp), dimension(:), allocatable :: a1n, a2n, a3n, a4n ! Nodal expansion coefficients for current node +real(dp), dimension(:), allocatable :: a1p, a2p, a3p, a4p ! Nodal expansion coefficients for following node +real(dp), dimension(:), allocatable :: Ln1, Lp1 ! First Transverse leakages moments +real(dp) :: ndmax ! Maximum nodal coupling coefficients +character(len=4) :: kern = 'SANM' +integer :: im, jm, km + +!Timing +real(dp) :: fdm_time = 0., nod_time = 0., xs_time = 0., & +inp_time = 0., th_time = 0. + +contains + + function get_time() result (time) + + implicit none + + real(dp) :: time + + call cpu_time(time) + + end function + +END MODULE sdata diff --git a/src/mod_io.f90 b/src/mod_io.f90 new file mode 100644 index 0000000..09ec36e --- /dev/null +++ b/src/mod_io.f90 @@ -0,0 +1,4089 @@ +MODULE io + +!========================= +! Input output module to read, process and echo input, as well as writing output +! ======================= + +USE sdata, ONLY: DP + +IMPLICIT NONE + +SAVE + +! ind is sed to read x indicator in beginning of input buffer line. +! This to prevent reading next line +CHARACTER(LEN=1) :: ind + +CHARACTER(LEN=200) :: message ! error message +CHARACTER(LEN=200):: iline ! Input line +!Ouput options +LOGICAL, PARAMETER :: ogeom = .TRUE. ! Geometry output print option +LOGICAL, PARAMETER :: oxsec = .TRUE. ! Macroscopic CXs output print option +LOGICAL, PARAMETER :: scr = .TRUE. ! Terminal ouput print option + +! Input, output and buffer input file unit number +INTEGER, PARAMETER :: iunit = 100 !input file unit number +INTEGER, PARAMETER :: ounit = 101 !output file unit number +INTEGER, PARAMETER :: buff = 99 !input buffer file unit number (entire input) + +! Input buffer file unit number for each card +INTEGER, PARAMETER :: umode = 111, uxsec = 112, ugeom = 113, ucase = 114 +INTEGER, PARAMETER :: uesrc = 115, uiter = 118, uprnt = 119, uadf = 120 +INTEGER, PARAMETER :: ucrod = 121, ubcon = 122, uftem = 123, umtem = 124 +INTEGER, PARAMETER :: ucden = 125, ucbcs = 126, uejct = 127, uther = 128 +INTEGER, PARAMETER :: uxtab = 129, ukern = 130, uextr = 131, uthet = 132 +INTEGER :: bunit + +! Card active/inactive indicator (active = 1, inactive = 0) +INTEGER :: bmode = 0, bxsec = 0, bgeom = 0, bcase = 0, besrc = 0 +INTEGER :: biter = 0, bprnt = 0, badf = 0, bcrod = 0, bbcon = 0 +INTEGER :: bftem = 0, bmtem = 0, bcden = 0, bcbcs = 0, bejct = 0 +INTEGER :: bther = 0, bxtab = 0, bkern = 0, bextr = 0, bthet = 0 + +! This declaration is to notify that the error in separated card file (in case so) +INTEGER, PARAMETER :: ncard = 20 ! Number of card +INTEGER, DIMENSION(ncard) :: uarr = & ! Array of buffer unit number +(/umode, uxsec, ugeom, ucase, uesrc, uiter, uprnt, uadf, ucrod, ubcon, & + uftem, umtem, ucden, ucbcs, uejct, uther, uxtab, ukern, uextr, uthet /) +CHARACTER(LEN=4), DIMENSION(ncard) :: carr = & ! Array of card name +(/'MODE', 'XSEC', 'GEOM', 'CASE', 'ESRC', 'ITER', 'PRNT', 'ADF ', 'CROD', 'BCON', & + 'FTEM', 'MTEM', 'CDEN', 'CBCS', 'EJCT', 'THER', 'XTAB', 'KERN', 'EXTR', 'THET' /) +CHARACTER(LEN=100), DIMENSION(:), ALLOCATABLE :: farr ! Array of card file + +! Geometry +INTEGER :: np ! Number of planars +INTEGER, DIMENSION(:), ALLOCATABLE :: zpln ! Planar assignment to z direction +REAL(DP), DIMENSION(:), ALLOCATABLE :: xsize, ysize, zsize !Assembly size for each direction +TYPE :: MAT_ASGN ! Material assignment + INTEGER, DIMENSION(:,:), ALLOCATABLE :: asm ! Material assignment into assembly + INTEGER, DIMENSION(:,:), ALLOCATABLE :: node ! Material assignment into nodes +END TYPE +TYPE(MAT_ASGN), DIMENSION(:), ALLOCATABLE :: plnr ! planar +INTEGER, DIMENSION(:,:,:), ALLOCATABLE :: mnum + + +CONTAINS + +!******************************************************************************! + +SUBROUTINE inp_read() +! +! Purpose: +! [Main subroutine in this module] To read input, echo the +! input and gives the description +! to the user about his/her input +! + + +USE sdata, ONLY: ng, nnod, mode, dc, exsrc + +IMPLICIT NONE + +INTEGER :: g, i, N +CHARACTER(LEN=100) :: iname, oname + +!Got this trick from: http://web.utah.edu/thorne/computing/Handy_Fortran_Tricks.pdf +N = IARGC() +IF (N < 1) THEN + WRITE(*,*) ' NOTE : You can also write the input directly after the command' + WRITE(*,'(A,A100)',ADVANCE='NO') ' INPUT NAME : ' + READ(*,*) iname +ELSE + CALL GETARG(1,iname) !Grab the first command line argument +ENDIF + +iname = TRIM(iname) + +CALL openFIle (iunit, iname, 'input', 'Input File Open Failed--status') + +oname = TRIM(iname) // '.out' +oname = TRIM(oname) + +OPEN (UNIT=ounit, FILE=oname, STATUS='REPLACE', ACTION='WRITE') + +OPEN (UNIT=umode, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uxsec, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ugeom, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ucase, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uesrc, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uiter, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uprnt, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uadf, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ucrod, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ubcon, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uftem, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=umtem, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ucden, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ucbcs, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uejct, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uther, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uxtab, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=ukern, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uextr, STATUS='SCRATCH', ACTION='READWRITE') +OPEN (UNIT=uthet, STATUS='SCRATCH', ACTION='READWRITE') + +! By default, card file names are the input file name +ALLOCATE (farr(ncard)); farr = ADJUSTL(iname) + +! Echo the input to the output file +CALL inp_echo() + +! Remove comments and write the entire input to the buffer file +CALL inp_comments (iunit, buff, '!') + +! Break the buffer file and re-write into different input card buffer +CALL inp_rewrite(buff) + +! Back to the first line for all input card buffer +REWIND(umode); REWIND(uxsec); REWIND(ugeom); REWIND(ucase); REWIND(uesrc) +REWIND(uiter); REWIND(uprnt); REWIND(uadf); REWIND(ucrod); REWIND(ubcon) +REWIND(uftem); REWIND(umtem); REWIND(ucden); REWIND(ucbcs); REWIND(uejct) +REWIND(uther); REWIND(uxtab); REWIND(ukern); REWIND(uextr); REWIND(uthet) + +! Start reading buffer files for each input card buffer + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,1008) +WRITE(ounit,*) & +' ******************************************************************************' + +! Card MODE +IF (bmode == 1) THEN + CALL inp_mode(umode) +ELSE + WRITE(ounit,1021) '%MODE' + STOP +END IF + +! Card CASE +IF (bcase == 1) CALL inp_case (ucase) + +! Card %KERN +if (bkern==1) then + call inp_kern(ukern) +else + if (scr) then + WRITE(*,*) + WRITE(*,*) ' NODAL KERNEL : SEMI-ANALYTIC NODAL METHOD' + end if +end if + +! Card XSEC +IF (bxsec == 1) THEN + CALL inp_xsec(uxsec) +ELSE IF (bxtab == 1) THEN + CALL inp_xtab(uxtab) +ELSE + WRITE(ounit,1021) '%XSEC OR %XTAB' + WRITE(*,1021) '%XSEC OR %XTAB' + STOP +END IF + +! Card GEOM +IF (bgeom == 1) THEN + CALL inp_geom1(ugeom) + CALL inp_geom2(ugeom) +ELSE + WRITE(ounit,1021) '%GEOM' + WRITE(*,1021) '%GEOM' + STOP +END IF + +! Card PRNT +IF (bprnt == 1) CALL inp_prnt (uprnt) + +! Card CBCS +IF (mode == 'BCSEARCH' .AND. bcbcs == 1) THEN + CALL inp_cbcs(ucbcs) +ELSE IF (mode == 'BCSEARCH' .AND. bcbcs == 0 .AND. bxtab == 0) THEN + WRITE(ounit,*) ' ERROR: CALCULATION MODE IS CRITICAL BORON CONCENTRATION SEARCH' + WRITE(ounit,1041) 'CBCS', 'CRITICAL BORON CONCENTRATION SEARCH' + WRITE(*,*) ' ERROR: CALCULATION MODE IS CRITICAL BORON CONCENTRATION SEARCH' + WRITE(*,1041) 'CBCS', 'CRITICAL BORON CONCENTRATION SEARCH' + STOP +ELSE IF (mode /= 'BCSEARCH' .AND. bcbcs == 1) THEN + WRITE(ounit,*) ' ERROR: CBCS CARD IS NOT NECESSARY FOR THIS CALCULATION MODE' + WRITE(*,*) ' ERROR: CBCS CARD IS NOT NECESSARY FOR THIS CALCULATION MODE' + STOP +ELSE IF (mode == 'BCSEARCH' .AND. bbcon == 1) THEN + WRITE(ounit,*) ' ERROR: BCON CARD MUST NOT PRESENT FOR THIS CALCULATION MODE' + WRITE(*,*) ' ERROR: BCON CARD MUST NOT PRESENT FOR THIS CALCULATION MODE' + STOP +ELSE + CONTINUE +END IF + +IF (mode == 'BCSEARCH' .AND. bxtab == 1 .AND. bther == 0) THEN + WRITE(ounit,*) ' ERROR: THER CARD MUST BE PRESENT IN THIS PROBLEM' + WRITE(*,*) ' ERROR: THER CARD MUST BE PRESENT IN THIS PROBLEM' + STOP +END IF + + +!CARD CROD +IF (bcrod == 1) CALL inp_crod (ucrod) + +! Card EJCT (Rod Ejection) +IF (mode == 'RODEJECT' .AND. bejct == 1 .AND. bcrod == 1) THEN + CALL inp_ejct(uejct) +ELSE IF (mode == 'RODEJECT' .AND. bejct /= 1) THEN + WRITE(ounit,*) ' CALCULATION MODE ROD EJECTION' + WRITE(ounit,1041) 'EJCT', 'ROD EJECTION - TRANSIENT' + WRITE(*,*) ' CALCULATION MODE ROD EJECTION' + WRITE(*,1041) 'EJCT', 'ROD EJECTION - TRANSIENT' + STOP +ELSE IF (mode == 'RODEJECT' .AND. bcrod /= 1) THEN + WRITE(ounit,*) ' CALCULATION MODE ROD EJECTION' + WRITE(ounit,1041) 'CROD', 'CONTROL ROD' + WRITE(*,*) ' CALCULATION MODE ROD EJECTION' + WRITE(*,1041) 'CROD', 'CONTROL ROD' + STOP +ELSE IF (mode /= 'RODEJECT' .AND. bejct == 1) THEN + WRITE(ounit,*) ' EJCT CARD IS NOT NECESSARY FOR THIS CALCULATION MODE' + WRITE(*,*) ' EJCT CARD IS NOT NECESSARY FOR THIS CALCULATION MODE' + STOP +ELSE + CONTINUE +END IF + +! Miscellaneous things +CALL misc() + +! Card ITER +IF (biter == 1) CALL inp_iter (uiter) + +! Card THET +IF (bthet == 1) CALL inp_thet (uthet) + +!!CARD THER +IF (bther == 1 .AND. mode == 'FORWARD') THEN + WRITE(ounit,*)' ERROR: %THER CARD NOT VALID FOR FORWARD CALCULATION MODE' + WRITE(*,*)' ERROR: %THER CARD NOT VALID FOR FORWARD CALCULATION MODE' + STOP +ELSE IF (bther == 1 .AND. mode == 'FIXEDSRC') THEN + WRITE(ounit,*)' ERROR: %THER CARD NOT VALID FOR FIXED SOURCE CALCULATION MODE' + WRITE(*,*)' ERROR: %THER CARD NOT VALID FOR FIXED SOURCE CALCULATION MODE' + STOP +ELSE IF (bther == 1 .AND. mode == 'ADJOINT') THEN + WRITE(ounit,*)' ERROR: %THER CARD NOT VALID FOR ADJOINT CALCULATION MODE' + WRITE(*,*)' ERROR: %THER CARD NOT VALID FOR ADJOINT CALCULATION MODE' + STOP +ELSE IF (bther == 1 .AND. bftem == 1 .AND. (bmtem ==1 .OR. bcden == 1)) THEN + CALL inp_ther (uther) +ELSE IF (bther == 1 .AND. bxtab == 1) THEN + CALL inp_ther (uther) +ELSE IF (bther == 0) THEN + CONTINUE +ELSE + IF (bxtab /= 1) THEN + WRITE(ounit,*)' ERROR: WHEN %THER CARD PRESENT %FTEM AND,' // & + 'AT LEAST ONE OF THE FOLLOWING CARDS MUST PRESENT' + WRITE(ounit,*)' 1. %MTEM 2. %CDEN' + WRITE(*,*)' ERROR: WHEN %THER CARD PRESENT %FTEM AND,' // & + 'AT LEAST ONE OF THE FOLLOWING CARDS MUST PRESENT' + WRITE(*,*)' 1. %MTEM 2. %CDEN' + STOP + END IF +END IF + +if (bextr == 1) call inp_extr() + +!!CARD BCON +IF (bbcon == 1 .AND. bxtab == 0) CALL inp_bcon (ubcon) +IF (bbcon == 1 .AND. bxtab == 1 .AND. mode == 'RODEJECT') CALL inp_bcon (ubcon) + +!!CARD FTEM +IF (bftem == 1 .AND. bxtab == 0) CALL inp_ftem (uftem) + +!!CARD MTEM +IF (bmtem == 1 .AND. bxtab == 0) CALL inp_mtem (umtem) + +!!CARD CDEN +IF (bcden == 1 .AND. bxtab == 0) CALL inp_cden (ucden) + + +!CARD ADF +allocate(dc(nnod,ng,6)) +DO g = 1, ng + DO n = 1, nnod + dc(n,g,1:) = 1._dp !by default, adf = 1 + END DO +END DO + +IF (badf == 1 .AND. bxtab == 0) THEN + CALL inp_adf (uadf) +ELSE IF (badf == 1 .AND. bxtab == 1) THEN + WRITE(ounit,*) ' BOTH %ADF AND %XTAB CARDS CANNOT PRESENT TOGETHER' + WRITE(*,*) ' BOTH %ADF AND %XTAB CARDS CANNOT PRESENT TOGETHER' + STOP +ELSE + CONTINUE +END IF + +! Card ESRC +ALLOCATE(exsrc(nnod, ng)) ! For transient or rod ejection problem, this used to +exsrc = 0._DP ! store transient terms +IF (mode == 'FIXEDSRC' .AND. besrc == 1) THEN + CALL inp_esrc(uesrc) +ELSE IF (mode == 'FIXEDSRC' .AND. besrc /= 1) THEN + WRITE(ounit,*) ' CALCULATION MODE IS FIXED SOURCE' + WRITE(ounit,1041) 'ESRC', 'FIXED SOURCE' + WRITE(*,*) ' CALCULATION MODE IS FIXED SOURCE' + WRITE(*,1041) 'ESRC', 'FIXED SOURCE' + STOP +ELSE IF (mode /= 'FIXEDSRC' .AND. besrc == 1) THEN + WRITE(ounit,*) ' ESRC CARD IS NOT NECESSARY FOR THIS CALCULATION MODE' + WRITE(*,*) ' ESRC CARD IS NOT NECESSARY FOR THIS CALCULATION MODE' + STOP +ELSE + CONTINUE +END IF + + + +DEALLOCATE(mnum) +DO i= 1,np + DEALLOCATE(plnr(i)%asm) + DEALLOCATE(plnr(i)%node) +END DO +DEALLOCATE(plnr) +DEALLOCATE(zpln) + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) & +' ************************', ' STOP READING INPUT ', '********************************' + +1008 FORMAT (30X, 'START READING INPUT') +1021 FORMAT(2X, 'CARD ', A, ' DOES NOT PRESENT. THIS CARD IS MANDATORY') +1041 FORMAT(2X, 'CARD ', A, ' DOES NOT PRESENT. THIS CARD IS MANDATORY FOR ', A,' CALCULATION MODE') + + +CLOSE(UNIT=umode); CLOSE(UNIT=uxsec); CLOSE(UNIT=ugeom); CLOSE(UNIT=ucase) +CLOSE(UNIT=uesrc); CLOSE(UNIT=uiter); CLOSE(UNIT=uprnt); CLOSE(UNIT=uadf) +CLOSE(UNIT=ucrod); CLOSE(UNIT=ubcon); CLOSE(UNIT=uftem); CLOSE(UNIT=umtem) +CLOSE(UNIT=ucden); CLOSE(UNIT=ucbcs); CLOSE(UNIT=uejct); CLOSE(UNIT=uther) +CLOSE(UNIT=uxtab); CLOSE(UNIT=ukern); CLOSE(UNIT=uextr); CLOSE(UNIT=uthet) +CLOSE(UNIT=buff) + + +END SUBROUTINE inp_read + +!******************************************************************************! + +SUBROUTINE openFile(iunit, iname, file, message) + +INTEGER :: iunit +CHARACTER(LEN=*) :: iname, file, message +INTEGER :: iost + +OPEN (UNIT=iunit, FILE=iname, STATUS='OLD', ACTION='READ', & + IOSTAT = iost) + +IF (iost /= 0) THEN + WRITE(*,1020) message, iost + WRITE(*,*) ' CANNOT FIND '// file //' FILE : ', iname + 1020 FORMAT (2X, A, I6) + STOP +END IF + +END SUBROUTINE openFile + +!******************************************************************************! + +SUBROUTINE inp_echo() +! +! Purpose: +! To rewrite the input +! + +IMPLICIT NONE + +INTEGER :: eof +INTEGER :: nline + +WRITE(ounit, 2409) +WRITE(ounit, 2411) +WRITE(ounit, 2412) +WRITE(ounit, 2409) +WRITE(ounit, *) +WRITE(ounit, *) + +if (scr) then + WRITE(*, *) + WRITE(*, *) + WRITE(*, 2409) + WRITE(*, 2411) + WRITE(*, 2412) + WRITE(*, 2409) + WRITE(*, *) + WRITE(*, *) +end if + + +WRITE(ounit,1002) 'STARTS' + +nline = 0 +DO + READ(iunit, '(A200)', IOSTAT=eof) iline + nline = nline + 1 + IF (eof < 0) THEN + WRITE(ounit,1002) 'ENDS' + WRITE(ounit,*) + EXIT + END IF + WRITE(ounit, 1001) nline, iline +END DO + +2409 FORMAT(11X, '###########################################################') +2411 FORMAT(11X, '# ADPRES 1.2 #') +2412 FORMAT(11X, '# ABU DHABI POLYTECHNIC REACTOR SIMULATOR #') + +1001 FORMAT (2X, I4, ': ', A200) +1002 FORMAT (2X, '=============================INPUT DATA',A7, & + ' HERE===========================') +REWIND (iunit) + +END SUBROUTINE inp_echo + +!******************************************************************************! + +SUBROUTINE inp_comments (inunit, buffer, mark) +! +! Purpose: +! To remove the comments in input and rewrite the +! input into input buffer. Comments marked by !. +! + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: inunit, buffer +CHARACTER(LEN=*), INTENT(IN) :: mark + +INTEGER :: ln ! line number +INTEGER :: eof, comm + +OPEN (UNIT=buffer, STATUS='SCRATCH', ACTION='READWRITE') + +! Start removing comments and rewrite into one input buffer +ln = 0 +DO + ln = ln+1 + READ (inunit, '(A200)', IOSTAT=eof) iline + IF (eof < 0) EXIT !Check end of file + iline = TRIM(ADJUSTL(iline)) ! Remove trailing blanks and adjust to left + comm = INDEX(iline, mark) ! Find position '!' if any + ! If there is no '!' and no first 20 blank spaces (in case line is blank) + IF (comm == 0 .AND. iline(1:20) /= ' ') THEN + WRITE(buffer,1012)'x ',ln,iline + END IF + !If the first character is not '!' + IF (comm > 1) THEN + iline = iline(1:comm-1) ! Take only part of input + WRITE(buffer,1012)'x ',ln, iline + END IF +END DO + +REWIND(buffer) + +1012 FORMAT(A2, I5,' ',A200) + +END SUBROUTINE inp_comments + +!******************************************************************************! + +SUBROUTINE inp_rewrite (buffer) + +! Purpose: +! Read previous input buffer and rewrite and break into different input buffer +! for particular cards. Cards identfied by % + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: buffer + +INTEGER :: ln ! line number +INTEGER :: eof, per, comm +CHARACTER(LEN=100) :: fname ! Card File name +CHARACTER(LEN=4) :: card ! Card name +INTEGER, PARAMETER :: cunit = 996 !XTAB file unit number +INTEGER, PARAMETER :: xunit = 997 !XTAB Buffer unit number + +DO + per = 0 + READ (buffer, '(A2,I5,A200)', IOSTAT=eof) ind, ln, iline + IF (eof < 0) EXIT !Check end of file + + ! If the card is placed in a separated file as indicated by keyword FILE + IF (INDEX(iline,'FILE') > 0 .OR. INDEX(iline,'file') > 0) then + BACKSPACE(buffer) + READ (buffer, '(A2,I5,A200)') ind, ln, iline + iline = ADJUSTL(iline) ! Adjust to left + comm = INDEX(iline, ' ') ! Get space position + fname = TRIM(ADJUSTL(iline(comm+1:200))) ! Get card file name + farr(GETLOC(uarr, bunit)) = fname ! Change default file name for error notification + CALL openFile(xunit, fname, card, 'CARD File Open Failed--status') ! Open card file + CALL inp_comments(xunit, cunit, '!') ! Remove comments in card file + ! Begin read card in a separated file + DO + READ (cunit, '(A2,I5,A200)', IOSTAT=eof) ind, ln, iline + IF (eof < 0) EXIT !Check end of file + WRITE(bunit, 1019) 'x ',ln, iline ! 'x' used to prevent reading next line + END DO + CLOSE(xunit); CLOSE(cunit) + END IF + + per = INDEX(iline,'%') + IF (per > 0) THEN ! IF %card detected + iline = iline(per+1:200) + iline = TRIM(ADJUSTL(iline)) + card = iline + SELECT CASE (iline) + CASE('MODE'); bunit = umode; bmode = 1 + CASE('XSEC'); bunit = uxsec; bxsec = 1 + CASE('GEOM'); bunit = ugeom; bgeom = 1 + CASE('CASE'); bunit = ucase; bcase = 1 + CASE('ESRC'); bunit = uesrc; besrc = 1 + CASE('ITER'); bunit = uiter; biter = 1 + CASE('PRNT'); bunit = uprnt; bprnt = 1 + CASE('ADF') ; bunit = uadf ; badf = 1 + CASE('CROD'); bunit = ucrod; bcrod = 1 + CASE('EJCT'); bunit = uejct; bejct = 1 + CASE('CBCS'); bunit = ucbcs; bcbcs = 1 + CASE('FTEM'); bunit = uftem; bftem = 1 + CASE('MTEM'); bunit = umtem; bmtem = 1 + CASE('CDEN'); bunit = ucden; bcden = 1 + CASE('BCON'); bunit = ubcon; bbcon = 1 + CASE('THER'); bunit = uther; bther = 1 + CASE('XTAB'); bunit = uxtab; bxtab = 1 + CASE('KERN'); bunit = ukern; bkern = 1 + CASE('EXTR'); bunit = uextr; bextr = 1 + CASE('THET'); bunit = uthet; bthet = 1 + CASE DEFAULT + WRITE(ounit,1014) ln, iline + WRITE(*,1014) ln, iline + STOP + END SELECT + END IF + ! Write input buffer for each card + IF (per == 0) WRITE(bunit, 1019) 'x ',ln, iline ! 'x' used to prevent reading next line +END DO + +1014 FORMAT(2X, 'AT LINE', I3, ' : THIS IS A WRONG INPUT CARD : ', A8) +1019 FORMAT(A2, I5,' ',A200) + +END SUBROUTINE inp_rewrite + +!******************************************************************************! + +SUBROUTINE inp_mode (xbunit) +! +! Purpose: +! To read case mode in input +! + +USE sdata, ONLY: mode + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status +CHARACTER(LEN=60) :: mode_desc + +READ(xbunit, '(A2, I5,A100)', IOSTAT=ios) ind, ln, mode +message = ' error in reading MODE' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + + +mode = TRIM(ADJUSTL(mode)) ! ADJUSTL = MOVE PRECEDING BLANK TO TRAILING + +SELECT CASE(mode) +CASE('FORWARD') + mode_desc = TRIM(ADJUSTL('FORWARD CALCULATION')) +CASE('ADJOINT') + mode_desc = TRIM(ADJUSTL('ADJOINT CALCULATION')) +CASE('FIXEDSRC') + mode_desc = TRIM(ADJUSTL('FIXED SOURCE CALCULATION')) +CASE('RODEJECT') + if (bther == 0) then + mode_desc = TRIM(ADJUSTL('ROD EJECTION CALCULATION WITHOUT T-H FEEDBACK')) + else + mode_desc = TRIM(ADJUSTL('ROD EJECTION CALCULATION WITH T-H FEEDBACK')) + end if +CASE('BCSEARCH') + if (bther == 0) then + mode_desc = TRIM(ADJUSTL('CRITICAL BORON CONCENTRATION SEARCH' & + // ' WITHOUT T-H FEEDBACK')) + else + mode_desc = TRIM(ADJUSTL('CRITICAL BORON CONCENTRATION SEARCH' & + // ' WITH T-H FEEDBACK')) + end if +CASE DEFAULT + WRITE(ounit,1032) mode + WRITE(*,1032) mode + STOP +END SELECT + +WRITE(ounit,1031) mode_desc +WRITE(ounit,*) +if (scr) then + WRITE(*,1031) mode_desc + WRITE(*,*) +end if + +1031 FORMAT(2X, 'CALCULATION MODE : ', A60) +1032 FORMAT(2X, 'MODE : ', A10, ' IS UNIDENTIFIED') + +END SUBROUTINE inp_mode + +!******************************************************************************! + +SUBROUTINE inp_case (xbunit) +! +! Purpose: +! To read case card in input +! + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +CHARACTER(LEN=100) :: case_id +CHARACTER(LEN=100) :: case_exp + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +READ(xbunit, '(A2, I5,A100)', IOSTAT=ios) ind, ln, case_id +message = ' error in CASE ID' +CALL er_message(ounit, ios, ln, message, buf=xbunit) +READ(xbunit, '(A2, I5,A100)', IOSTAT=ios) ind, ln, case_exp +message = ' error in case description' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +case_id = TRIM(ADJUSTL(case_id)) +case_exp = TRIM(ADJUSTL(case_exp)) + +WRITE(ounit,1006) case_id +WRITE(ounit,1007) case_exp +if (scr) then + WRITE(*,1006) case_id + WRITE(*,1007) case_exp +end if +1006 FORMAT(2X, 'CASE ID : ', A100) +1007 FORMAT(2X, A100) + +END SUBROUTINE inp_case + +!******************************************************************************! + +SUBROUTINE inp_xsec (xbunit) +! +! Purpose: +! To read CROSS SECTIONS card in input +! + +USE sdata, ONLY: nmat, ng, xsigtr, xsiga, xnuf, xsigf, & + xsigs, xD, xsigr, chi, mode, ccnuf, ccsigf + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: i, g, h +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status +REAL(DP) :: dum +INTEGER, DIMENSION(:), ALLOCATABLE :: group +INTEGER :: comm1, comm2 + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING MACROSCOPIC CROSS SECTIONS <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +READ(xbunit, *, IOSTAT=ios) ind, ln, ng, nmat +message = ' error in material number' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + + +ALLOCATE(group(ng)) +DO g = 1,ng + group(g) = g +END DO + +ALLOCATE(xsigtr(nmat,ng)) +ALLOCATE(xsiga (nmat,ng)) +ALLOCATE(xnuf (nmat,ng)) +ALLOCATE(xsigf (nmat,ng)) +ALLOCATE(xsigs (nmat,ng,ng)) +ALLOCATE(xD (nmat,ng)) +ALLOCATE(xsigr (nmat,ng)) +ALLOCATE(chi (nmat,ng)) + +! To ancticipate users make mistake when they use %XTAB instead of %XSEC +READ(xbunit, '(A200)') iline +comm1 = INDEX(iline, '/') +comm2 = INDEX(iline, '\') +IF (comm1 > 0 .OR. comm2 > 0) THEN + WRITE(ounit, *) ' ERROR: SLASH (/) OR BACKSLASH (\) NOT ACCEPTED IN %XSEC CARD ' + WRITE(*, *) ' ERROR: SLASH (/) OR BACKSLASH (\) NOT ACCEPTED IN %XSEC CARD ' + STOP +END IF +BACKSPACE(xbunit) + +! Reading MACROSCOPIC CXs +DO i= 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, xsigtr(i,g), & + xsiga(i,g), xnuf(i,g), xsigf(i,g), & + chi(i,g), (xsigs(i,g,h), h = 1, ng) + message = ' error in cross section data' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + + ! Check CXs values + IF (xsigtr(i,g) <= 0.0) THEN + WRITE(ounit,1020)i, g + STOP + END IF + IF (xnuf(i,g) > 0.) ccnuf = .FALSE. + IF (xsigf(i,g) > 0.) ccsigf = .FALSE. + + xD(i,g) = 1./(3.*xsigtr(i,g)) + dum = 0.0 + DO h= 1, ng + IF (g /= h) dum = dum + xsigs(i,g,h) + END DO + xsigr(i,g) = xsiga(i,g) + dum + END DO +END DO + + +! Writing output +IF (oxsec) THEN + DO i= 1, nmat + WRITE(ounit,*) + WRITE(ounit,1009) i + WRITE(ounit,1011)'GROUP', 'TRANSPORT', 'DIFFUSION', 'ABSORPTION', & + 'REMOVAL', 'NU*FISS', 'KAP*FIS','FISS. SPCTR' + DO g= 1, ng + WRITE(ounit,1010) g, xsigtr(i,g), xD(i,g), xsiga(i,g), & + xsigr(i,g), xnuf(i,g), xsigf(i,g), chi(i,g) + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1015)g, (xsigs(i,g,h), h=1,ng) + END DO + END DO +END IF + +IF (ccnuf .AND. mode /= 'FIXEDSRC') THEN + WRITE(ounit, *) "ERROR: The Problem has no fission material (nu*fission for all materials are zero)" + STOP +END IF +IF (ccsigf .AND. mode /= 'FIXEDSRC') THEN + WRITE(ounit, *) "ERROR: The Problem has no fission material (fission xsec for all materials are zero)" + STOP +END IF + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Macroscopic CX Card is successfully read...' + +1009 FORMAT(5X, 'MATERIAL', I3) +1011 FORMAT(2X, A7, A12, A11, A12, A9, A11, A11, A14) +1010 FORMAT(2X, I6, F13.6, F10.6, F11.6, F12.6, 2F11.6, F10.6) +1015 FORMAT(4X, I3, F16.6, 20F12.6) +1020 FORMAT(2X, 'ERROR: Transport cross section (sigtr)is zero or negative in material: ', I3, ' ;group: ', I3) + +DEALLOCATE(group) +DEALLOCATE(xD, xsigr) + +END SUBROUTINE inp_xsec + +!******************************************************************************! + +SUBROUTINE inp_geom1 (xbunit) +! +! Purpose: +! To read geometry card in input (1st part) +! + +USE sdata, ONLY: nx, ny, nz, nxx, nyy, nzz, xdel, ydel, zdel, & + xdiv, ydiv, zdiv + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln, ios + +INTEGER :: i, j, k, lx, ly, lz, xtot, ytot, ztot +REAL(DP) :: div + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING CORE GEOMETRY<<<<<' +WRITE(ounit,*) ' -------------------------------' + +! Read number of assemblies in x, y and z directions +READ(xbunit, *, IOSTAT=ios) ind, ln, nx, ny, nz +message = ' error in reading number assemblies' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! Limit values of nx, ny and nz +IF (nx < 2) THEN + WRITE(ounit,*) ' Error: nx shall be at least 2' + STOP +END IF +IF (ny < 2) THEN + WRITE(ounit,*) ' Error: ny shall be at least 2' + STOP +END IF +IF (nz < 2) THEN + WRITE(ounit,*) ' Error: nz shall be at least 2' + STOP +END IF +IF (nx > 33) THEN + WRITE(ounit,*) ' Error: nx shall be maximum 33' + STOP +END IF +IF (ny > 33) THEN + WRITE(ounit,*) ' Error: ny shall be maximum 33' + STOP +END IF +IF (nz > 40) THEN + WRITE(ounit,*) ' Error: nz shall be maximum 40' + STOP +END IF + +ALLOCATE(xsize(nx), ysize(ny), zsize(nz)) +ALLOCATE(xdiv(nx), ydiv(ny), zdiv(nz)) + +! Read assembly sizes and assembly division in x, y and z directions +! x-direction +READ(xbunit, *, IOSTAT=ios) ind, ln, (xsize(i), i=1,nx) +message = ' error in reading x-direction assembly sizes' +CALL er_message(ounit, ios, ln, message, buf=xbunit) +READ(xbunit, *, IOSTAT=ios) ind, ln, (xdiv(i), i=1,nx) +message = ' error in reading x-direction assembly division' +CALL er_message(ounit, ios, ln, message, buf=xbunit) +! y-direction +READ(xbunit, *, IOSTAT=ios) ind, ln, (ysize(j), j=1,ny) +message = ' error in reading y-direction assembly sizes' +CALL er_message(ounit, ios, ln, message, buf=xbunit) +READ(xbunit, *, IOSTAT=ios) ind, ln, (ydiv(j), j=1,ny) +message = ' error in reading y-direction assembly division' +CALL er_message(ounit, ios, ln, message, buf=xbunit) +! z-direction +READ(xbunit, *, IOSTAT=ios) ind, ln, (zsize(k), k=1,nz) +message = ' error in reading z-direction assembly sizes' +CALL er_message(ounit, ios, ln, message, buf=xbunit) +READ(xbunit, *, IOSTAT=ios) ind, ln, (zdiv(k), k=1,nz) +message = ' error in reading z-direction assembly division' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +!Calculate number of nodes in x, y and z directions +!x-direction +nxx=0 +DO i= 1,nx + nxx = nxx+xdiv(i) +END DO +!y-direction +nyy=0 +DO j= 1,ny + nyy = nyy+ydiv(j) +END DO +!z-direction +nzz=0 +DO k= 1,nz + nzz = nzz+zdiv(k) +END DO + +! Limit values of nxx, nyy and nzz +IF (nxx > 800) THEN + WRITE(ounit,*) ' Error: nxx shall be maximum 800' + WRITE(*,*) ' Error: nxx shall be maximum 800' + STOP +END IF +IF (nyy > 800) THEN + WRITE(ounit,*) ' Error: nyy shall be maximum 800' + WRITE(*,*) ' Error: nyy shall be maximum 800' + STOP +END IF +IF (nzz > 800) THEN + WRITE(ounit,*) ' Error: nzz shall be maximum 800' + WRITE(*,*) ' Error: nzz shall be maximum 800' + STOP +END IF + +ALLOCATE(xdel(nxx), ydel(nyy), zdel(nzz)) + +!Calculate delta x, y, and z (node sizes) +!Delta x +xtot=0 +DO i= 1,nx + div = xsize(i)/REAL(xdiv(i)) + DO lx= 1, xdiv(i) + xtot = xtot+1 + xdel(xtot) = div + END DO +END DO +!Delta y +ytot=0 +DO j= 1,ny + div = ysize(j)/REAL(ydiv(j)) + DO ly= 1, ydiv(j) + ytot = ytot+1 + ydel(ytot) = div + END DO +END DO +!Delta z +ztot=0 +DO k= 1,nz + div = zsize(k)/REAL(zdiv(k)) + DO lz= 1, zdiv(k) + ztot = ztot+1 + zdel(ztot) = div + END DO +END DO + +END SUBROUTINE inp_geom1 + +!******************************************************************************! + +SUBROUTINE inp_geom2 (xbunit) +! +! Purpose: +! To read geometry card in input (2nd part) +! + +USE sdata, ONLY: nx, ny, nz, nxx, nyy, nzz, xdel, ydel, zdel, & + xwest, xeast, ynorth, ysouth, zbott, ztop, nnod, & + xstag, ystag, xdiv, ydiv, zdiv, nmat, coreh + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln, ios + +INTEGER :: i, j, k, lx, ly, lz, xtot, ytot, ztot +CHARACTER(LEN=2), DIMENSION(nxx, nyy) :: mmap +INTEGER, PARAMETER :: xm = 36 +INTEGER :: ip, ipr, kp +INTEGER :: xs, xf + +! Reading number of planar +READ(xbunit, *, IOSTAT=ios) ind, ln, np +message = ' error in reading number of planars' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +!Reading planar assignment into z-direction +ALLOCATE(zpln(nz)) +READ(xbunit, *, IOSTAT=ios) ind, ln, (zpln(k), k=1,nz) +message = ' error in reading planar assignment' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +DO k = 1, nz + IF (zpln(k) > np) THEN + WRITE(ounit,'(2X,A15,I3,A35)') 'ERROR: PLANAR ', & + zpln(k), ' IS GREATER THAN NUMBER OF PLANAR' + STOP + END IF + IF (zpln(k) < 1) THEN + WRITE(ounit,'(2X,A)') 'ERROR: PLANAR SHOULD BE AT LEAST 1' + STOP + END IF +END DO + +! Reading material assignment for each planar +ALLOCATE(plnr(np)) +DO k= 1,np + ALLOCATE(plnr(k)%asm (nx,ny)) + ALLOCATE(plnr(k)%node(nxx,nyy)) + DO j= ny, 1, -1 + READ(xbunit, *, IOSTAT=ios) ind, ln, (plnr(k)%asm(i,j), i=1,nx) + message = ' error in reading planar' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO +END DO + +! Material assignment into nodes (not part for geom output) +ALLOCATE (mnum(nxx, nyy, nzz)) + +ztot = 0 +DO k= 1, nz + DO lz= 1, zdiv(k) + ztot = ztot+1 + ytot = 0 + DO j= 1, ny + DO ly= 1, ydiv(j) + ytot = ytot+1 + xtot = 0 + DO i= 1, nx + DO lx= 1, xdiv(i) + xtot = xtot+1 + mnum(xtot, ytot, ztot) = plnr(zpln(k))%asm(i,j) + IF (mnum(xtot, ytot, ztot) > nmat) THEN + WRITE(ounit,'(2X,A17,I3,A37)') 'ERROR: MATERIAL ', & + mnum(xtot, ytot, ztot), ' IS GREATER THAN NUMBER OF MATERIAL' + WRITE(*,'(2X,A17,I3,A37)') 'ERROR: MATERIAL ', & + mnum(xtot, ytot, ztot), ' IS GREATER THAN NUMBER OF MATERIAL' + STOP + END IF + IF (mnum(xtot, ytot, ztot) < 0) THEN + WRITE(ounit,'(2X,A)') 'ERROR: NEGATIVE MATERIAL FOUND' + WRITE(*,'(2X,A)') 'ERROR: NEGATIVE MATERIAL FOUND' + STOP + END IF + END DO + END DO + END DO + END DO + END DO +END DO + +! Assign assembly wise planar to node wise planar for output +ztot = 0 +DO k= 1, np + ytot = 0 + DO j= 1, ny + DO ly= 1, ydiv(j) + ytot = ytot+1 + xtot = 0 + DO i= 1, nx + DO lx= 1, xdiv(i) + xtot = xtot+1 + plnr(k)%node(xtot,ytot) = plnr(k)%asm(i,j) + END DO + END DO + END DO + END DO +END DO + +! -Indexing non zero material for staggered mesh- +ALLOCATE(ystag(nyy), xstag(nxx)) +!Indexing non zero material for staggered mesh along y direction +DO j= 1, nyy + ystag(j)%smin = nxx + DO i = 1, nxx + IF (mnum(i,j,1) /= 0) THEN + ystag(j)%smin = i + EXIT + END IF + END DO +END DO + +DO j= 1, nyy + ystag(j)%smax = 0 + DO i = nxx, 1, -1 + IF (mnum(i,j,1) /= 0) THEN + ystag(j)%smax = i + EXIT + END IF + END DO +END DO + +!Indexing non zero material for staggered mesh along x direction +DO i= 1, nxx + xstag(i)%smin = nyy + DO j = 1, nyy + IF (mnum(i,j,1) /= 0) THEN + xstag(i)%smin = j + EXIT + END IF + END DO +END DO + +DO i= 1, nxx + xstag(i)%smax = 0 + DO j = nyy, 1, -1 + IF (mnum(i,j,1) /= 0) THEN + xstag(i)%smax = j + EXIT + END IF + END DO +END DO + +! Checking zero material between non-zero material +DO k = 1, nzz + DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + IF (mnum(i,j,k) == 0) THEN + WRITE(ounit,*) 'Zero material found inside core. Check material assignment' + STOP + END IF + END DO + END DO +END DO +DO k = 1, nzz + DO i = 1, nxx + DO j = xstag(i)%smin, xstag(i)%smax + IF (mnum(i,j,k) == 0) THEN + WRITE(ounit,*) 'Zero material found inside core. Check material assignment' + STOP + END IF + END DO + END DO +END DO + +!Reading Boundary Conditions +READ(xbunit, *, IOSTAT=ios) ind, ln, xeast, xwest, ynorth, ysouth, zbott, ztop +message = ' error in reading boundary conditions' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +IF (xeast > 2 .OR. xwest > 2 .OR. ynorth > 2 .OR. ysouth > 2 & +.OR. zbott > 2 .OR. ztop > 2) then + write(*,1019) ln + stop +END IF + + +! Wrting core geometry output +IF (ogeom) THEN + WRITE(ounit,*)' Number of assembly in x, y and z directions respectively :' + WRITE(ounit,*) nx, ny, nz + WRITE(ounit,*)' Number of nodes in x, y and z directions respectively :' + WRITE(ounit,*) nxx, nyy, nzz + WRITE(ounit,*) + WRITE(ounit,1016) 'x','x' + WRITE(ounit,'(2X,10F7.2)')(xdel(i), i=1,nxx) + WRITE(ounit,1016) 'y','y' + WRITE(ounit,'(2X,10F7.2)')(ydel(j), j=1,nyy) + WRITE(ounit,*) + + IF (nxx < 100) THEN + ip = nxx/xm + ipr = MOD(nxx,xm) - 1 + DO k= 1,np + + DO j = 1, nyy + DO i = 1, nxx + IF (plnr(k)%node(i,j) == 0) THEN + mmap(i,j) = ' ' + ELSE + WRITE (mmap(i,j),'(I2)') plnr(k)%node(i,j) + mmap(i,j) = TRIM(ADJUSTL(mmap(i,j))) + END IF + END DO + END DO + + WRITE(ounit,1017) k + xs = 1; xf = xm + DO kp = 1, ip + WRITE(ounit,'(6X,100I3)') (i, i = xs, xf) + DO j= nyy, 1, -1 + WRITE(ounit,'(2X,I4,1X,100A3)') j, (mmap(i,j), i=xs, xf) + END DO + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(6X,100I3)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= nyy, 1, -1 + WRITE(ounit,'(2X,I4,1X,100A3)') j, (mmap(i,j), i=xs, xs+ipr) + END DO + END IF + END DO + END IF + + WRITE(ounit,*) + WRITE(ounit,1018) + WRITE(ounit,*) '--------------------------------------' + WRITE(ounit,*) ' Plane Number Planar Region delta-z' + ztot = nzz + DO k= nz, 1, -1 + DO lz= 1, zdiv(k) + IF (ztot == nzz) THEN + WRITE(ounit,'(I9, A6, I13, F15.2)') ztot, ' (TOP)', zpln(k), zdel(ztot) + ELSE IF (ztot == 1) THEN + WRITE(ounit,'(I9, A9, I10, F15.2)') ztot, ' (BOTTOM)', zpln(k), zdel(ztot) + ELSE + WRITE(ounit,'(I9, I19, F15.2)') ztot, zpln(k), zdel(ztot) + END IF + ztot = ztot - 1 + END DO + END DO + WRITE(ounit,*) + WRITE(ounit,*) ' Boundary conditions' + + IF (xwest == 0) THEN + WRITE(ounit,*)' X-directed West : ZERO FLUX' + ELSE IF (xwest == 1) THEN + WRITE(ounit,*)' X-directed West : ZERO INCOMING CURRENT' + ELSE + WRITE(ounit,*)' X-directed West : REFLECTIVE' + END IF + + IF (xeast == 0) THEN + WRITE(ounit,*)' X-directed East : ZERO FLUX' + ELSE IF (xeast == 1) THEN + WRITE(ounit,*)' X-directed East : ZERO INCOMING CURRENT' + ELSE + WRITE(ounit,*)' X-directed East : REFLECTIVE' + END IF + + IF (ynorth == 0) THEN + WRITE(ounit,*)' Y-directed North : ZERO FLUX' + ELSE IF (ynorth == 1) THEN + WRITE(ounit,*)' Y-directed North : ZERO INCOMING CURRENT' + ELSE + WRITE(ounit,*)' Y-directed North : REFLECTIVE' + END IF + + IF (ysouth == 0) THEN + WRITE(ounit,*)' Y-directed South : ZERO FLUX' + ELSE IF (ysouth == 1) THEN + WRITE(ounit,*)' Y-directed South : ZERO INCOMING CURRENT' + ELSE + WRITE(ounit,*)' Y-directed South : REFLECTIVE' + END IF + + IF (zbott == 0) THEN + WRITE(ounit,*)' Z-directed Bottom : ZERO FLUX' + ELSE IF (zbott == 1) THEN + WRITE(ounit,*)' Z-directed Bottom : ZERO INCOMING CURRENT' + ELSE + WRITE(ounit,*)' Z-directed Bottom : REFLECTIVE' + END IF + + IF (ztop == 0) THEN + WRITE(ounit,*)' Z-directed Top : ZERO FLUX' + ELSE IF (ztop == 1) THEN + WRITE(ounit,*)' Z-directed Top : ZERO INCOMING CURRENT' + ELSE + WRITE(ounit,*)' Z-directed Top : REFLECTIVE' + END IF +END IF + + +1016 FORMAT(2X,A,'-directed nodes division (delta-',A,')') +1017 FORMAT(3X, 'Material Map for Planar Region : ', I2) +1018 FORMAT(2X, 'Planar Region Assignment to planes.') +1019 FORMAT(2X, 'ERROR: Wrong boundary conditions in line : ', I4) + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Core geometry is successfully read...' + +! Calculate core height +coreh = 0._DP +DO k = 1, nzz + coreh = coreh + zdel(k) +END DO + +! set Number of nodes (nnod) +nnod = 0 +DO k = 1, nzz + DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + nnod = nnod + 1 + END DO + END DO +END DO + +END SUBROUTINE inp_geom2 + +!******************************************************************************! + +SUBROUTINE misc () +! +! Purpose: +! To assign material xsec to nodes +! To arranges the nodes into 1-D array instead of 3-D array +! To allocate CMFD matrix index +! etc + + +USE sdata, ONLY: nxx, nyy, nzz, ix, iy, iz, xyz, & + nnod, sigtr, siga, nuf, sigf, & + sigs, D, sigr, ng, ystag, xstag, & + xdel, ydel, zdel, vdel, nupd, & + mat, ind + +IMPLICIT NONE + +INTEGER :: i, j, k, n, noz + +ALLOCATE(ix(nnod), iy(nnod), iz(nnod)) +ALLOCATE(xyz(nxx, nyy, nzz)) +ALLOCATE(mat(nnod)) + +! Set ix, iy, iz and xyz +n = 0 +xyz = 0 +DO k = 1, nzz ! VERY IMPORTANT: NEVER CHANGE THE ORDERS OF THESE NESTED LOOPS + DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + n = n + 1 + ix(n) = i + iy(n) = j + iz(n) = k + xyz(i,j,k) = n + mat(n) = mnum(i,j,k) + END DO + END DO +END DO + +ALLOCATE(sigtr(nnod,ng)) +ALLOCATE(siga (nnod,ng)) +ALLOCATE(nuf (nnod,ng)) +ALLOCATE(sigf (nnod,ng)) +ALLOCATE(sigs (nnod,ng,ng)) +ALLOCATE(D (nnod,ng)) +ALLOCATE(sigr (nnod,ng)) + +! Calculate nodes' volume +ALLOCATE(vdel(nnod)) +DO i = 1, nnod + vdel(i) = xdel(ix(i)) * ydel(iy(i)) * zdel(iz(i)) +END DO + +! Calculate number of non-zero element in the CMFD Matrix +ALLOCATE(ind(nnod)) +do n = 1, nnod + noz = 0 + i = ix(n); j = iy(n); k = iz(n) ! Set i, j, k + if (k /= 1) noz = noz + 1 + if (j /= xstag(i)%smin) noz = noz + 1 + if (i /= ystag(j)%smin) noz = noz + 1 + noz = noz + 1 + if (i /= ystag(j)%smax) noz = noz + 1 + if (j /= xstag(i)%smax) noz = noz + 1 + if (k /= nzz) noz = noz + 1 + ind(n)%ncol = noz + ALLOCATE(ind(n)%col(noz)) +end do + +! calaculate default nodal update interval +nupd = ceiling((nxx + nyy + nzz) / 2.5) + +END SUBROUTINE misc + +!******************************************************************************! + +SUBROUTINE inp_esrc (xbunit) +! +! Purpose: +! To read extra sources if any +! + +USE sdata, ONLY: exsrc, ng, nx, ny, nz, & + xdiv, ydiv, zdiv, xyz + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln, ios ! line number and IOSTAT status +INTEGER :: g, i, j, k, n +INTEGER :: xt, yt, zt +INTEGER :: it, jt, kt +INTEGER :: nsrc +REAL(DP) :: sden ! Source density +REAL(DP), DIMENSION(:), ALLOCATABLE :: spec ! Source Spectrum +CHARACTER(LEN=1), DIMENSION(:,:), ALLOCATABLE :: spos ! Source position +INTEGER :: xpos, ypos, zpos +REAL(DP) :: summ + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING EXTRA SOURCE<<<<<' +WRITE(ounit,*) ' -------------------------------' + +! Read number of source +READ(xbunit, *, IOSTAT=ios) ind, ln, nsrc +message = ' error in reading number of extra source' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +ALLOCATE(spec(ng), spos(nx,ny)) + +DO n = 1, nsrc + ! Read source density + READ(xbunit, *, IOSTAT=ios) ind, ln, sden + message = ' error in reading source density' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + + IF (sden <= 0.0) THEN + WRITE(ounit,*) ' ERROR: SOURCE DENSITY SHALL BE GREATER THAN ZERO' + STOP + END IF + + ! Read source spectrum + READ(xbunit, *, IOSTAT=ios) ind, ln, (spec(g), g = 1, ng) + message = ' error in reading source spectrum' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + + ! Is total spectrum = 1._DP? + summ = 0._DP + DO g = 1, ng + summ = summ + spec(g) + END DO + ! Check total spectrum + IF (ABS(summ - 1._DP) > 1.e-5_DP) THEN + WRITE(ounit,*) 'TOTAL SOURCE SPECTRUM AT LINE', ln, ' IS NOT EQUAL TO 1._DP' + STOP + END IF + + ! WRITE OUTPUT + WRITE(ounit,'(A12,I3)') ' SOURCE ', n + WRITE(ounit,*) '-----------------' + WRITE(ounit,'(A20,ES10.3, A11)') ' Source Density : ', sden, ' n/(m^3*s)' + WRITE(ounit,'(A19,100F6.2)') ' Source Spectrum : ', (spec(g), g = 1, ng) + WRITE(ounit,*) ' Source Position ' + + ! Read source position + DO + READ(xbunit, *, IOSTAT=ios) ind, ln, zpos + message = ' error in reading axial position (zpos) of extra source' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + IF (zpos < 1) EXIT + IF (zpos > nz) THEN + WRITE(ounit,* ) ' ERROR: WRONG EXTRA SOURCES POSITION (ZPOS)' + WRITE(ounit, 2033) ln, zpos + STOP + END IF + spos = '0' + DO + READ(xbunit, *, IOSTAT=ios) ind, ln, xpos, ypos + message = ' error in reading radial position (xpos and ypos) of extra source' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + IF (xpos < 1 .OR. ypos < 1) EXIT + + IF (xpos > nx) THEN + WRITE(ounit,* ) ' ERROR: WRONG EXTRA SOURCES POSITION (XPOS)' + WRITE(ounit, 2033) ln, xpos, ypos + STOP + END IF + + IF (ypos > ny) THEN + WRITE(ounit,* ) ' ERROR: WRONG EXTRA SOURCES POSITION (YPOS)' + WRITE(ounit, 2033) ln, xpos, ypos + STOP + END IF + + spos(xpos,ypos) = 'X' + + zt = 0 + kt = 1 + DO k = 1, zpos + IF (k > 1) kt = zt + 1 + zt = zt + zdiv(k) + END DO + + yt = 0 + jt = 1 + DO j = 1, ypos + IF (j > 1) jt = yt + 1 + yt = yt + ydiv(j) + END DO + + xt = 0 + it = 1 + DO i = 1, xpos + IF (i > 1) it = xt + 1 + xt = xt + xdiv(i) + END DO + + DO k = kt, zt + DO j = jt, yt + DO i = it, xt + DO g = 1, ng + exsrc(xyz(i,j,k), g) = exsrc(xyz(i,j,k), g) + & + sden * spec(g) + END DO + END DO + END DO + END DO + + END DO + + WRITE(ounit,'(A18,I3)') ' Plane number : ', zpos + WRITE(ounit,'(7X,100I3)') (i, i = 1, nx) + DO j = ny, 1, -1 + WRITE(ounit,'(4X,I3, 100A3 )') j, (spos(i,j), i=1, nx) + END DO + WRITE(ounit,*) + END DO +END DO + +2033 FORMAT(2X,'LINE', I4, ' : ', I3, I3) + +DEALLOCATE(spec, spos) + +END SUBROUTINE inp_esrc + +!******************************************************************************! + +SUBROUTINE inp_iter (xbunit) + +! +! Purpose: +! To read iteration control if any + +USE sdata, ONLY: nout, nin, serc, ferc, nac, nupd, th_niter, nth, kern + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +READ(xbunit, *, IOSTAT=ios) ind, ln, nout, nin, serc, ferc, nac, nupd, & +th_niter, nth +message = ' error in reading iteration control' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING ITERATION CONTROL<<<<<' +WRITE(ounit,*) ' ------------------------------------' + +WRITE(ounit,'(A,I5)') ' MAXIMUM NUMBER OF OUTER ITERATION : ', nout +WRITE(ounit,'(A,I5)') ' MAXIMUM NUMBER OF INNER ITERATION : ', nin +WRITE(ounit,'(A,ES12.3)') ' FISSION SOURCE ERROR CRITERIA : ', serc +WRITE(ounit,'(A,ES12.3)') ' FLUX ERROR CRITERIA : ', ferc +WRITE(ounit,'(A,I5)') ' OUTER ITERATION FISSION SOURCE EXTRAPOLATION INTERVAL : ', nac +WRITE(ounit,'(A,I5)') ' NODAL UPDATE INTERVAL : ', nupd +WRITE(ounit,'(A,I5)') ' MAX. NUMBER OF T-H ITERATION : ', th_niter +WRITE(ounit,'(A,I5)') ' MAX. NUMBER OF OUTER ITERATION PER T-H ITERATION : ', nth + +if (nout < nupd .and. kern /= ' FDM') then + write(*,*) "ERROR: MAX. NUMBER OF OUTER ITERATION SHOULD BE BIGGER THAN NODAL UPDATE INTERVAL" + write(ounit,*) "ERROR: MAX. NUMBER OF OUTER ITERATION SHOULD BE BIGGER THAN NODAL UPDATE INTERVAL" + stop +end if + +if (nth < nupd .and. kern /= ' FDM' .and. bther == 1) then + write(*,*) "ERROR: MAX. NUMBER OF OUTER ITERATION PER T-H ITERATION SHOULD BE BIGGER THAN NODAL UPDATE INTERVAL" + write(ounit,*) "ERROR: MAX. NUMBER OF OUTER ITERATION PER T-H ITERATION SHOULD BE BIGGER THAN NODAL UPDATE INTERVAL" + stop +end if + + +END SUBROUTINE inp_iter + +!******************************************************************************! + +SUBROUTINE inp_extr () + +! +! Purpose: +! To tell user the flux transformation is active + +IMPLICIT NONE + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING FLUX TRANSFORMATION<<<<<' +WRITE(ounit,*) ' -------------------------------------' +WRITE(ounit,1571) + +1571 format (2X, 'EXPONENTIAL FLUX TRANSFORMATION IS ACTIVE') + +END SUBROUTINE inp_extr + +!******************************************************************************! + +SUBROUTINE inp_kern (xbunit) + +! +! Purpose: +! To determine nodal kernel + +USE sdata, ONLY: kern + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status +CHARACTER (LEN=30) :: kern_desc + + +READ(xbunit, *, IOSTAT=ios) ind, ln, kern +message = ' error in reading iteration control' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +kern = TRIM(ADJUSTR(kern)) +if (kern /= ' FDM' .and. kern /= ' PNM' .and. kern /= 'SANM') then + write(*,1646) kern + write(*,*) ' NODAL KERNEL OPTIONS: FDM, PNM OR SANM' + write(ounit,1646) kern + write(ounit,*) ' NODAL KERNEL OPTIONS: FDM, PNM OR SANM' + stop +end if + +if (kern == ' FDM') then + kern_desc = "FINITE DIFFERENCE METHOD" +else if (kern == ' PNM') then + kern_desc = "POLYNOMIAL NODAL METHOD" +else + kern_desc = "SEMI-ANALYTIC NODAL METHOD" +end if +kern_desc = TRIM(ADJUSTL(kern_desc)) + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING NODAL KERNEL<<<<<' +WRITE(ounit,*) ' ------------------------------------' + +WRITE(ounit,1648) kern_desc +if (scr) then + WRITE(*,*) + WRITE(*,1648) kern_desc +end if + +1646 format (2X, 'ERROR: COULD NOT RECOGNIZE NODAL KERNEL: ', A4) +1648 format (2X, 'NODAL KERNEL : ', A30) + +END SUBROUTINE inp_kern + +!******************************************************************************! + +SUBROUTINE inp_thet (xbunit) + +! +! Purpose: +! To read iteration theta value for transient problem + +USE sdata, ONLY: sth, bth + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +READ(xbunit, *, IOSTAT=ios) ind, ln, sth +message = ' error in theta in %THETA card' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +if (sth < 0.001) then + write(*,*) + write(*,*) "ERROR: THETA VALUE IS TOO SMALL" + stop +end if +if (sth > 1.0) then + write(*,*) + write(*,*) "ERROR: THETA VALUE SHALL NOT GREATER THAT 1.0" + stop +end if +bth = (1._dp - sth) / sth + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING THETA CARD<<<<<' +WRITE(ounit,*) ' ------------------------------------' + +WRITE(ounit,'(A,F6.2)') ' THETA IS : ', sth + + +END SUBROUTINE inp_thet + +!******************************************************************************! + +SUBROUTINE inp_prnt (xbunit) + +! +! Purpose: +! To read output print option if any + +USE sdata, ONLY: aprad, apaxi, afrad + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +CHARACTER(LEN=3) :: caprad='YES', capaxi='YES', cafrad='YES' + +READ(xbunit, *, IOSTAT=ios) ind, ln, aprad, apaxi, afrad +message = ' error in reading output print option' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +IF (aprad == 0) caprad='NO' +IF (apaxi == 0) capaxi='NO' +IF (afrad == 0) cafrad='NO' + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING OUTPUT PRINT OPTION<<<<<' +WRITE(ounit,*) ' -------------------------------------' + +WRITE(ounit,'(A,A)') ' RADIAL ASSEMBLY POWER DISTRIBUTION : ', caprad +WRITE(ounit,'(A,A)') ' AXIAL ASSEMBLY POWER DISTRIBUTION : ', capaxi +WRITE(ounit,'(A,A)') ' RADIAL FLUX POWER DISTRIBUTION : ', cafrad + + +END SUBROUTINE inp_prnt + +!******************************************************************************! + +SUBROUTINE inp_adf (xbunit) + +! +! Purpose: +! To read ADF values if any + +USE sdata, ONLY: ng, nmat, nx, ny, nz, nxx, nyy, nzz, & + xdiv, ydiv, zdiv, xyz, ystag, dc + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +TYPE :: ADF_TYPE + REAL(DP), DIMENSION(6) :: dc +END TYPE +TYPE(ADF_TYPE), DIMENSION(nmat,ng) :: mdc +TYPE(ADF_TYPE), DIMENSION(nx,ny,nz,ng) :: xdc +TYPE(ADF_TYPE), DIMENSION(nxx,nyy,nzz,ng) :: xxdc + +INTEGER :: g, i, j, k, u +INTEGER :: rot, x1, x2, y1, y2, z1, z2 +INTEGER :: xtot, ytot, ztot +INTEGER :: lz, ly, lx +INTEGER, DIMENSION(nx+1) :: tx +INTEGER, DIMENSION(ny+1) :: ty +INTEGER, DIMENSION(nz+1) :: tz +INTEGER :: zp +CHARACTER(LEN=6), DIMENSION(nx, ny) :: cadf +INTEGER, PARAMETER :: xm = 12 +INTEGER :: ip, ipr +INTEGER :: xs, xf + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>>>READING ASSEMBLY DISCONTINUITY FACTOR<<<<<' +WRITE(ounit,*) ' -----------------------------------------------' + +DO i = 1, nmat + DO g = 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, (mdc(i,g)%dc(j), j = 1, 6) + message = ' error in reading Assembly Discontinuity Factor (ADF)' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO +END DO + +DO g = 1, ng + DO k = 1, nz + DO j = 1, ny + DO i = 1, nx + IF (plnr(zpln(k))%asm(i,j) /= 0) xdc(i,j,k,g) = mdc(plnr(zpln(k))%asm(i,j),g) + END DO + END DO + END DO +END DO + +!!! ADF ROTATION +DO + READ(xbunit, *, IOSTAT=ios) ind, ln, rot + message = ' error in reading ADF Rotation' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + IF (rot < 1) EXIT + IF (rot > 3) THEN + WRITE(ounit,*) ' ERROR: MAXIMUM ADF ROTATION IS 3 TIMES' + WRITE(ounit,2030) ln, rot + END IF + + DO + READ(xbunit, *, IOSTAT=ios) ind, ln, x1, x2, y1, y2, z1, z2 + message = ' error in reading ADF Rotation' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + IF (x1 < 1 .OR. x2 < 1 .OR. y1 < 1 .OR. y2 < 1 .OR. z1 < 1 .OR. z2 < 1) EXIT + IF (x1 > nx .OR. x2 > nx .OR. y1 > ny .OR. y2 > ny .OR. z1 > nz .OR. z2 > nz) THEN + WRITE(ounit,*) ' ERROR: WRONG POSITION FOR ADF ROTATION. ' // & + 'OUT OF DIMENSION OF THE CORE' + WRITE(ounit,2032) ln, x1, x2, y1, y2, z1, z2 + STOP + END IF + IF (x2 < x1 .OR. y2 < y1 .OR. z2 < z1) THEN + WRITE(ounit,*) ' ERROR: WRONG POSITION FOR ADF ROTATION. ' // & + 'INITIAL POSITION IS SMALLER' + WRITE(ounit,2032) ln, x1, x2, y1, y2, z1, z2 + END IF + + DO g = 1, ng + DO k = z1, z2 + DO j = y1, y2 + DO i = x1, x2 + CALL rotate(rot, xdc(i,j,k,g)%dc(1), xdc(i,j,k,g)%dc(2), & + xdc(i,j,k,g)%dc(3), xdc(i,j,k,g)%dc(4)) + END DO + END DO + END DO + END DO + + END DO +END DO + +! ADF PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, zp +IF (ios == 0 .AND. zp >=1) THEN + WRITE(ounit,*) + WRITE(ounit,'(A,I3)') ' ADF VALUES ON PLANAR NUMBER : ', zp + + ip = nx/xm + ipr = MOD(nx,xm) - 1 + DO g = 1, ng + WRITE(ounit,*) + WRITE(ounit, 1999) g + WRITE(ounit,*) + + WRITE(ounit,*) ' EAST ADF' + DO j = 1, ny + DO i = 1, nx + !!! If ADF > 0, Convert ADF to character + IF ((xdc(i,j,zp,g)%dc(1) - 0.) < 1.e-5_DP) THEN + cadf(i,j) = ' ' + ELSE + WRITE (cadf(i,j),'(F6.4)') xdc(i,j,zp,g)%dc(1) + cadf(i,j) = TRIM(ADJUSTL(cadf(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xs+ipr) + END DO + END IF + + + WRITE(ounit,*) ' WEST ADF' + DO j = 1, ny + DO i = 1, nx + !!! If ADF > 0, Convert ADF to character + IF ((xdc(i,j,zp,g)%dc(2) - 0.) < 1.e-5_DP) THEN + cadf(i,j) = ' ' + ELSE + WRITE (cadf(i,j),'(F6.4)') xdc(i,j,zp,g)%dc(2) + cadf(i,j) = TRIM(ADJUSTL(cadf(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xs+ipr) + END DO + END IF + + + WRITE(ounit,*) ' NORTH ADF' + DO j = 1, ny + DO i = 1, nx + !!! If ADF > 0, Convert ADF to character + IF ((xdc(i,j,zp,g)%dc(3) - 0.) < 1.e-5_DP) THEN + cadf(i,j) = ' ' + ELSE + WRITE (cadf(i,j),'(F6.4)') xdc(i,j,zp,g)%dc(3) + cadf(i,j) = TRIM(ADJUSTL(cadf(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xs+ipr) + END DO + END IF + + + WRITE(ounit,*) ' SOUTH ADF' + DO j = 1, ny + DO i = 1, nx + !!! If ADF > 0, Convert ADF to character + IF ((xdc(i,j,zp,g)%dc(4) - 0.) < 1.e-5_DP) THEN + cadf(i,j) = ' ' + ELSE + WRITE (cadf(i,j),'(F6.4)') xdc(i,j,zp,g)%dc(4) + cadf(i,j) = TRIM(ADJUSTL(cadf(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xs+ipr) + END DO + END IF + + + WRITE(ounit,*) ' TOP ADF' + DO j = 1, ny + DO i = 1, nx + !!! If ADF > 0, Convert ADF to character + IF ((xdc(i,j,zp,g)%dc(5) - 0.) < 1.e-5_DP) THEN + cadf(i,j) = ' ' + ELSE + WRITE (cadf(i,j),'(F6.4)') xdc(i,j,zp,g)%dc(5) + cadf(i,j) = TRIM(ADJUSTL(cadf(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xs+ipr) + END DO + END IF + + + WRITE(ounit,*) ' BOTTOM ADF' + DO j = 1, ny + DO i = 1, nx + !!! If ADF > 0, Convert ADF to character + IF ((xdc(i,j,zp,g)%dc(6) - 0.) < 1.e-5_DP) THEN + cadf(i,j) = ' ' + ELSE + WRITE (cadf(i,j),'(F6.4)') xdc(i,j,zp,g)%dc(6) + cadf(i,j) = TRIM(ADJUSTL(cadf(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cadf(i,j), i=xs, xs+ipr) + END DO + END IF + WRITE(ounit,*) + END DO +END IF + +1999 FORMAT (4X, 'GROUP : ', I3) + +WRITE(ounit,*) ' ...Assembly Discontinuity Factors are successfully read...' + + +tx(1) = 1 +DO i = 2, nx+1 + tx(i) = tx(i-1) + xdiv(i-1) +END DO +ty(1) = 1 +DO j = 2, ny+1 + ty(j) = ty(j-1) + ydiv(j-1) +END DO +tz(1) = 1 +DO k = 2, nz+1 + tz(k) = tz(k-1) + zdiv(k-1) +END DO + +DO g = 1, ng + ztot = 0 + DO k= 1, nz + DO lz= 1, zdiv(k) + ztot = ztot+1 + ytot = 0 + DO j= 1, ny + DO ly= 1, ydiv(j) + ytot = ytot+1 + xtot = 0 + DO i= 1, nx + DO lx= 1, xdiv(i) + xtot = xtot+1 + xxdc(xtot,ytot,ztot,g)%dc = 0._DP + IF (mnum(xtot, ytot, ztot) /= 0) xxdc(xtot,ytot,ztot,g)%dc = 1._DP + IF (xtot == tx(i)) xxdc(xtot,ytot,ztot,g)%dc(2) = xdc(i,j,k,g)%dc(2) + IF (xtot == tx(i+1)-1) xxdc(xtot,ytot,ztot,g)%dc(1) = xdc(i,j,k,g)%dc(1) + IF (ytot == ty(j)) xxdc(xtot,ytot,ztot,g)%dc(4) = xdc(i,j,k,g)%dc(4) + IF (ytot == ty(j+1)-1) xxdc(xtot,ytot,ztot,g)%dc(3) = xdc(i,j,k,g)%dc(3) + IF (ztot == tz(k)) xxdc(xtot,ytot,ztot,g)%dc(5) = xdc(i,j,k,g)%dc(5) + IF (ztot == tz(k+1)-1) xxdc(xtot,ytot,ztot,g)%dc(6) = xdc(i,j,k,g)%dc(6) + END DO + END DO + END DO + END DO + END DO + END DO +END DO + +DO g = 1, ng + DO k = 1, nzz + DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + DO u = 1, 6 + dc(xyz(i,j,k),g,u) = xxdc(i,j,k,g)%dc(u) + END DO + END DO + END DO + END DO +END DO + + +2030 FORMAT(3X,'LINE', I4, ' : ', I3) +2032 FORMAT(3X,'LINE', I4, ' : ', I3, I3, I3, I3, I3, I3) + + +END SUBROUTINE inp_adf + +!******************************************************************************! + +SUBROUTINE rotate(rot, a1, a2, a3, a4) + +! Purpose: +! To rotate ADF values (necessary for BWR assemblies) + +INTEGER, INTENT(IN) :: rot +REAL(DP), INTENT(INOUT) :: a1, a2, a3, a4 +REAL(DP) :: x1, x2, x3, x4 + + +x1 = a1 +x2 = a2 +x3 = a3 +x4 = a4 + +IF (rot == 1) THEN + a1 = x4 + a2 = x3 + a3 = x1 + a4 = x2 +END IF + +IF (rot == 2) THEN + a1 = x2 + a2 = x1 + a3 = x4 + a4 = x3 +END IF + +IF (rot == 3) THEN + a1 = x3 + a2 = x4 + a3 = x2 + a4 = x1 +END IF + +END SUBROUTINE rotate + +!******************************************************************************! + +SUBROUTINE inp_crod (xbunit) + +! +! Purpose: +! To read control rod position + +USE sdata, ONLY: nx, ny, nmat, ng, xdiv, ydiv, & + nxx, nyy, bpos, nb, nstep, pos0, ssize, & + dsigtr, dsiga, dnuf, dsigf, dsigs, ddc, nnod, coreh, fbmap + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios + +INTEGER :: i, j, g, h +INTEGER, DIMENSION(nx, ny) :: bmap ! Radial control rod bank map (assembly wise) +INTEGER :: popt +INTEGER :: xtot, ytot, ly, lx +INTEGER, DIMENSION(ng) :: group +INTEGER, DIMENSION(:), ALLOCATABLE :: bank + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING CONTROL RODS INSERTION <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +READ(xbunit, *, IOSTAT=ios) ind, ln, nb, nstep +message = ' error in reading number of control rod bank and max. number of steps' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +READ(xbunit, *, IOSTAT=ios) ind, ln, pos0, ssize +message = ' error in reading zeroth step rod position and step size' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +ALLOCATE(bpos(nb)) + +!!! READ CONTROL ROD BANK POSITIONS +READ(xbunit, *, IOSTAT=ios) ind, ln, (bpos(i), i = 1, nb) +message = ' error in reading bank position' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + + +!!! Check Control Rod Bank POSITION +DO i = 1, nb + IF (bpos(i) > REAL(nstep)) THEN + WRITE(ounit,1999) 'ERROR: POSITION OF CONTROL ROD BANK ', i, ' IS ', bpos(i), ' WHICH IS HIGHER THAN NUMBER OF STEPS.' + STOP + END IF + IF (bpos(i) < 0.) THEN + WRITE(ounit,1999) 'ERROR: POSITION OF CONTROL ROD BANK ', i, ' IS ', bpos(i), ' WHICH IS LOWER THAN 0.' + STOP + END IF + IF (coreh < bpos(i)*ssize) THEN + WRITE(ounit,1998) 'ERROR: CORE HEIGHT ', coreh, ' IS LOWER THAN CONTROL ROD POSITION ', bpos(i)*ssize+pos0 + WRITE(ounit,*) ' BANK NUMBER ', i + STOP + END IF +END DO +1999 FORMAT (2X, A, I2, A, F5.1, A) +1998 FORMAT (2X, A, F6.2, A, F6.2) + +!!! READ CONTROL ROD BANK MAP +DO j = ny, 1, -1 + READ(xbunit, *, IOSTAT=ios) ind, ln, (bmap(i,j), i = 1, nx) + message = ' error in reading control rod bank map' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + DO i = 1, nx + IF (bmap(i,j) > nb) THEN + WRITE(ounit,*) ' ERROR: BANK NUMBER ON CR BANK MAP IS GREATER THAN NUMBER OF BANK' + STOP + END IF + END DO +END DO + +IF (bxtab == 1) THEN !IF XTAB FILE PRESENT + ALLOCATE(dsigtr(nnod,ng)) + ALLOCATE(dsiga (nnod,ng)) + ALLOCATE(dnuf (nnod,ng)) + ALLOCATE(dsigf (nnod,ng)) + ALLOCATE(dsigs (nnod,ng,ng)) + ALLOCATE(ddc (nnod,6,ng)) +ELSE + ALLOCATE(dsigtr(nmat,ng)) + ALLOCATE(dsiga (nmat,ng)) + ALLOCATE(dnuf (nmat,ng)) + ALLOCATE(dsigf (nmat,ng)) + ALLOCATE(dsigs (nmat,ng,ng)) + + ! Reac CX changes due to control rod increment or dcrement + DO i = 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, dsigtr(i,g), & + dsiga(i,g), dnuf(i,g), dsigf(i,g), (dsigs(i,g,h), h = 1, ng) + message = ' error in reading macro xs changes due to control rod insertion' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO + END DO +END IF + +!! CROD PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + WRITE(ounit,1201) nb + WRITE(ounit,1216) NINT(nstep) + WRITE(ounit,1202) pos0 + WRITE(ounit,1203) ssize + + ALLOCATE(bank(nb)) + DO i = 1, nb + bank(i) = i + END DO + WRITE(ounit,*) ' INITIAL CONTROL ROD BANK POSITION (STEPS) : ' + WRITE(ounit,*) ' (0 means fully inserted) ' + WRITE(ounit, 1204)(bank(i), i = 1, nb) + WRITE(ounit, 1205)(bpos(i), i = 1, nb) + + WRITE(ounit,*) + WRITE(ounit,*) ' CONTROL ROD BANK MAP : ' + DO j = ny, 1, -1 + WRITE(ounit,'(100I3)' ) (bmap(i,j), i = 1, nx) + END DO + + IF (bxtab == 0) THEN ! If xtab file present + WRITE(ounit,*) + WRITE(ounit,*) ' MATERIAL CX INCREMENT OR DECREMENT DUE TO CR INSERTION : ' + DO i= 1, nmat + WRITE(ounit,1209) i + WRITE(ounit,1211)'GROUP', 'TRANSPORT', 'ABSORPTION', & + 'NU*FISS', 'FISSION' + DO g= 1, ng + WRITE(ounit,1210) g, dsigtr(i,g), dsiga(i,g), & + dnuf(i,g), dsigf(i,g) + group(g) = g + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I9)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1215)g, (dsigs(i,g,h), h=1,ng) + END DO + END DO + END IF + DEALLOCATE(bank) +END IF + +1201 FORMAT(2X, 'NUMBER OF CONTROL ROD BANK :', I3) +1216 FORMAT(2X, 'MAX. NUMBER OF STEPS :', I4) +1202 FORMAT(2X, 'FULLY INSERTED POSITION (cm): ', F4.1, ' (FROM BOTTOM OF THE CORE)') +1203 FORMAT(2X, 'STEP SIZE (cm) : ', F8.4) +1204 FORMAT(2X, 10(:, 2X, 'Bank ', I2)) +1205 FORMAT(10(:, 2X, F7.1), /) +1209 FORMAT(4X, 'MATERIAL', I3) +1211 FORMAT(2X, A7, A12, A12, 2A13) +1210 FORMAT(2X, I6, F13.6, F12.6, 2F13.6) +1215 FORMAT(4X, I3, F14.6, 20F10.6) + + +!!! Convert assembly wise CR bank map to node wise CR bank map +ALLOCATE(fbmap(nxx,nyy)) +ytot = 0 +DO j= 1, ny + DO ly= 1, ydiv(j) + ytot = ytot+1 + xtot = 0 + DO i= 1, nx + DO lx= 1, xdiv(i) + xtot = xtot+1 + fbmap(xtot, ytot) = bmap(i,j) + END DO + END DO + END DO +END DO + + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Control Rods Insertion card is successfully read...' + +END SUBROUTINE inp_crod + +!******************************************************************************! + +SUBROUTINE inp_ejct (xbunit) + +! +! Purpose: +! To read rod ejection input + +USE sdata, ONLY: nf, ng, lamb, iBeta, velo, nb, tbeta, nmat, & + ttot, tstep1, tdiv, tstep2, bpos, fbpos, tmove, & + bspeed, mdir, nstep + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +INTEGER :: i, g +INTEGER :: popt +INTEGER, DIMENSION(nb) :: bank +CHARACTER(LEN=4) :: cnb ! number of bank (character type) + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING ROD EJECTION DATA <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +ALLOCATE(tmove(nb), bspeed(nb), mdir(nb), fbpos(nb)) +ALLOCATE(tbeta(nmat)) + +! Read Final CR bank position, time to start, and speed +DO i = 1, nb + READ(xbunit, *, IOSTAT=ios) ind, ln, fbpos(i), tmove(i), bspeed(i) + WRITE (cnb,'(I4)') nb + cnb = TRIM(ADJUSTL(cnb)) + message = ' error in reading Final CR Bank Position, time to move and speed for bank : ' // cnb + CALL er_message(ounit, ios, ln, message, buf=xbunit) + IF (fbpos(i) > nstep) THEN + WRITE(ounit, 1889) ln + WRITE(*, 1889) ln + STOP + 1889 FORMAT(2X, "ERROR AT LINE ", I4, ": WRONG FINAL CONTROL ROD POSITION") + END IF + IF (ABS(fbpos(i)-bpos(i)) < 1.e-5_DP) THEN + mdir(i) = 0 + ELSE IF (fbpos(i)-bpos(i) > 1.e-5_DP) THEN + mdir(i) = 2 + ELSE + mdir(i) = 1 + END IF +END DO + +! Read time for CR to be ejected +READ(xbunit, *, IOSTAT=ios) ind, ln, ttot, tstep1, tdiv, tstep2 +message = ' error in time parameters' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +IF (bxtab == 0) THEN ! IF XTAB File does not present + ! Read beta (delayed neutron fraction) + READ(xbunit, *, IOSTAT=ios) ind, ln, (iBeta(i), i = 1, nf) + message = ' error in reading delayed netron fraction (beta)' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + + ! Read precusor decay constant + READ(xbunit, *, IOSTAT=ios) ind, ln, (lamb(i), i = 1, nf) + message = ' error in reading precusor decay constant' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + + ! Read neutron velocity + ALLOCATE(velo(ng)) + READ(xbunit, *, IOSTAT=ios) ind, ln, (velo(g), g = 1, ng) + message = ' error in reading neutron velocity' + CALL er_message(ounit, ios, ln, message, buf=xbunit) +END IF + + +!! EJCT PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + DO i = 1, nb + bank(i) = i + END DO + WRITE(ounit, 1294)(bank(i), i = 1, nb) + WRITE(ounit, 1295)(fbpos(i), i = 1, nb) + WRITE(ounit, 1281)(tmove(i), i = 1, nb) + WRITE(ounit, 1282)(bspeed(i), i = 1, nb) + + WRITE(ounit,*) + WRITE(ounit,*) ' TIME PARAMETERS IN SECONDS : ' + WRITE(ounit,1297) ttot + WRITE(ounit,1298) tstep1 + WRITE(ounit,1299) tstep2 + WRITE(ounit,1300) tdiv + + IF (bxtab == 0) THEN ! IF XTAB File does not present + WRITE(ounit,*) + WRITE(ounit,*) ' DELAYED NEUTRON FRACTION : ' + WRITE(ounit,'(100F11.5)') (iBeta(i), i = 1, nf) + + WRITE(ounit,*) + WRITE(ounit,*) ' PRECUSOR DECAY CONSTANT (1/s): ' + WRITE(ounit,'(100F11.5)') (lamb(i), i = 1, nf) + + WRITE(ounit,*) + WRITE(ounit,*) ' NEUTRON VELOCITY (cm/s) : ' + WRITE(ounit,'(100ES15.5)') (velo(g), g = 1, ng) + END IF +END IF + +! ttot must be bigger than tstep1 and tstep2 +IF ((ttot < tstep1) .OR. (ttot < tstep2)) THEN + WRITE(ounit,*) 'ERROR: TOTAL SIMULATION TIME SHALL BE GREATER THAN TIME STEPS' + WRITE(*,*) 'ERROR: TOTAL SIMULATION TIME SHALL BE GREATER THAN TIME STEPS' + STOP +END IF + +! tdiv must be bigger than tstep1 +IF (tdiv < tstep1) THEN + WRITE(ounit,*) 'ERROR: THE TIME WHEN SECOND TIME STEP STARTS SHALL BE GREATER THAN FIRST TIME STEP' + WRITE(*,*) 'ERROR: THE TIME WHEN SECOND TIME STEP STARTS SHALL BE GREATER THAN FIRST TIME STEP' + STOP +END IF + +! tdiv must be less than ttot +IF (tdiv > ttot) THEN + WRITE(ounit,*) 'ERROR: THE TIME WHEN SECOND TIME STEP STARTS SHALL BE LESS THAN TOTAL TIME' + WRITE(*,*) 'ERROR: THE TIME WHEN SECOND TIME STEP STARTS SHALL BE LESS THAN TOTAL TIME' + STOP +END IF + +! number of steps shall be less than 10,000 +IF (NINT(tdiv/tstep1)+NINT((ttot-tdiv)/tstep2) > 10000) THEN + WRITE(ounit,*) 'ERROR: NUMBER OF TOTAL TIME STEPS ARE MORE THAN 10,000' + WRITE(*,*) 'ERROR: NUMBER OF TOTAL TIME STEPS ARE MORE THAN 10,000' + STOP +END IF + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Rod Ejection Card is successfully read...' + +1294 FORMAT(25X, 99(:, 2X, 'Bank ', I2)) +1295 FORMAT(2X, 'FINAL BANK POS. (STEP)', 99(:, 2X, F7.1), /) +1281 FORMAT(2X, 'STARTS MOVE (SECOND) ', 99(:, 2X, F7.1), /) +1282 FORMAT(2X, 'SPEED (STEP/SECOND) ', 99(:, 2X, F7.1), /) +1297 FORMAT(4X, 'TOTAL SIMULATION TIME : ', F6.2) +1298 FORMAT(4X, 'FIRST TIME STEP : ', F6.4) +1299 FORMAT(4X, 'SECOND TIME STEP : ', F6.4) +1300 FORMAT(4X, 'WHEN SECOND TIME STEP APPLY? : ', F6.2) + +END SUBROUTINE inp_ejct + +!******************************************************************************! + +SUBROUTINE inp_cbcs (xbunit) + +! +! Purpose: +! To read boron concentration for critical boron search + +USE sdata, ONLY: nmat, ng, rbcon, & + csigtr, csiga, cnuf, csigf, csigs + + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +INTEGER :: i, g, h +INTEGER :: popt +INTEGER, DIMENSION(ng) :: group + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING BORON CONCENTRATION FOR BC SEARCH <<<<' +WRITE(ounit,*) ' --------------------------------------------------' + +! Read Boron Concentration +READ(xbunit, *, IOSTAT=ios) ind, ln, rbcon +message = ' error in reading bc guess and bc reference' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +IF (bxtab == 0) THEN ! IF XTAB File does not present + ALLOCATE(csigtr(nmat,ng)) + ALLOCATE(csiga (nmat,ng)) + ALLOCATE(cnuf (nmat,ng)) + ALLOCATE(csigf (nmat,ng)) + ALLOCATE(csigs (nmat,ng,ng)) + + ! Read CX changes per ppm born change + DO i = 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, csigtr(i,g), & + csiga(i,g), cnuf(i,g), csigf(i,g), (csigs(i,g,h), h = 1, ng) + message = ' error in reading macro xs changes per ppm boron changes' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO + END DO +END IF + +!! BCON PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + WRITE(ounit,1422) rbcon + IF (bxtab == 0) THEN ! IF XTAB File does not present + WRITE(ounit,*) + WRITE(ounit,*) ' MATERIAL CX CHANGES PER PPM BORON CHANGES : ' + DO i= 1, nmat + WRITE(ounit,1429) i + WRITE(ounit,1431)'GROUP', 'TRANSPORT', 'ABSORPTION', & + 'NU*FISS', 'FISSION' + DO g= 1, ng + WRITE(ounit,1430) g, csigtr(i,g), csiga(i,g), & + cnuf(i,g), csigf(i,g) + group(g) = g + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1435)g, (csigs(i,g,h), h=1,ng) + END DO + END DO + END IF +END IF + +1422 FORMAT(2X, 'BORON CONCENTRATION REFERENCE :', F8.2) +1429 FORMAT(4X, 'MATERIAL', I3) +1431 FORMAT(2X, A9, A12, A14, A13, A14) +1430 FORMAT(2X, I6, E16.5, 3E14.5) +1435 FORMAT(4X, I3, E17.5, 20E13.5) + + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Critical Boron Search card is successfully read...' + +END SUBROUTINE inp_cbcs + +!******************************************************************************! + +SUBROUTINE inp_bcon (xbunit) + +! +! Purpose: +! To read boron concentration + +USE sdata, ONLY: nmat, ng, bcon, rbcon, & + csigtr, csiga, cnuf, csigf, csigs + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +INTEGER :: i, g, h +INTEGER :: popt +INTEGER, DIMENSION(ng) :: group + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING BORON CONCENTRATION <<<<' +WRITE(ounit,*) ' --------------------------------------------------' + +! Read Boron Concentration +READ(xbunit, *, IOSTAT=ios) ind, ln, bcon, rbcon +message = ' error in reading boron concentration and boron concentration reference' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +IF (bxtab == 0) THEN ! If xtab file present + ! Read CX changes per ppm born change + ALLOCATE(csigtr(nmat,ng)) + ALLOCATE(csiga (nmat,ng)) + ALLOCATE(cnuf (nmat,ng)) + ALLOCATE(csigf (nmat,ng)) + ALLOCATE(csigs (nmat,ng,ng)) + DO i = 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, csigtr(i,g), & + csiga(i,g), cnuf(i,g), csigf(i,g), (csigs(i,g,h), h = 1, ng) + message = ' error in reading macro xs changes per ppm boron changes' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO + END DO +END IF + +!! BCON PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + WRITE(ounit,1221) bcon + WRITE(ounit,1222) rbcon + + IF (bxtab == 0) THEN ! If xtab file present + WRITE(ounit,*) + WRITE(ounit,*) ' MATERIAL CX CHANGES PER PPM BORON CHANGES : ' + DO i= 1, nmat + WRITE(ounit,1229) i + WRITE(ounit,1231)'GROUP', 'TRANSPORT', 'ABSORPTION', & + 'NU*FISS', 'FISSION' + DO g= 1, ng + WRITE(ounit,1230) g, csigtr(i,g), csiga(i,g), & + cnuf(i,g), csigf(i,g) + group(g) = g + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1235)g, (csigs(i,g,h), h=1,ng) + END DO + END DO + END IF +END IF + +1221 FORMAT(2X, 'BORON CONCENTRATION SET :', F8.2) +1222 FORMAT(2X, 'BORON CONCENTRATION REFERENCE :', F8.2) +1229 FORMAT(4X, 'MATERIAL', I3) +1231 FORMAT(2X, A9, A12, A14, A13, A14) +1230 FORMAT(2X, I6, E16.5, 3E14.5) +1235 FORMAT(4X, I3, E17.5, 20E13.5) + + + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Boron Concentration card is successfully read...' + +END SUBROUTINE inp_bcon + +!******************************************************************************! + +SUBROUTINE inp_ftem (xbunit) + +! +! Purpose: +! To read fuel temperature + +USE sdata, ONLY: nmat, ng, nnod, ftem, rftem, & + fsigtr, fsiga, fnuf, fsigf, fsigs + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +REAL(DP) :: cftem +INTEGER :: i, g, h +INTEGER :: popt +INTEGER, DIMENSION(ng) :: group + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING FUEL TEMPERATURE <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +! Read Fuel Temperature +READ(xbunit, *, IOSTAT=ios) ind, ln, cftem, rftem +message = ' error in reading average fuel temperature and fuel temperature reference' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! ASSIGN CFTEM to FTEM +IF (bther == 0) ALLOCATE (ftem(nnod)) +ftem = cftem !Initial guess for fuel temperature + +IF (bxtab == 0) THEN ! IF XTAB File does not present + ! Read CX changes fuel temperature change + ALLOCATE(fsigtr(nmat,ng), fsiga(nmat,ng), fnuf(nmat,ng), fsigf(nmat,ng), fsigs(nmat,ng,ng)) + DO i = 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, fsigtr(i,g), & + fsiga(i,g), fnuf(i,g), fsigf(i,g), (fsigs(i,g,h), h = 1, ng) + message = ' error in reading macro xs changes per fuel temperature changes' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO + END DO +END IF + +!! FTEM PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + IF (bther == 0) THEN + WRITE(ounit,1241) cftem + ELSE + WRITE(ounit,1256) cftem + END IF + WRITE(ounit,1242) rftem + + IF (bxtab == 0) THEN ! IF XTAB File does not present + WRITE(ounit,*) + WRITE(ounit,*) ' MATERIAL CX CHANGES PER FUEL TEMPERATURE CHANGES : ' + DO i= 1, nmat + WRITE(ounit,1249) i + WRITE(ounit,1251)'GROUP', 'TRANSPORT', 'ABSORPTION', & + 'NU*FISS', 'FISSION' + DO g= 1, ng + WRITE(ounit,1250) g, fsigtr(i,g), fsiga(i,g), & + fnuf(i,g), fsigf(i,g) + group(g) = g + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1255)g, (fsigs(i,g,h), h=1,ng) + END DO + END DO + END IF +END IF + +1241 FORMAT(2X, 'AVERAGE FUEL TEMPERATURE :', F6.2) +1242 FORMAT(2X, 'FUEL TEMPERATURE REFERENCE :', F6.2) +1249 FORMAT(4X, 'MATERIAL', I3) +1251 FORMAT(2X, A9, A12, A14, A13, A14) +1250 FORMAT(2X, I6, E16.5, 3E14.5) +1255 FORMAT(4X, I3, E17.5, 20E13.5) +1256 FORMAT(2X, 'AVERAGE FUEL TEMPERATURE :', F6.2, ' (NOT USED)') + + + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Fuel Temperature is card successfully read...' + +END SUBROUTINE inp_ftem + +!******************************************************************************! + +SUBROUTINE inp_mtem (xbunit) + +! +! Purpose: +! To read moderator temperature + +USE sdata, ONLY: nmat, ng, nnod, mtem, rmtem, & + msigtr, msiga, mnuf, msigf, msigs + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +REAL(DP) :: cmtem +INTEGER :: i, g, h +INTEGER :: popt +INTEGER, DIMENSION(ng) :: group + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING MODERATOR TEMPERATURE <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +! Read Moderator Temperature +READ(xbunit, *, IOSTAT=ios) ind, ln, cmtem, rmtem +message = ' error in reading Moderator temperature and Moderator temperature reference' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! ASSIGN CMTEM to MTEM +IF (bther == 0) ALLOCATE (mtem(nnod)) +mtem = cmtem + +IF (bxtab == 0) THEN ! IF XTAB File does not present + ! Read CX changes per moderator temperature change + ALLOCATE(msigtr(nmat,ng), msiga(nmat,ng), mnuf(nmat,ng), msigf(nmat,ng), msigs(nmat,ng,ng)) + DO i = 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, msigtr(i,g), & + msiga(i,g), mnuf(i,g), msigf(i,g), (msigs(i,g,h), h = 1, ng) + message = ' error in reading macro xs changes per Moderator temperature changes' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO + END DO +END IF + +!! MTEM PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + IF (bther == 0) THEN + WRITE(ounit,1261) cmtem + ELSE + WRITE(ounit,1276) cmtem + END IF + WRITE(ounit,1262) rmtem + IF (bxtab == 0) THEN ! IF XTAB File does not present + WRITE(ounit,*) + WRITE(ounit,*) ' MATERIAL CX CHANGES PER MODERATOR TEMPERATURE CHANGES : ' + DO i= 1, nmat + WRITE(ounit,1269) i + WRITE(ounit,1271)'GROUP', 'TRANSPORT', 'ABSORPTION', & + 'NU*FISS', 'FISSION' + DO g= 1, ng + WRITE(ounit,1270) g, msigtr(i,g), msiga(i,g), & + mnuf(i,g), msigf(i,g) + group(g) = g + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1275)g, (msigs(i,g,h), h=1,ng) + END DO + END DO + END IF +END IF + +1261 FORMAT(2X, 'AVERAGE MODERATOR TEMPERATURE :', F6.2) +1262 FORMAT(2X, 'MODERATOR TEMPERATURE REFERENCE :', F6.2) +1269 FORMAT(4X, 'MATERIAL', I3) +1271 FORMAT(2X, A9, A12, A14, A13, A14) +1270 FORMAT(2X, I6, E16.5, 3E14.5) +1275 FORMAT(4X, I3, E17.5, 20E13.5) +1276 FORMAT(2X, 'AVERAGE MODERATOR TEMPERATURE :', F6.2, ' (NOT USED)') + + + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Moderator Temperature Card is successfully read...' + + +END SUBROUTINE inp_mtem + +!******************************************************************************! + +SUBROUTINE inp_cden (xbunit) + +! +! Purpose: +! To read Coolant Density + +USE sdata, ONLY: nmat, ng, nnod, cden, rcden, & + lsigtr, lsiga, lnuf, lsigf, lsigs + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +REAL(DP) :: ccden +INTEGER :: i, g, h +INTEGER :: popt +INTEGER, DIMENSION(ng) :: group + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING COOLANT DENSITY <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +! Read Coolant Density +READ(xbunit, *, IOSTAT=ios) ind, ln, ccden, rcden +message = ' error in reading Coolant Density and Coolant Density reference' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +!ASSIGN CCDEN TO CDEN +IF (bther == 0) ALLOCATE (cden(nnod)) +cden = ccden + +IF (bxtab == 0) THEN ! IF XTAB File does not present + ! Read CX changes per Coolant Density change + ALLOCATE(lsigtr(nmat,ng), lsiga(nmat,ng), lnuf(nmat,ng), lsigf(nmat,ng), lsigs(nmat,ng,ng)) + DO i = 1, nmat + DO g= 1, ng + READ(xbunit, *, IOSTAT=ios) ind, ln, lsigtr(i,g), & + lsiga(i,g), lnuf(i,g), lsigf(i,g), (lsigs(i,g,h), h = 1, ng) + message = ' error in reading macro xs changes per Coolant Density changes' + CALL er_message(ounit, ios, ln, message, buf=xbunit) + END DO + END DO +END IF + +!! CDEN PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + + IF (bther == 0) THEN + WRITE(ounit,1361) ccden + ELSE + WRITE(ounit,1376) ccden + END IF + WRITE(ounit,1362) rcden + IF (bxtab == 0) THEN ! IF XTAB File does not present + WRITE(ounit,*) + WRITE(ounit,*) ' MATERIAL CX CHANGES PER COOLANT DENSITY CHANGES : ' + DO i= 1, nmat + WRITE(ounit,1369) i + WRITE(ounit,1371)'GROUP', 'TRANSPORT', 'ABSORPTION', & + 'NU*FISS', 'FISSION' + DO g= 1, ng + WRITE(ounit,1370) g, lsigtr(i,g), lsiga(i,g), & + lnuf(i,g), lsigf(i,g) + group(g) = g + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1375)g, (lsigs(i,g,h), h=1,ng) + END DO + END DO + END IF +END IF + + +1361 FORMAT(2X, 'AVERAGE COOLANT DENSITY :', F8.4) +1362 FORMAT(2X, 'COOLANT DENSITY REFERENCE :', F8.4) +1369 FORMAT(4X, 'MATERIAL', I3) +1371 FORMAT(2X, A9, A12, A14, A13, A14) +1370 FORMAT(2X, I6, E16.5, 3E14.5) +1375 FORMAT(4X, I3, E17.5, 20E13.5) +1376 FORMAT(2X, 'AVERAGE COOLANT DENSITY :', F8.4, ' (USED AS GUESS)') + + + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Coolant Density Card is successfully read...' + + +END SUBROUTINE inp_cden + +!******************************************************************************! + +SUBROUTINE inp_ther (xbunit) + +! +! Purpose: +! To read thermalhydraulics parameters input + +USE sdata, ONLY: pow, tin, nx, ny, nxx, nyy, ystag, & + rf, tg, tc, rg, rc, ppitch, cf, dia, cflow, dh, pi, & + farea, xdiv, ydiv, ystag, node_nf, nm, nt, rdel, rpos, & + nnod, tfm, ppow, ent, heatf, ntem, stab, ftem, mtem, cden, & + thunit + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: ios ! IOSTAT status + +INTEGER :: i, j +INTEGER :: nfpin, ngt ! Number of fuel pin and guide tubes + +INTEGER :: ly, lx, ytot, xtot +REAL(DP) :: cmflow +REAL(DP), DIMENSION(nx,ny) :: area +REAL(DP) :: barea, div + +REAL(DP) :: dum + +INTEGER :: popt + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING THERMAL-HYDRAULIC DATA <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +ALLOCATE (ftem(nnod), mtem(nnod), cden(nnod)) + +! Read Percent Power +READ(xbunit, *, IOSTAT=ios) ind, ln, ppow +message = ' error in reading percent power' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! Read reactor Power +READ(xbunit, *, IOSTAT=ios) ind, ln, pow +message = ' error in reading reactor full thermal power' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! Read inlet coolant temp. (Kelvin) and FA flow rate (kg/s) +READ(xbunit, *, IOSTAT=ios) ind, ln, tin, cmflow +message = ' error in reading coolant inlet temp. and Fuel Assembly mass flow rate' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! Read fuel pin geometry in meter +READ(xbunit, *, IOSTAT=ios) ind, ln, rf, tg, tc, ppitch +message = ' error in reading fuel meat rad., gap thickness, clad thickness and pin pitch' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! Check gap and clad thickness +IF (tg > 0.25 * rf) THEN + WRITE(ounit,*) ' ERROR: GAP THICKNESS IS TO LARGE (> 0.25*rf)' + STOP +END IF +IF (tc > 0.25 * rf) THEN + WRITE(ounit,*) ' ERROR: CLADDING THICKNESS IS TO LARGE (> 0.25*rf)' + STOP +END IF + +! Read Number of fuel pins and guide tubes +READ(xbunit, *, IOSTAT=ios) ind, ln, nfpin, ngt +message = ' error in reading number of fuel pins and guide tubes' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +! Read Fraction of heat deposited in the coolant +READ(xbunit, *, IOSTAT=ios) ind, ln, cf +message = ' error in reading fraction of heat deposited in the coolant' +CALL er_message(ounit, ios, ln, message, buf=xbunit) + +if (cf < 0. .or. cf > 1.0) stop "The value of the fraction of heat " & +// "deposited in the coolant is incorrect" + +! Calculate outer radius of gap and cladding +rg = rf + tg +rc = rg + tc + +! Calculate fuel pin diameter +dia = 2. * rc + +! Calculate hydraulic diameter +dh = dia * ((4./pi) * (ppitch/dia)**2 - 1.) + +! Calculate sub-channel area +farea = ppitch**2 - 0.25*pi*dia**2 + +! Calculate sub-channel mass flow rate +cflow = cmflow / REAL(nfpin) + +! Calculate total coolant mass flow rate and number of fuel pins per node +barea = 0. +DO j = 1, ny + DO i = 1, nx + area(i,j) = xsize(i)*ysize(j) ! assembly area + IF (area(i,j) > barea) barea = area(i,j) ! barea => largest assembly area for ref. + END DO +END DO + +ALLOCATE(node_nf(nxx, nyy)) +node_nf = 0. + +ytot = 0 +DO j= 1, ny + DO ly= 1, ydiv(j) + ytot = ytot+1 + xtot = 0 + DO i= 1, nx + DO lx= 1, xdiv(i) + xtot = xtot+1 + IF ((xtot >= ystag(ytot)%smin) .AND. (xtot <= ystag(ytot)%smax )) THEN + div = REAL (ydiv(j) * xdiv(i)) ! Number of nodes in current assembly + node_nf(xtot,ytot) = area(i,j) * REAL(nfpin) / (barea * div) ! Number of fuel pin for this node + END IF + END DO + END DO + END DO +END DO + +! Calculate fuel pin mesh delta and position +dum = rf / REAL(nm) + +ALLOCATE(rdel(nt), rpos(nt)) +DO i = 1, nm + rdel(i) = dum +END DO + +! Fuel pin mesh size +rdel(nm+1) = tg +rdel(nm+2) = tc + +! Fuel pin mesh position +rpos(1) = 0.5 * rdel(1) +DO i = 2, nt + rpos(i) = rpos(i-1) + 0.5 * (rdel(i-1) + rdel(i)) +END DO + +! Guess fuel and moderator temperature +ALLOCATE(tfm(nnod, nt+1)) ! Allocate fuel pin mesh temperature +tfm = 900. !Initial guess for radial fuel pin temperature distribution +IF (bxtab == 1) THEN + ftem = 900.; cden = 0.711; mtem = 500. +END IF + +ALLOCATE(ent(nnod)) +ALLOCATE(heatf(nnod)) + +! Initial heat-flux rate +heatf = 0. + +! Open steam table file +OPEN (UNIT=thunit, FILE='st155bar', STATUS='OLD', ACTION='READ', IOSTAT = ios) +IF (ios == 0) THEN !If steam table present in the current directory + ! Save steam table data to stab + DO i = 1, ntem + READ(thunit,*) stab(i,1), stab(i,2), stab(i,3), & + stab(i,4), stab(i,5), stab(i,6) + END DO + CLOSE(UNIT=thunit) +ELSE ! if steam table not present, use steam table data at 15.5 MPa + stab(1,1)=543.15; stab(1,2)=0.78106745; stab(1,3)=1182595.0; + stab(1,4)=0.820773; stab(1,5)=0.128988; stab(1,6)=0.60720 + stab(2,1)=553.15; stab(2,2)=0.76428125; stab(2,3)=1232620.0; + stab(2,4)=0.829727; stab(2,5)=0.126380; stab(2,6)=0.59285 + stab(3,1)=563.15; stab(3,2)=0.74619716; stab(3,3)=1284170.0; + stab(3,4)=0.846662; stab(3,5)=0.124118; stab(3,6)=0.57710 + stab(4,1)=573.15; stab(4,2)=0.72650785; stab(4,3)=1337630.0; + stab(4,4)=0.863597; stab(4,5)=0.121856; stab(4,6)=0.55970 + stab(5,1)=583.15; stab(5,2)=0.70475081; stab(5,3)=1393570.0; + stab(5,4)=0.915035; stab(5,5)=0.120105; stab(5,6)=0.54045 + stab(6,1)=593.15; stab(6,2)=0.68018488; stab(6,3)=1452895.0; + stab(6,4)=0.966472; stab(6,5)=0.118354; stab(6,6)=0.51880 + stab(7,1)=603.15; stab(7,2)=0.65150307; stab(7,3)=1517175.0; + stab(7,4)=1.166745; stab(7,5)=0.143630; stab(7,6)=0.49420 + stab(8,1)=613.15; stab(8,2)=0.61590149; stab(8,3)=1589770.0; + stab(8,4)=1.515852; stab(8,5)=0.195931; stab(8,6)=0.46550 + stab(9,1)=617.91; stab(9,2)=0.59896404; stab(9,3)=1624307.1; + stab(9,4)=1.681940; stab(9,5)=0.220813; stab(9,6)=0.45185 +END IF + +!! THER PRINT OPTION +READ(xbunit, *, IOSTAT=ios) ind, ln, popt +IF (ios == 0 .AND. popt > 0) THEN + WRITE(ounit,1309) ppow + WRITE(ounit,1301) pow + WRITE(ounit,1302) tin + WRITE(ounit,1303) cmflow + WRITE(ounit,1304) rf + WRITE(ounit,1305) tg + WRITE(ounit,1306) tc + WRITE(ounit,1310) ppitch + WRITE(ounit,1307) cf +END IF + +WRITE(ounit,*) +WRITE(ounit,*) ' ...Thermal-hydraulic Card is successfully read...' + +1309 FORMAT(2X, 'REACTOR PERCENT POWER (%) : ', F12.5) +1301 FORMAT(2X, 'REACTOR POWER (Watt) : ', ES12.4) +1302 FORMAT(2X, 'COOLANT INLET TEMPERATURE (Kelvin) : ', ES12.4) +1303 FORMAT(2X, 'FUEL ASSEMBLY MASS FLOW RATE (Kg/s) : ', ES12.4) +1304 FORMAT(2X, 'FUEL MEAT RADIUS (m) : ', ES12.4) +1305 FORMAT(2X, 'GAP THICKNESS (m) : ', ES12.4) +1306 FORMAT(2X, 'CLAD THICKNESS (m) : ', ES12.4) +1310 FORMAT(2X, 'PIN PITCH(m) : ', ES12.4) +1307 FORMAT(2X, 'FRACTION OF HEAT DEPOSITED IN COOL. : ', ES12.4) + +DEALLOCATE(xsize, ysize, zsize) + +END SUBROUTINE inp_ther + +!******************************************************************************! + +SUBROUTINE er_message (funit, iost, ln, mess, xtab, buf) +! +! Purpose: +! To provide error message +! + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: funit, iost, ln +CHARACTER(LEN=*), INTENT(IN) :: mess +INTEGER, OPTIONAL, INTENT(IN) :: xtab, buf + +IF (iost < 0) THEN + WRITE(funit,*) + WRITE(*,*) + WRITE(*,*)''//achar(27)//'[31m OOPS! WE FOUND AN ERROR.'//achar(27)//'[0m' + + IF (PRESENT(xtab)) THEN + WRITE(funit, 1014) ln, xtab + ELSE + WRITE(funit, 1006) carr(GETLOC(uarr,buf)) + WRITE(funit, 1013) ln, farr(GETLOC(uarr,buf)) + END IF + WRITE(funit,*) mess + IF (PRESENT(xtab)) THEN + WRITE(*, 1014) ln, xtab + ELSE + WRITE(*, 1006) carr(GETLOC(uarr,buf)) + WRITE(*, 1013) ln, farr(GETLOC(uarr,buf)) + END IF + WRITE(*,*) mess + 1013 FORMAT(2x, 'THIS LINE NEEDS MORE INPUT DATA. LINE', I4, & + ' IN FILE : ', A100) + 1014 FORMAT(2x, 'ERROR: LINE', I4, & + 'IN XTAB FILE FOR MATERIAL NUMBER' , I4, '. IT NEEDS MORE DATA') + STOP +END IF + +IF (iost > 0) THEN + WRITE(funit,*) + WRITE(*,*) + WRITE(*,*)''//achar(27)//'[31m OOPS! WE FOUND AN ERROR.'//achar(27)//'[0m' + + IF (PRESENT(xtab)) THEN + WRITE(funit, 1005) ln, xtab + ELSE + WRITE(funit, 1006) carr(GETLOC(uarr,buf)) + WRITE(funit, 1004) ln, farr(GETLOC(uarr,buf)) + END IF + WRITE(funit,*) mess + IF (PRESENT(xtab)) THEN + WRITE(*, 1005) ln, xtab + ELSE + WRITE(*, 1006) carr(GETLOC(uarr,buf)) + WRITE(*, 1004) ln, farr(GETLOC(uarr,buf)) + END IF + WRITE(*,*) mess + 1006 FORMAT(2X, 'ERROR: THERE IS AN ERROR IN CARD %', A4) + 1004 FORMAT(2X, 'PLEASE CHECK LINE NUMBER', I4, ' IN FILE : ', A100) + 1005 FORMAT(2X, 'ERROR: PLEASE CHECK LINE NUMBER', I4, & + ' IN XTAB FILE FOR MATERIAL NUMBER ', I4) + STOP +END IF + +END SUBROUTINE er_message + +!****************************************************************************! + +FUNCTION GETLOC(arr, elm) RESULT (loc) + + !Purpose: To get location of an element in an array + + INTEGER, DIMENSION(:), INTENT(IN) :: arr ! input array + INTEGER, INTENT(IN) :: elm ! element whose location is wanted to find + INTEGER :: loc + + integer :: i + + DO i = 1, SIZE(arr) + IF (arr(i) == elm) THEN + loc = i + EXIT + END IF + END DO + +END FUNCTION GETLOC + +!******************************************************************************! + +SUBROUTINE AsmPow(fn) + +! +! Purpose: +! To print axially averaged assembly-wise power distribution +! + +USE sdata, ONLY: nx, ny, nxx, nyy, nzz, zdel, & + xdel, ydel, ystag, nnod, ix, iy, iz, & + xdiv, ydiv + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: fn + +REAL(DP), DIMENSION(nxx, nyy, nzz) :: fx +INTEGER :: i, j, k, n +INTEGER :: ly, lx, ys, xs, yf, xf +REAL(DP) :: summ, vsumm +REAL(DP), DIMENSION(nxx, nyy) :: fnode +REAL(DP), DIMENSION(nx, ny) :: fasm +REAL(DP) :: totp +INTEGER :: nfuel +REAL(DP) :: fmax +INTEGER :: xmax, ymax +CHARACTER(LEN=6), DIMENSION(nx, ny) :: cpow + +INTEGER, PARAMETER :: xm = 12 +INTEGER :: ip, ipr + +fx = 0._DP +DO n = 1, nnod + fx(ix(n), iy(n), iz(n)) = fn(n) +END DO + +!Calculate axially averaged node-wise distribution +fnode = 0._DP +DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + summ = 0._DP + vsumm = 0._DP + DO k = 1, nzz + summ = summ + fx(i,j,k)*zdel(k) + vsumm = vsumm + zdel(k) + END DO + fnode(i,j)= summ/vsumm + END DO +END DO + +!Calculate assembly power +nfuel = 0 +totp = 0._DP +ys = 1 +yf = 0 +DO j= 1, ny + yf = yf + ydiv(j) + xf = 0 + xs = 1 + DO i= 1, nx + xf = xf + xdiv(i) + summ = 0._DP + vsumm = 0._DP + DO ly= ys, yf + DO lx= xs, xf + summ = summ + fnode(lx,ly)*xdel(lx)*ydel(ly) + vsumm = vsumm + xdel(lx)*ydel(ly) + END DO + END DO + fasm(i,j) = summ / vsumm + xs = xs + xdiv(i) + IF (fasm(i,j) > 0._DP) nfuel = nfuel + 1 + IF (fasm(i,j) > 0._DP) totp = totp + fasm(i,j) + END DO + ys = ys + ydiv(j) +END DO + + +! Normalize assembly power to 1._DP +xmax = 1; ymax = 1 +fmax = 0._DP +DO j = 1, ny + DO i = 1, nx + IF (totp > 0.) fasm(i,j) = REAL(nfuel) / totp * fasm(i,j) + IF (fasm(i,j) > fmax) THEN ! Get max position + xmax = i + ymax = j + fmax = fasm(i,j) + END IF + ! Convert power to character (If power == 0 convert to blank spaces) + IF ((fasm(i,j) - 0.) < 1.e-5_DP) THEN + cpow(i,j) = ' ' + ELSE + WRITE (cpow(i,j),'(F6.3)') fasm(i,j) + cpow(i,j) = TRIM(cpow(i,j)) + END IF + END DO +END DO + + +! Print assembly power distribution +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' Radial Power Distribution' +WRITE(ounit,*) ' ==============================' + +ip = nx/xm +ipr = MOD(nx,xm) - 1 +xs = 1; xf = xm +DO k = 1, ip + WRITE(ounit,'(4X,100I8)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cpow(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm +END DO + + +WRITE(ounit,'(4X,100I8)') (i, i = xs, xs+ipr) +IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,100A8)') j, (cpow(i,j), i=xs, xs+ipr) + END DO +END IF + + + +WRITE(ounit,*) + +WRITE(ounit,*) ' MAX POS. Maximum Value' +WRITE(ounit,1101) ymax, xmax, fasm(xmax, ymax) + +1101 FORMAT(2X, '(' , I3, ',', I3,')', F15.3) + + +END SUBROUTINE AsmPow + +!******************************************************************************! + +SUBROUTINE AxiPow(fn) + +! +! Purpose: +! To print radially averaged power distribution +! + +USE sdata, ONLY: nxx, nyy, nzz, nz, zdiv, & + vdel, ystag, nnod, ix, iy, iz, xyz, zdel, ystag, coreh + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: fn + +REAL(DP), DIMENSION(nxx, nyy, nzz) :: fx +INTEGER :: i, j, k, n, ztot +INTEGER :: lz +REAL(DP) :: summ, vsumm +REAL(DP), DIMENSION(nz) :: faxi +REAL(DP) :: totp +INTEGER :: nfuel +REAL(DP) :: fmax +INTEGER :: amax + +fx = 0._DP +DO n = 1, nnod + fx(ix(n), iy(n), iz(n)) = fn(n) +END DO + +! Calculate Axial Power +nfuel = 0 +totp = 0._DP +ztot = 0 +DO k= 1, nz + summ = 0._DP + vsumm = 0._DP + DO lz= 1, zdiv(k) + ztot = ztot + 1 + DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + summ = summ + fx(i,j,ztot) + vsumm = vsumm + vdel(xyz(i,j,ztot)) + END DO + END DO + END DO + faxi(k) = summ/vsumm + IF (faxi(k) > 0._DP) nfuel = nfuel + 1 + IF (faxi(k) > 0._DP) totp = totp + faxi(k) +END DO + +! Normalize Axial power to 1._DP +fmax = 0._DP +amax = 1 +DO k = 1, nz + faxi(k) = REAL(nfuel) / totp * faxi(k) + IF (faxi(k) > fmax) THEN + amax = k ! Get max position + fmax = faxi(k) + END IF +END DO + +! Print Axial power distribution +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' Axial Power Density Distribution' +WRITE(ounit,*) ' ====================================' +WRITE(ounit,*) +WRITE(ounit,*) ' Plane Number Power Height' +WRITE(ounit,*) ' -----------------------------------------' +summ = 0. +ztot = nzz +DO k= nz, 1, -1 + IF (k == nz) THEN + WRITE(ounit,'(2X,I8,A7,F13.3, F12.2)') k, ' (TOP)', faxi(k), coreh-summ + ELSE IF (k == 1) THEN + WRITE(ounit,'(2X,I8,A10,F10.3, F12.2)') k, ' (BOTTOM)', faxi(k), coreh-summ + ELSE + WRITE(ounit,'(2X,I8,F20.3, F12.2)') k, faxi(k), coreh-summ + END IF + DO lz = 1, zdiv(k) + summ = summ + zdel(ztot) + ztot = ztot - 1 + END DO +END DO +WRITE(ounit,*) +WRITE(ounit,*) ' MAX POS. Maximum Value' +WRITE(ounit,1102) amax, faxi(amax) + +1102 FORMAT(4X, '(' , I3, ')', F18.3) + + +END SUBROUTINE AxiPow + +!******************************************************************************! + +SUBROUTINE AsmFlux(fn, norm) + +! +! Purpose: +! To print axially averaged assembly-wise flux distribution +! + +USE sdata, ONLY: ng, nx, ny, nxx, nyy, nzz, zdel, & + xdel, ydel, ystag, nnod, ix, iy, iz, & + xdiv, ydiv + +IMPLICIT NONE + +REAL(DP), DIMENSION(:,:), INTENT(IN) :: fn +REAL(DP), OPTIONAL, INTENT(IN) :: norm + +REAL(DP), DIMENSION(nxx, nyy, nzz, ng) :: fx +INTEGER :: g, i, j, k, n +INTEGER :: ly, lx, ys, xs, yf, xf +REAL(DP) :: summ, vsumm +REAL(DP), DIMENSION(nxx, nyy, ng) :: fnode +REAL(DP), DIMENSION(nx, ny, ng) :: fasm +REAL(DP), DIMENSION(ng) :: totp +CHARACTER(LEN=10), DIMENSION(nx, ny) :: cflx + +INTEGER, PARAMETER :: xm = 12 +INTEGER :: ip, ipr +INTEGER :: negf + +fx = 0._DP +DO g = 1, ng + DO n = 1, nnod + fx(ix(n), iy(n), iz(n), g) = fn(n,g) + END DO +END DO + +!Calculate axially averaged node-wise distribution +fnode = 0._DP +DO g = 1, ng + DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + summ = 0._DP + vsumm = 0._DP + DO k = 1, nzz + summ = summ + fx(i,j,k,g)*xdel(i)*ydel(j)*zdel(k) + vsumm = vsumm + xdel(i)*ydel(j)*zdel(k) + END DO + fnode(i,j,g)= summ/vsumm + END DO + END DO +END DO + +!Calculate Radial Flux (assembly wise) +negf = 0 +DO g = 1, ng + totp(g) = 0._DP + ys = 1 + yf = 0 + DO j= 1, ny + yf = yf + ydiv(j) + xf = 0 + xs = 1 + DO i= 1, nx + xf = xf + xdiv(i) + summ = 0._DP + vsumm = 0._DP + DO ly= ys, yf + DO lx= xs, xf + summ = summ + fnode(lx,ly,g)*xdel(lx)*ydel(ly) + vsumm = vsumm + xdel(lx)*ydel(ly) + END DO + END DO + fasm(i,j,g) = summ / vsumm + xs = xs + xdiv(i) + IF (fasm(i,j,g) > 0._DP) THEN + totp(g) = totp(g) + fasm(i,j,g) + END IF + ! Check if there is negative flux + IF (fasm(i,j,g) < 0._DP) negf = 1 + END DO + ys = ys + ydiv(j) + END DO +END DO + +! Normalize Flux to norm +IF (PRESENT(norm)) THEN + DO g = 1, ng + DO j = 1, ny + DO i = 1, nx + fasm(i,j,g) = norm / totp(g) * fasm(i,j,g) * norm + END DO + END DO + END DO +END IF + + +! Print assembly Flux distribution +WRITE(ounit,*) +IF (negf > 0) WRITE(ounit,*) ' ....WARNING: NEGATIVE FLUX ENCOUNTERED....' +WRITE(ounit,*) +WRITE(ounit,*) ' Radial Flux Distribution' +WRITE(ounit,*) ' ==============================' + +ip = nx/xm +ipr = MOD(nx,xm) - 1 + +DO g = 1, ng + WRITE(ounit,'(A,I3)') ' Group : ', g + !!! Convert to character (zero flux convert to blank spaces) + DO j = 1, ny + DO i = 1, nx + IF ((fasm(i,j,g) - 0.) < 1.e-5_DP) THEN + cflx(i,j) = ' ' + ELSE + WRITE (cflx(i,j),'(ES10.3)') fasm(i,j,g) + cflx(i,j) = TRIM(ADJUSTL(cflx(i,j))) + END IF + END DO + END DO + + xs = 1; xf = xm + DO k = 1, ip + WRITE(ounit,'(3X,100I11)') (i, i = xs, xf) + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,2X,100A11)') j, (cflx(i,j), i=xs, xf) + END DO + WRITE(ounit,*) + xs = xs + xm + xf = xf + xm + END DO + + WRITE(ounit,'(3X,100I11)') (i, i = xs, xs+ipr) + IF (xs+ipr > xs) THEN + DO j= ny, 1, -1 + WRITE(ounit,'(2X,I4,2X,100A11)') j, (cflx(i,j), i=xs, xs+ipr) + END DO + END IF + WRITE(ounit,*) + +END DO + + +END SUBROUTINE AsmFlux + +!******************************************************************************! + +SUBROUTINE inp_xtab(xbunit) + +! +! Purpose: +! To read tabular xsec file +! + +USE sdata, ONLY: ng, nmat, nf, m, chi + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: xbunit + +INTEGER :: ln !Line number +INTEGER :: iost ! IOSTAT status + +INTEGER, DIMENSION(nf) :: precf +INTEGER :: i, j, g, h, s,t,u,v + +! XTAB TYPE +TYPE :: XFILE + CHARACTER(LEN=100) :: fname ! XTAB File name + INTEGER :: cnum ! Composition number in the XTAB Files +END TYPE +TYPE(XFILE), DIMENSION(:), ALLOCATABLE :: xtab + +LOGICAL, DIMENSION(:), ALLOCATABLE :: noty !to check if this buffer was read or not? +INTEGER, PARAMETER :: xunit = 998 !XTAB file unit number +INTEGER, PARAMETER :: tunit = 999 !XTAB Buffer unit number +INTEGER :: comm ! Position of comment mark +INTEGER :: popt +INTEGER, DIMENSION(:), ALLOCATABLE :: group +INTEGER :: nskip !Number of lines to skip + +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit,*) ' >>>> READING TABULAR XSEC FILE <<<<' +WRITE(ounit,*) ' --------------------------------------------' + +READ(xbunit, *, IOSTAT=iost) ind, ln, ng, nmat !Read numbef of group and material +message = ' error in material number' +CALL er_message(ounit, iost, ln, message) + +ALLOCATE(chi(nmat,ng)) +ALLOCATE(xtab(nmat), noty(nmat), m(nmat)) +noty = .TRUE. + +! Reading input file for XTAB file names and composition number +DO i= 1, nmat + READ(xbunit, '(A2,I5,A200)', IOSTAT=iost) ind, ln, iline + iline = ADJUSTL(iline) !Adjust to left + comm = INDEX(iline, ' ') ! Get space position + xtab(i)%fname = iline(1:comm-1) !Get xtab file name + READ(iline(comm:100),*) xtab(i)%cnum ! Get composition number (convert to integer) + message = ' error in reading XTAB files' + CALL er_message(ounit, iost, ln, message) +END DO + +! Starting to read XTAB File, remove comments and write to buffer file +DO i = 1, nmat + IF (noty(i)) THEN !If this composition was not written in buffer + ! Open XTAB File + CALL openFile(xunit, xtab(i)%fname, 'XTAB', 'XTAB File Open Failed--status') + + ! Start removing comments and rewrite into one input XTAB buffer + CALL inp_comments(xunit, tunit, '*') + + !This loop to read another composition in the same XTAB file + DO j = i, nmat + ! If next material has the same file name + IF (TRIM(ADJUSTL(xtab(i)%fname)) == TRIM(ADJUSTL(xtab(j)%fname))) THEN + + !Read buffer file and saved the xsec and transient data + REWIND(tunit) + READ(tunit, *,IOSTAT=iost) ind, ln, m(j)%tadf, m(j)%trod ! Read input control + message = ' ERROR IN XTAB FILE ' // TRIM(ADJUSTL(xtab(j)%fname)) & + // ': CANNOT READ CONTROL PARAMETERS' + CALL er_message(ounit, iost, ln, message, XTAB=j) + + READ(tunit, *, IOSTAT=iost) ind, ln, m(j)%nd, m(j)%nb, m(j)%nf, m(j)%nm ! Read number of branch + message = ' ERROR IN XTAB FILE '// TRIM(ADJUSTL(xtab(j)%fname))& + // ': CANNOT READ BRANCH DIMENSION' + CALL er_message(ounit, iost, ln, message) + + ! Check branch dimension + IF (m(j)%nd < 1 .OR. m(j)%nb < 1 .OR. m(j)%nf < 1 .OR. m(j)%nm < 1) THEN + WRITE(ounit, *) ' ERROR: MINIMUM NUMBER OF BRANCH IS 1' + WRITE(*, *) ' ERROR: MINIMUM NUMBER OF BRANCH IS 1' + STOP + END IF + + ! Allocate and read branch paramaters + CALL branchPar(tunit, m(j)%nd, j, m(j)%pd, xtab(j)%fname, 'COOLANT DENSITY') ! Allocate and read coolant dens. branc paramaters + CALL branchPar(tunit, m(j)%nb, j, m(j)%pb, xtab(j)%fname, 'BORON CONCENTRATION') ! Allocate and read Boron conc. branc paramaters + CALL branchPar(tunit, m(j)%nf, j, m(j)%pf, xtab(j)%fname, 'FUEL TEMPERATURE') ! Allocate and read fule temp. branc paramaters + CALL branchPar(tunit, m(j)%nm, j, m(j)%pm, xtab(j)%fname, 'MODERATOR TEMPERATURE') ! Allocate and read moderator temp. branc paramaters + + ! ALLOCATE XSEC DATA + ALLOCATE(m(j)%velo(ng)) + ALLOCATE(m(j)%xsec(m(j)%nd, m(j)%nb, m(j)%nf, m(j)%nm)) + IF (m(j)%trod == 1) ALLOCATE(m(j)%rxsec(m(j)%nd, m(j)%nb, m(j)%nf, m(j)%nm)) + DO s = 1, m(j)%nd + DO t = 1, m(j)%nb + DO u = 1, m(j)%nf + DO v = 1, m(j)%nm + ALLOCATE(m(j)%xsec(s,t,u,v)%sigtr(ng)) + ALLOCATE(m(j)%xsec(s,t,u,v)%siga(ng)) + ALLOCATE(m(j)%xsec(s,t,u,v)%sigf(ng)) + ALLOCATE(m(j)%xsec(s,t,u,v)%nuf(ng)) + ALLOCATE(m(j)%xsec(s,t,u,v)%dc(ng,6)) + ALLOCATE(m(j)%xsec(s,t,u,v)%sigs(ng,ng)) + IF (m(j)%trod == 1) THEN + ALLOCATE(m(j)%rxsec(s,t,u,v)%sigtr(ng)) + ALLOCATE(m(j)%rxsec(s,t,u,v)%siga(ng)) + ALLOCATE(m(j)%rxsec(s,t,u,v)%sigf(ng)) + ALLOCATE(m(j)%rxsec(s,t,u,v)%nuf(ng)) + ALLOCATE(m(j)%rxsec(s,t,u,v)%dc(ng,6)) + ALLOCATE(m(j)%rxsec(s,t,u,v)%sigs(ng,ng)) + END IF + END DO + END DO + END DO + END DO + + ! Skip lines to read desired composition in the xtab file + nskip = ng*m(j)%nb*m(j)%nf*m(j)%nm + IF (m(j)%tadf == 1) THEN ! IF dc present + IF (m(j)%trod == 1) THEN + CALL skipRead(tunit, j, (xtab(j)%cnum-1)*(10*nskip+2*ng*nskip+4)) + ELSE + CALL skipRead(tunit, j, (xtab(j)%cnum-1)*(5*nskip+ng*nskip+4)) + END IF + ELSE IF (m(j)%tadf == 2) THEN + IF (m(j)%trod == 1) THEN + CALL skipRead(tunit, j, (xtab(j)%cnum-1)*(20*nskip+2*ng*nskip+4)) + ELSE + CALL skipRead(tunit, j, (xtab(j)%cnum-1)*(10*nskip+ng*nskip+4)) + END IF + ELSE + IF (m(j)%trod == 1) THEN + CALL skipRead(tunit, j, (xtab(j)%cnum-1)*(8*nskip+2*ng*nskip+4)) + ELSE + CALL skipRead(tunit, j, (xtab(j)%cnum-1)*(4*nskip+ng*nskip+4)) + END IF + END IF + + ! Read unrodded XSEC + CALL readXS (tunit, j, 0, m(j)%xsec) + ! Read rodded XSEC + IF (m(j)%trod == 1) CALL readXS (tunit, j, 1, m(j)%rxsec) + !Read fission spectrum + READ(tunit, *, IOSTAT=iost) ind, ln, (chi(j,g), g = 1, ng) + message = ' ERROR IN XTAB FILE: CANNOT READ FISSION SPECTRUM' + CALL er_message(ounit, iost, ln, message, XTAB=j) + !Read neutron Inverse velocity + READ(tunit, *, IOSTAT=iost) ind, ln, (m(j)%velo(g), g = 1, ng) + message = ' ERROR IN XTAB FILE: CANNOT READ Inverse Velocity' + CALL er_message(ounit, iost, ln, message, XTAB=j) + DO g = 1, ng + m(j)%velo(g) = 1._DP/m(j)%velo(g) !COnvert to velocity + END DO + ! Read decay constant + READ(tunit, *, IOSTAT=iost) ind, ln, (m(j)%lamb(t), t = 1, nf) + message = ' ERROR IN XTAB FILE: CANNOT READ DECAY CONSTANT' + CALL er_message(ounit, iost, ln, message, XTAB=j) + ! Read beta + READ(tunit, *, IOSTAT=iost) ind, ln, (m(j)%iBeta(t), t = 1, nf) + message = ' ERROR IN XTAB FILE: CANNOT READ DELAYED NEUTRON FRACTION' + CALL er_message(ounit, iost, ln, message, XTAB=j) + + ! If read, indicate that it has been read + noty(j) = .FALSE. + END IF + END DO + + ! Close XTAB File and buffer file + CLOSE(UNIT=xunit); CLOSE(UNIT=tunit) + END IF +END DO + +! XTAB PRINT OPTION +READ(xbunit, *, IOSTAT=iost) ind, ln, popt +IF (iost == 0 .AND. popt > 0) THEN + s = 1; t = 1; u = 1; v = 1 + ALLOCATE(group(ng)) + DO g = 1, ng + group(g) = g + END DO + DO j = 1, nf + precf(j) = j + END DO + DO i= 1, nmat + WRITE(ounit,*) + WRITE(ounit,1709) i + WRITE(ounit,'(A,I3)') ' XTAB FILE '// TRIM(ADJUSTL(xtab(i)%fname)) & + // '. COMPOSITION NUMBER', xtab(i)%cnum + WRITE(ounit,1707)'GROUP', 'TRANSPORT', 'DIFFUSION', 'ABSORPTION', & + 'NU*FISS', 'KAP*FIS','FISS. SPCTR', 'NEUTRON VELOCITY' + DO g= 1, ng + WRITE(ounit,1706) g, m(i)%xsec(s,t,u,v)%sigtr(g), & + 1./(3.*m(i)%xsec(s,t,u,v)%sigtr(g)), m(i)%xsec(s,t,u,v)%siga(g), & + m(i)%xsec(s,t,u,v)%nuf(g), m(i)%xsec(s,t,u,v)%sigf(g), chi(i,g), & + m(i)%velo(g), m(i)%xsec(s,t,u,v)%dc(g,1) + END DO + WRITE(ounit,*)' --SCATTERING MATRIX--' + WRITE(ounit,'(4X, A5, 20I11)') "G/G'", (group(g), g=1,ng) + DO g= 1, ng + WRITE(ounit,1015)g, (m(i)%xsec(s,t,u,v)%sigs(g,h), h=1,ng) + END DO + WRITE(ounit,*)' --BETA AND LAMBDA--' + WRITE(ounit,'(6X, A5, I9, 20I13)') "GROUP", (precf(j), j=1,nf) + WRITE(ounit,1016)'BETA ', (m(i)%ibeta(j), j = 1, nf) + WRITE(ounit,1016)'LAMBDA ', (m(i)%lamb(j), j = 1, nf) + END DO +END IF + +WRITE(ounit,*) +WRITE(ounit,*) ' ...XTAB FILE Card is successfully read...' + +1709 FORMAT(5X, 'MATERIAL', I3) +1707 FORMAT(2X, A7, A12, A13, A12, A11, A13, A15, A18) +1706 FORMAT(2X, I6, F13.6, 2F12.6, F13.6, ES14.5, F12.6, 2ES16.5) +1015 FORMAT(4X, I3, F16.6, 20F12.6) +1016 FORMAT(4X, A9, 20ES13.5) + +DEALLOCATE(xtab, noty) + +END SUBROUTINE inp_xtab + +!******************************************************************************! + +SUBROUTINE branchPar (tunit, dim, matnum, par, fname, messPar) + +!Purpose: To allocate and read branch paramaters + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: tunit, dim, matnum +CHARACTER(LEN=*), INTENT(IN) :: messPar, fname +REAL(DP), DIMENSION(:), ALLOCATABLE, INTENT(INOUT) :: par + +INTEGER :: k +INTEGER :: ln, iost + +IF (dim > 1) THEN ! If branch DIMENSION > 1 + ALLOCATE(par(dim)) + READ(tunit, *, IOSTAT=iost) ind, ln, par(1:dim) + message = ' ERROR IN XTAB FILE '// TRIM(ADJUSTL(fname))& + // ': CANNOT READ BRANCH PARAMETERS ' // messPar + CALL er_message(ounit, iost, ln, message, XTAB=matnum) + DO k = 2, dim + IF (par(k-1) > par(k)) THEN + WRITE(ounit,*) " ERROR IN XTAB FILE ", fname + WRITE(ounit,*) " ", messPar, " PARAMETER SHALL BE IN ORDER, SMALL to BIG" + WRITE(*,*) " ERROR IN XTAB FILE ", fname + WRITE(*,*) " ", messPar, " PARAMETER SHALL BE IN ORDER, SMALL to BIG" + STOP + END IF + END DO +ELSE + ALLOCATE(par(1)) + par(1) = 0.0 !Arbitrary +END IF + +END SUBROUTINE branchPar + +!******************************************************************************! + +SUBROUTINE readXS (tunit, mnum, rod, xsec) +!Purpose: To read xsec in XTAB file + +USE sdata, ONLY: m, ng, XBRANCH +IMPLICIT NONE + +INTEGER, INTENT(IN) :: tunit, mnum, rod ! file unit number, material number, and rod indicator +TYPE(XBRANCH), DIMENSION(:,:,:,:), INTENT(INOUT) :: xsec !Set INOUT, see: http://www.cs.rpi.edu/~szymansk/OOF90/bugs.html#2 +INTEGER :: iost, ln +INTEGER :: g, h, s, t, u, v, k + +!Read sigtr +DO g = 1, ng + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%sigtr(g), s = 1, m(mnum)%nd) + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ TRANSPORT XSEC' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED TRANSPORT XSEC' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO +END DO +!Read siga +DO g = 1, ng + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%siga(g), s = 1, m(mnum)%nd) + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ ABSORPTION XSEC' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED ABSORPTION XSEC' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO +END DO +!Read nu*sigf +DO g = 1, ng + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%nuf(g), s = 1, m(mnum)%nd) + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ NU*SIGF XSEC' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED NU*SIGF XSEC' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO +END DO +!Read kappa*sigf +DO g = 1, ng + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%sigf(g), s = 1, m(mnum)%nd) + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ KAPPA*SIGF XSEC' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED KAPPA*SIGF XSEC' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO +END DO +!Read sigs +DO g = 1, ng + DO h = 1, ng + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%sigs(g,h), s = 1, m(mnum)%nd) + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ SCATTERING XSEC' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED SCATTERING XSEC' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO + END DO +END DO +!Read dc +IF (m(mnum)%tadf == 1) THEN ! IF dc present + DO g = 1, ng + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%dc(g,1), s = 1, m(mnum)%nd) + DO k = 1, 6 + DO s = 1, m(mnum)%nd + xsec(s,t,u,v)%dc(g,k) = xsec(s,t,u,v)%dc(g,1) + END DO + END DO + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ ADFs' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED ADFs' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO + END DO +ELSE IF (m(mnum)%tadf == 2) THEN + DO g = 1, ng + DO k = 1, 6 + DO v = 1, m(mnum)%nm + DO u = 1, m(mnum)%nf + DO t = 1, m(mnum)%nb + READ(tunit, *, IOSTAT=iost) ind, ln, & + (xsec(s,t,u,v)%dc(g,k), s = 1, m(mnum)%nd) + IF (rod == 0) THEN + message = ' ERROR IN XTAB FILE: CANNOT READ ADFs' + ELSE + message = ' ERROR IN XTAB FILE: CANNOT READ RODDED TRANSPORT ADFs' + END IF + CALL er_message(ounit, iost, ln, message, XTAB=mnum) + END DO + END DO + END DO + END DO + END DO +ELSE + CONTINUE +END IF + + +END SUBROUTINE readXS + +!******************************************************************************! + +SUBROUTINE skipRead (iunit,matnum, nskip) +!Purpose: To allocate and read branch paramaters + +IMPLICIT NONE + +INTEGER, INTENT(IN) :: iunit, matnum, nskip +INTEGER :: i, eof + +DO i = 1, nskip + READ (iunit, *, IOSTAT=eof) + IF (eof < 0) THEN !Check end of file + WRITE(ounit,1131) matnum + WRITE(ounit,1132) + WRITE(*,1131) matnum + WRITE(*,1132) + STOP + END IF +END DO + +1131 FORMAT(2X, 'ERROR: END OF FILE REACHED FOR XTAB FILE IN MATERIAL NUMBER ', I3) +1132 FORMAT(2X, 'ADPRES IS STOPPING') + +END SUBROUTINE skipRead + +END MODULE diff --git a/src/mod_nodal.f90 b/src/mod_nodal.f90 new file mode 100644 index 0000000..b52e539 --- /dev/null +++ b/src/mod_nodal.f90 @@ -0,0 +1,1453 @@ +module nodal + + use sdata, only: dp + implicit none + save + + integer :: cmode + real(dp), dimension(:,:), allocatable :: Bcn, Bcp ! Buckling for left and right nodes + real(dp), dimension(:), allocatable :: An, Bn, En, Fn, Gn, Hn + real(dp), dimension(:), allocatable :: Ap, Bp, Ep, Fp, Gp, Hp + real(dp), dimension(:), allocatable :: Lm2 ! Second order source + real(dp), dimension(:,:), allocatable :: S1, S2, S3 ! zeroth order source in x, y, and z directions + +contains + + !****************************************************************************! + + subroutine nodal_update(cal_mode) + + !Purpose: to calculate flux expansion coefficients using SANM + + + use sdata, only: ng, xyz, ystag, xstag, nyy, nzz, nxx, & + a1n, a2n, a3n, a4n, a1p, a2p, a3p, a4p, ndmax, & + Ln1, Lp1, xeast, xwest, ysouth, ynorth, zbott, ztop + + implicit none + + integer, intent(in) :: cal_mode !Calc. mode -> 0=adjoint, 1=forward + + integer :: n, p + integer :: i, j, k + logical :: first =.true. + + if (first) then + allocate(a1n(ng), a2n(ng), a3n(ng), a4n(ng)) + allocate(a1p(ng), a2p(ng), a3p(ng), a4p(ng)) + first = .false. + end if + + allocate(Ln1(ng), Lp1(ng)) + allocate(Bcn(ng,ng), Bcp(ng,ng)) + allocate(An(ng), Bn(ng), En(ng), Fn(ng), Gn(ng), Hn(ng)) + allocate(Ap(ng), Bp(ng), Ep(ng), Fp(ng), Gp(ng), Hp(ng)) + allocate(Lm2(ng)) + + cmode = cal_mode + + call get_source() + + + !Node sweeps in x-direction + do k = 1, nzz + do j = 1, nyy + p = xyz(ystag(j)%smin,j,k) + Bcp = get_B(1,p) + call get_ABEFGH (p,1,Ap,Bp,Ep,Fp,Gp,Hp) + call get_coefs_first(xwest, 1, p) + call nodal_coup_upd(1, a1p, a2p, a3p, a4p, p = p) + do i = ystag(j)%smin, ystag(j)%smax-1 + n = xyz(i,j,k); p = xyz(i+1,j,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + Bcp = get_B(1,p) + call get_ABEFGH (p,1,Ap,Bp,Ep,Fp,Gp,Hp) + call get_coefs(1, n, p) + call nodal_coup_upd(1, a1n, a2n, a3n, a4n, n, p) + end do + n = xyz(ystag(j)%smax,j,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + call get_coefs_last(xeast, 1, n) + call nodal_coup_upd(1, a1n, a2n, a3n, a4n, n = n) + end do + end do + + !Node sweeps in y-direction + do k = 1, nzz + do i = 1, nxx + p = xyz(i,xstag(i)%smin,k) + Bcp = get_B(2,p) + call get_ABEFGH (p,2,Ap,Bp,Ep,Fp,Gp,Hp) + call get_coefs_first(ysouth, 2, p) + call nodal_coup_upd(2, a1p, a2p, a3p, a4p, p = p) + do j = xstag(i)%smin, xstag(i)%smax-1 + n = xyz(i,j,k); p = xyz(i,j+1,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + Bcp = get_B(2,p) + call get_ABEFGH (p,2,Ap,Bp,Ep,Fp,Gp,Hp) + call get_coefs(2, n, p) + call nodal_coup_upd(2, a1n, a2n, a3n, a4n, n, p) + end do + n = xyz(i,xstag(i)%smax,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + call get_coefs_last(ynorth, 2, n) + call nodal_coup_upd(2, a1n, a2n, a3n, a4n, n = n) + end do + end do + + !Node sweeps in z-direction + do j = 1, nyy + do i = ystag(j)%smin, ystag(j)%smax + p = xyz(i,j,1) + Bcp = get_B(3,p) + call get_ABEFGH (p,3,Ap,Bp,Ep,Fp,Gp,Hp) + call get_coefs_first(zbott, 3, p) + call nodal_coup_upd(3, a1p, a2p, a3p, a4p, p = p) + do k = 1, nzz-1 + n = xyz(i,j,k); p = xyz(i,j,k+1) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + Bcp = get_B(3,p) + call get_ABEFGH (p,3,Ap,Bp,Ep,Fp,Gp,Hp) + call get_coefs(3, n, p) + call nodal_coup_upd(3, a1n, a2n, a3n, a4n, n, p) + end do + n = xyz(i,j,nzz) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + call get_coefs_last(ztop, 3, n) + call nodal_coup_upd(3, a1n, a2n, a3n, a4n, n = n) + end do + end do + + deallocate(Ln1, Lp1, Bcp, Bcn, Lm2) + deallocate(An, Bn, En, Fn, Gn, Hn) + deallocate(Ap, Bp, Ep, Fp, Gp, Hp) + + if (ndmax > 1.e3) then + write(*,*) + write(*,1236) ndmax + write(*,*)"The two-node nonlinear iteration seems not stable." + write(*,*)"Try to reduce time step size for transient..." + write(*,*)"and/or change iteration control using %ITER card, ..." + write(*,*)"perhaps by making nodal update less frequent." + write(*,*)"Or increase number inner iteration per outer iteration." + write(*,*)"If this error persists, contact me at makrus.imron@gmail.com" + write(*,*)"Thank you for using ADPRES" + stop + end if + + 1236 format(" Error: Max. change in nodal coupling coefficient = ", F10.1) + + + end subroutine nodal_update + + !****************************************************************************! + + subroutine nodal_update_pnm(cal_mode) + + !Purpose: to calculate flux expansion coefficients using PNM + + + use sdata, only: ng, xyz, ystag, xstag, nyy, nzz, nxx, & + a1n, a2n, a3n, a4n, a1p, a2p, a3p, a4p, ndmax, & + Ln1, Lp1, xeast, xwest, ysouth, ynorth, zbott, ztop + + implicit none + + integer, intent(in) :: cal_mode !Calc. mode -> 0=adjoint, 1=forward + + integer :: n, p + integer :: i, j, k + logical :: first =.true. + + if (first) then + allocate(a1n(ng), a2n(ng), a3n(ng), a4n(ng)) + allocate(a1p(ng), a2p(ng), a3p(ng), a4p(ng)) + first = .false. + end if + + allocate(Ln1(ng), Lp1(ng)) + allocate(Bcn(ng,ng), Bcp(ng,ng)) + allocate(An(ng), Bn(ng), En(ng), Fn(ng), Gn(ng), Hn(ng)) + allocate(Ap(ng), Bp(ng), Ep(ng), Fp(ng), Gp(ng), Hp(ng)) + allocate(Lm2(ng)) + + An = 1._dp / 15._dp; Bn = 1._dp / 35._dp; En = 2._dp / 7._dp + Fn = 2._dp / 5._dp; Gn = 10._dp; Hn = 6._dp + Ap = An; Bp = Bn; Ep = En; Fp = Fn; Gp = Gn; Hp = Hn + + cmode = cal_mode + + call get_source() + + + !Node sweeps in x-direction + do k = 1, nzz + do j = 1, nyy + p = xyz(ystag(j)%smin,j,k) + Bcp = get_B(1,p) + call get_coefs_first(xwest, 1, p) + call nodal_coup_upd(1, a1p, a2p, a3p, a4p, p = p) + do i = ystag(j)%smin, ystag(j)%smax-1 + n = xyz(i,j,k); p = xyz(i+1,j,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + Bcp = get_B(1,p) + call get_coefs(1, n, p) + call nodal_coup_upd(1, a1n, a2n, a3n, a4n, n, p) + end do + n = xyz(ystag(j)%smax,j,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + call get_coefs_last(xeast, 1, n) + call nodal_coup_upd(1, a1n, a2n, a3n, a4n, n = n) + end do + end do + + !Node sweeps in y-direction + do k = 1, nzz + do i = 1, nxx + p = xyz(i,xstag(i)%smin,k) + Bcp = get_B(2,p) + call get_coefs_first(ysouth, 2, p) + call nodal_coup_upd(2, a1p, a2p, a3p, a4p, p = p) + do j = xstag(i)%smin, xstag(i)%smax-1 + n = xyz(i,j,k); p = xyz(i,j+1,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + Bcp = get_B(2,p) + call get_coefs(2, n, p) + call nodal_coup_upd(2, a1n, a2n, a3n, a4n, n, p) + end do + n = xyz(i,xstag(i)%smax,k) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + call get_coefs_last(ynorth, 2, n) + call nodal_coup_upd(2, a1n, a2n, a3n, a4n, n = n) + end do + end do + + !Node sweeps in z-direction + do j = 1, nyy + do i = ystag(j)%smin, ystag(j)%smax + p = xyz(i,j,1) + Bcp = get_B(3,p) + call get_coefs_first(zbott, 3, p) + call nodal_coup_upd(3, a1p, a2p, a3p, a4p, p = p) + do k = 1, nzz-1 + n = xyz(i,j,k); p = xyz(i,j,k+1) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + Bcp = get_B(3,p) + call get_coefs(3, n, p) + call nodal_coup_upd(3, a1n, a2n, a3n, a4n, n, p) + end do + n = xyz(i,j,nzz) + Bcn = Bcp + An = Ap; Bn = Bp; En = Ep; Fn = Fp; Gn = Gp; Hn = Hp + call get_coefs_last(ztop, 3, n) + call nodal_coup_upd(3, a1n, a2n, a3n, a4n, n = n) + end do + end do + + deallocate(Ln1, Lp1, Bcp, Bcn, Lm2) + deallocate(An, Bn, En, Fn, Gn, Hn) + deallocate(Ap, Bp, Ep, Fp, Gp, Hp) + + if (ndmax > 1.e3) then + write(*,*) + write(*,1236) ndmax + write(*,*)"The two-node nonlinear iteration seems not stable." + write(*,*)"Try to reduce time step size for transient..." + write(*,*)"and/or change iteration control using %ITER card, ..." + write(*,*)"perhaps by making nodal update less frequent." + write(*,*)"Or increase number inner iteration per outer iteration." + write(*,*)"If this error persists, contact me at makrus.imron@gmail.com" + write(*,*)"Thank you for using ADPRES" + stop + end if + + 1236 format(" Error: Max. change in nodal coupling coefficient = ", F10.1) + + + end subroutine nodal_update_pnm + + !****************************************************************************! + + subroutine nodal_coup_upd(u, a1, a2, a3, a4, n, p) + + !Purpose: to update nodal coupling coefficients + + + use sdata, only: ng, ix, iy, iz, D, xdel, ydel, zdel, nod, f0, & + ndmax, im, jm, km + + implicit none + + integer, intent(in) :: u + integer, intent(in), optional :: n, p + real(dp), dimension(:), intent(in) :: a1, a2, a3, a4 + + integer :: g, sf + real(dp) :: dh, jp, nder, ndpr + + if (u == 1) then + if (present(n)) then + dh = xdel(ix(n)) + else + dh = xdel(ix(p)) + end if + sf = 1 + else if (u == 2) then + if (present(n)) then + dh = ydel(iy(n)) + else + dh = ydel(iy(p)) + end if + sf = 3 + else + if (present(n)) then + dh = zdel(iz(n)) + else + dh = zdel(iz(p)) + end if + sf = 5 + end if + + if (present(n) .and. present(p)) then + do g = 1, ng + jp = -2._dp*D(n,g)/dh * (a1(g)+3._dp*a2(g)+Hn(g)*a3(g)+Gn(g)*a4(g)) + + ! Update nodal coupling + ndpr = nod(n,g)%dn(sf) + nod(n,g)%dn(sf) = (nod(n,g)%df(sf) * (f0(n,g) - f0(p,g)) - jp) & + / (f0(n,g) + f0(p,g)) + nod(p,g)%dn(sf+1) = nod(n,g)%dn(sf) + + ! Check max difference on new nodal coupling coefficients + nder = ABS(nod(n,g)%dn(sf) - ndpr) + if (nder > ndmax) then + ndmax = nder + im = ix(n); jm = iy(n); km = iz(n) + end if + end do + else if (present(p)) then + do g = 1, ng + jp = -2._dp*D(p,g)/dh*(a1(g)-3._dp*a2(g)+Hp(g)*a3(g)-Gp(g)*a4(g)) + + ! Update nodal coupling + ndpr = nod(p,g)%dn(sf+1) + nod(p,g)%dn(sf+1) = -(jp / f0(p,g) + nod(p,g)%df(sf+1)) + + ! Check max difference on new nodal coupling coefficients + nder = ABS(nod(p,g)%dn(sf+1) - ndpr) + if (nder > ndmax) then + ndmax = nder + im = ix(p); jm = iy(p); km = iz(p) + end if + end do + else + do g = 1, ng + jp = -2._dp*D(n,g)/dh*(a1(g)+3._dp*a2(g)+Hn(g)*a3(g)+Gn(g)*a4(g)) + + ! Update nodal coupling + ndpr = nod(n,g)%dn(sf) + nod(n,g)%dn(sf) = -(jp / f0(n,g) - nod(n,g)%df(sf)) + + ! Check max difference on new nodal coupling coefficients + nder = ABS(nod(n,g)%dn(sf) - ndpr) + if (nder > ndmax) then + ndmax = nder + im = ix(n); jm = iy(n); km = iz(n) + end if + end do + end if + + end subroutine nodal_coup_upd + + !****************************************************************************! + + subroutine get_coefs_first(bc, u, p) + + !Purpose: to calculate flux expansion coefficients + + + use sdata, only: ng, a1p, a2p, a3p, a4p, Lp1 + + implicit none + + integer, intent(in) :: bc + integer, intent(in) :: u, p + + real(dp), dimension(ng,ng) :: A ! GxG Matrix + real(dp), dimension(ng) :: b ! G vector + + !Setup GxG matrix and G vector to obtain a2(g) for node p + call get_a2matvec(u,p,A,b) + !calculate a2 expansion coefficients4 + a2p = LU_solve(p,ng,A,b) + !calculate a4 expansion coefficients + a4p = get_a4(a2p) + + !Setup GxG matrix and G vector to obtain a1(g) for left right node + call get_a1matvec_first(bc, u, p, a2p, a4p, A, b) + + !calculate a1 expansion coefficients + a1p = LU_solve(p,ng,A,b) + + !calculate a3 expansion coefficients + a3p = get_a3(2,a1p,Lp1) + + end subroutine get_coefs_first + + !****************************************************************************! + + subroutine get_coefs_last(bc, u, n) + + !Purpose: to calculate flux expansion coefficients + + + use sdata, only: ng, a1n, a2n, a3n, a4n, a2p, a4p, Ln1 + + implicit none + + integer, intent(in) :: bc + integer, intent(in) :: u, n + + real(dp), dimension(ng,ng) :: A ! GxG Matrix + real(dp), dimension(ng) :: b ! G vector + + !get a2n and a4n expansion coefficients + a2n = a2p + a4n = a4p + + !Setup GxG matrix and G vector to obtain a1(g) for most right node + call get_a1matvec_last(bc, u, n, a2n, a4n, A, b) + + !calculate a1 expansion coefficients + a1n = LU_solve(n,ng,A,b) + + !calculate a3 expansion coefficients + a3n = get_a3(1,a1n,Ln1) + + end subroutine get_coefs_last + + !****************************************************************************! + + subroutine get_coefs(u, n, p) + + !Purpose: to calculate flux expansion coefficients + + + use sdata, only: ng, a1n, a2n, a3n, a4n, a2p, a4p, Ln1 + + implicit none + + integer, intent(in) :: u, n, p + + real(dp), dimension(ng,ng) :: A ! GxG Matrix + real(dp), dimension(ng) :: b ! G vector + real(dp), dimension(2*ng,2*ng) :: R ! 2Gx2G Matrix + real(dp), dimension(2*ng) :: s ! 2G vector + + !get a2n and a4n expansion coefficients + a2n = a2p + a4n = a4p + + !Setup GxG matrix and G vector to obtain a2(g) for node p + call get_a2matvec(u,p,A,b) + !calculate a2 expansion coefficients + a2p = LU_solve(p,ng,A,b) + !calculate a4 expansion coefficients + a4p = get_a4(a2p) + + !Setup 2Gx2G matrix and 2G vector to obtain a1(g) for node n + call get_a1matvec(u, n, p, a2n, a4n, a2p, a4p, R, s) + + !calculate a1 expansion coefficients + s = LU_solve(n,2*ng,R,s) + a1n = s(1:ng) + + !calculate a3 expansion coefficients + a3n = get_a3(1,a1n,Ln1) + + end subroutine get_coefs + + !****************************************************************************! + + subroutine get_a1matvec_first(bc, u, p, a2p, a4p, A, b) + + !Purpose: To get matrix vector to calculate a1 for most left node + + + use sdata, only: ng, xdel, ydel, zdel, ix, iy, iz, f0, D, Lp1, dc + + implicit none + + integer, intent(in) :: bc + integer, intent(in) :: u, p ! Direction and node n umber + real(dp), dimension(:), intent(in) :: a2p, a4p ! a2 and a4 expansion coefficients + real(dp), dimension(:,:), intent(out):: A ! 2Gx2G Materix + real(dp), dimension(:), intent(out) :: b ! 2G vector + + real(dp) :: dn + real(dp) :: Pp !dif. coef/dx + integer :: g, h, sf + + ! define node size in direction u + if (u == 1) then + dn = xdel(ix(p)) + sf = 2 + else if (u == 2) then + dn = ydel(iy(p)) + sf = 4 + else + dn = zdel(iz(p)) + sf = 6 + end if + + do g = 1, ng + !Calculate transverse leakage first moment + call TLUpd1 (u,p,g,Lp1(g)) + Pp = 2._dp * D(p,g) / dn + + !Setup GxG matrix A and G vector B to obtain a2(g) + if (bc == 2) then + do h = 1, ng + if (h == g) then + A(g,g) = Pp * (Bcp(g,h)*Fp(g) + 1._dp) + else + A(g,h) = Pp*Bcp(g,h)*Fp(g) + end if + end do + b(g) = Pp * (3._dp*a2p(g) + Gp(g)*a4p(g) - Fp(g)*Lp1(g)) + else if (bc == 1) then + do h = 1, ng + if (h == g) then + A(g,g) = -dc(p,g,sf) * (1._dp + Ap(g)*Bcp(g,h)) & + - 2._dp*Pp*(Ap(g)*Bcp(g,h)*Hp(g)+1._dp) + else + A(g,h) = -dc(p,g,sf)*Ap(g)*Bcp(g,h) - 2._dp*Pp*Ap(g)*Bcp(g,h)*Hp(g) + end if + end do + b(g) = 2._dp*Pp*(Ap(g)*Hp(g)*Lp1(g) - 3._dp*a2p(g) - Gp(g)*a4p(g)) & + - dc(p,g,sf) * (a2p(g) + a4p(g) + f0(p,g) - Ap(g)*Lp1(g)) + else + do h = 1, ng + if (h == g) then + A(g,g) = dc(p,g,sf) * (1._dp + Ap(g)*Bcp(g,h)) + else + A(g,h) = dc(p,g,sf)*Ap(g)*Bcp(g,h) + end if + end do + b(g) = dc(p,g,sf) * (a2p(g) + a4p(g) + f0(p,g) - Ap(g) * Lp1(g)) + end if + end do + + end subroutine get_a1matvec_first + + !****************************************************************************! + + subroutine get_a1matvec_last(bc, u, n, a2n, a4n, A, b) + + !Purpose: To get matrix vector to calculate a1 for most right node + + + use sdata, only: ng, xdel, ydel, zdel, ix, iy, iz, f0, D, Lp1, Ln1, dc + + implicit none + + integer, intent(in) :: bc + integer, intent(in) :: u, n ! Direction and node number + real(dp), dimension(:), intent(in) :: a2n, a4n ! a2 and a4 expansion coefficients + real(dp), dimension(:,:), intent(out):: A ! 2Gx2G Materix + real(dp), dimension(:), intent(out) :: b ! 2G vector + + real(dp) :: dn + real(dp) :: Pn !dif. coef/dx + integer :: g, h, sf + + ! define node size in direction u + if (u == 1) then + dn = xdel(ix(n)) + sf = 1 + else if (u == 2) then + dn = ydel(iy(n)) + sf = 3 + else + dn = zdel(iz(n)) + sf = 5 + end if + + + do g = 1, ng + Ln1(g) = Lp1(g) + Pn = 2._dp * D(n,g) / dn + + !Setup 2Gx2G matrix A and 2G vector B to obtain a2(g) + if (bc == 2) then + do h = 1, ng + if (h == g) then + A(g,g) = -Pn * (Bcn(g,h)*Fn(g) + 1._dp) + else + A(g,h) = -Pn*Bcn(g,h)*Fn(g) + end if + end do + b(g) = Pn * (3._dp*a2n(g) + Gn(g)*a4n(g) + Fn(g)*Ln1(g)) + else if (bc == 1) then + do h = 1, ng + if (h == g) then + A(g,g) = dc(n,g,sf) * (1._dp + An(g)*Bcn(g,h)) & + + 2._dp*Pn*(An(g)*Bcn(g,h)*Hn(g)+1._dp) + else + A(g,h) = dc(n,g,sf)*An(g)*Bcn(g,h) + 2._dp*Pn*An(g)*Bcn(g,h)*Hn(g) + end if + end do + b(g) = -2._dp*Pn*(An(g)*Hn(g)*Ln1(g) + 3._dp*a2n(g) + Gn(g)*a4n(g)) & + - dc(n,g,sf) * (a2n(g) + a4n(g) + f0(n,g) + An(g)*Ln1(g)) + else + do h = 1, ng + if (h == g) then + A(g,g) = dc(n,g,sf) * (1._dp + An(g)*Bcn(g,h)) + else + A(g,h) = dc(n,g,sf)*An(g)*Bcn(g,h) + end if + end do + b(g) = -dc(n,g,sf) * (a2n(g) + a4n(g) + f0(n,g) + An(g) * Ln1(g)) + end if + end do + + + end subroutine get_a1matvec_last + + !****************************************************************************! + + subroutine get_a1matvec(u, n, p, a2n, a4n, a2p, a4p, A,b) + + !Purpose: To setup 2Gx2G matrix and 2G vector to get a1 expansion coefficients + + + use sdata, only: ng, xdel, ydel, zdel, ix, iy, iz, D, f0, Ln1, Lp1, dc + + implicit none + + integer, intent(in) :: u, n, p ! Direction and node number + real(dp), dimension(:), intent(in) :: a2n, a4n ! a2 and a4 expansion coefficients + real(dp), dimension(:), intent(in) :: a2p, a4p ! a2 and a4 expansion coefficients + real(dp), dimension(:,:), intent(out):: A ! 2Gx2G Materix + real(dp), dimension(:), intent(out) :: b ! 2G vector + + real(dp) :: hn, hp + real(dp), dimension(ng) :: Pn, Pp !dif. coef/dx + integer :: g, h, sf + + ! define node size in direction u + if (u == 1) then + hn = xdel(ix(n)); hp = xdel(ix(p)) + sf = 1 + else if (u == 2) then + hn = ydel(iy(n)); hp = ydel(iy(p)) + sf = 3 + else + hn = zdel(iz(n)); hp = zdel(iz(p)) + sf = 5 + end if + + do g = 1, ng + ! Calculate transverse leakage moments + Ln1(g) = Lp1(g) + call TLUpd1 (u,p,g,Lp1(g)) + + !Setup 2Gx2G matrix A and 2G vector B to obtain a2(g) + Pn(g) = 2._dp*D(n,g) / hn; Pp(g) = 2._dp*D(p,g) / hp + do h = 1, ng + if (h == g) then + A(g,g) = -Pn(g) * (Bcn(g,h)*Fn(g) + 1._dp) + A(g,g+ng) = Pp(g) * (Bcp(g,h)*Fp(g) + 1._dp) + else + A(g,h) = -Pn(g)*Bcn(g,h)*Fn(g) + A(g,h+ng) = Pp(g)*Bcp(g,h)*Fp(g) + end if + end do + b(g) = Pn(g) * (3._dp*a2n(g) + Gn(g)*a4n(g) + Fn(g)*Ln1(g)) & + + Pp(g) * (3._dp*a2p(g) + Gp(g)*a4p(g) - Fp(g)*Lp1(g)) + ! write(*,*) Fn(g)*Ln1(g) + end do + ! stop + do g = 1, ng + do h = 1, ng + if (h == g) then + A(g+ng,g) = dc(n,g,sf) * (Bcn(g,h)*An(g) + 1._dp) + A(g+ng,g+ng) = dc(p,g,sf+1) * (Bcp(g,h)*Ap(g) + 1._dp) + else + A(g+ng,h) = dc(n,g,sf) * Bcn(g,h) * An(g) + A(g+ng,h+ng) = dc(p,g,sf+1) * Bcp(g,h) * Ap(g) + end if + end do + ! Create vector b + b(g+ng) = dc(p,g,sf+1) * (a2p(g) + a4p(g) + f0(p,g) - An(g)*Ln1(g)) & + - dc(n,g,sf) * (a2n(g) + a4n(g) + f0(n,g) + Ap(g)*Lp1(g)) + end do + + + end subroutine get_a1matvec + + !****************************************************************************! + + function get_a3(cp,a1,Lmn1) result (a3) + + !Purpose: To get a3 expansion coefficients + + + use sdata, only: ng + implicit none + + integer, intent(in) :: cp ! to indicate left or right node + real(dp), dimension(:), intent(in) :: a1 ! a1 expansion coefficients + real(dp), dimension(:), intent(in) :: Lmn1 ! First transverse leakage moments + real(dp), dimension(ng) :: a3 ! a3 expansion coefficients + + real(dp) :: Bf + real(dp), dimension(ng,ng) :: Bc + real(dp), dimension(ng) :: Ac + integer :: g, h + + if (cp == 1) then + Bc = Bcn + Ac = An + else + Bc = Bcp + Ac = Ap + end if + + do g = 1, ng + Bf = 0._dp + do h = 1, ng + Bf = Bf + Bc(g,h)*a1(h) + end do + a3(g) = Ac(g) * (Bf + Lmn1(g)) + end do + + end function get_a3 + + !****************************************************************************! + + function get_a4(a2) result (a4) + + !Purpose: To get a4 expansion coefficients + + + use sdata, only: ng + + + implicit none + + real(dp), dimension(:), intent(in) :: a2 ! a2 expansion coefficients + real(dp), dimension(ng) :: a4 ! a4 expansion coefficients + + real(dp) :: Bf + integer :: g, h + + do g = 1, ng + Bf = 0._dp + do h = 1, ng + Bf = Bf + Bcp(g,h) * a2(h) + end do + + a4(g) = Bp(g) * (Bf + Lm2(g)) + end do + + end function get_a4 + + !****************************************************************************! + + subroutine get_a2matvec(u,n,A,b) + + !Purpose: To setup GxG matrix and b vector to get a2 expansion coefficients + + + use sdata, only: ng, D, f0, exsrc, xdel, ydel, zdel, ix, iy, iz + + implicit none + + integer, intent(in) :: u, n ! Direction and node number + real(dp), dimension(:,:), intent(out):: A ! GxG Materix + real(dp), dimension(:), intent(out) :: b ! G vector + + real(dp) :: S + real(dp), dimension(ng) :: Bf + integer :: g, h + + !Setup GxG matrix and G vector to obtain a2(g) + Bf = 0._dp + do g = 1, ng + !update zeroth source + if (cmode == 2) then + if (u == 1) then + S = 0.25_dp * xdel(ix(n))**2 / D(n,g) * S1(n,g) + else if (u == 2) then + S = 0.25_dp * ydel(iy(n))**2 / D(n,g) * S2(n,g) + else + S = 0.25_dp * zdel(iz(n))**2 / D(n,g) * S3(n,g) + end if + else + if (u == 1) then + S = 0.25_dp * xdel(ix(n))**2 / D(n,g) * (S1(n,g) - exsrc(n,g)) + else if (u == 2) then + S = 0.25_dp * ydel(iy(n))**2 / D(n,g) * (S2(n,g) - exsrc(n,g)) + else + S = 0.25_dp * zdel(iz(n))**2 / D(n,g) * (S3(n,g) - exsrc(n,g)) + end if + end if + + + ! Create matrix A + do h = 1, ng + if (h == g) then + A(g,g) = Bcp(g,h) * Ep(g) + 3._dp + else + A(g,h) = Bcp(g,h) * Ep(g) + end if + Bf(g) = Bf(g) + Bcp(g,h) * f0(n,h) + end do + + ! Get second moment transverse leakage + call TLUpd2 (u,n,g,Lm2(g)) + + b(g) = Bf(g) - Ep(g)*Lm2(g) + S + end do + + end subroutine get_a2matvec + + !******************************************************************************! + + function LU_solve(nt,msize,mat,b) result(x) + + ! + ! Purpose: + ! To solve Ax=b by LU decomposition + ! + + USE io, ONLY: ounit + USE sdata, ONLY: ix, iy, iz + + implicit none + + integer, intent(in) :: nt, msize ! node and and matrix size + real(dp), dimension(:,:), intent(in) :: mat ! the matrix A + real(dp), dimension(:), intent(in) :: b ! the vector b + real(dp), dimension(msize) :: x ! the vector b + + real(dp), dimension(msize,msize) :: L, U + real(dp), dimension(msize) :: y + real(dp) :: piv, isum + integer :: i, j, k + + U = mat + L = 0._dp + + ! Start matrix decomposition + do i= 1, msize + if (ABS(mat(i,i)) < 10e-5) then + write(ounit,*) 'ERROR IN MATRIX DECOMP: DIAGONAL ELEMENTS CLOSE TO ZERO' + write(ounit,2001) ix(nt), iy(nt), iz(nt) + write(*,*) 'ERROR IN MATRIX DECOMP: DIAGONAL ELEMENTS CLOSE TO ZERO' + write(*,2001) ix(nt), iy(nt), iz(nt) + STOP + end if + L(i,i) = 1._DP + do j= i+1, msize + piv = U(j,i)/U(i,i) + L(j,i) = piv + do k= i, msize + U(j,k) = U(j,k) - piv*U(i,k) + end do + U(j,i) = 0._dp + end do + end do + + + !Solve y in Ly = b (Forward substitution) + y(1) = b(1) + do i=2,msize + isum = 0._dp + do k =1, i-1 + isum = isum + L(i,k)*y(k) + end do + y(i) = b(i)-isum + end do + + ! Solve x in Ux=y(Backward substitution) + x(msize) = y(msize)/U(msize,msize) + do i = msize-1,1,-1 + isum = 0._dp + do k =i+1,msize + isum = isum + U(i,k)*x(k) + end do + x(i) = (y(i)-isum) / U(i,i) + end do + + 2001 FORMAT(2X, 'I = ', I2, ', J = ', I2, ', K = ', I2) + + end function LU_solve + + !******************************************************************************! + + SUBROUTINE Lxyz (n,g,L1, L2, L3) + + USE sdata, ONLY: nod, f0, xyz, ix, iy, iz, ystag, xstag, nzz, & + xeast, xwest, ysouth, ynorth, zbott, ztop, & + xdel, ydel, zdel + + ! Purpose: + ! To update Transverse leakages for group g and nod n + + implicit none + + integer, intent(in) :: n, g + real(dp), intent(out) :: L1, L2, L3 + + real(dp) :: jp, jm + integer :: p, m + integer :: i, j, k + + ! set i, j, k + i = ix(n); j = iy(n); k = iz(n) + + ! x-direction zeroth transverse leakage + if (i /= ystag(j)%smax) p = xyz(i+1,j,k) + if (i /= ystag(j)%smin) m = xyz(i-1,j,k) + + if (i == ystag(j)%smax) then + if (xeast == 2) then + jp = 0._dp + else + jp = nod(n,g)%df(1)* f0(n,g) - nod(n,g)%dn(1)* f0(n,g) + end if + else + jp = -nod(n,g)%df(1)*(f0(p,g) - f0(n,g)) - & + nod(n,g)%dn(1)*(f0(p,g) + f0(n,g)) + end if + if (i == ystag(j)%smin) then + if (xwest == 2) then + jm = 0._dp + else + jm = -nod(n,g)%df(2)*f0(n,g) - nod(n,g)%dn(2)* f0(n,g) + end if + else + jm = -nod(n,g)%df(2)*(f0(n,g) - f0(m,g)) - & + nod(n,g)%dn(2)*(f0(n,g) + f0(m,g)) + end if + + L1 = (jp - jm) / xdel(i) + + ! y-direction zeroth transverse leakage + if (j /= xstag(i)%smax) p = xyz(i,j+1,k) + if (j /= xstag(i)%smin) m = xyz(i,j-1,k) + + if (j == xstag(i)%smax) then + if (ynorth == 2) then + jp = 0._dp + else + jp = nod(n,g)%df(3)*f0(n,g) - nod(n,g)%dn(3)* f0(n,g) + end if + else + jp = -nod(n,g)%df(3)*(f0(p,g) - f0(n,g)) - & + nod(n,g)%dn(3)*(f0(p,g) + f0(n,g)) + end if + if (j == xstag(i)%smin) then + if (ysouth == 2) then + jm = 0._dp + else + jm = -nod(n,g)%df(4)*f0(n,g) - nod(n,g)%dn(4)* f0(n,g) + end if + else + jm = -nod(n,g)%df(4)*(f0(n,g) - f0(m,g)) - & + nod(n,g)%dn(4)*(f0(n,g) + f0(m,g)) + end if + + + L2 = (jp - jm) / ydel(j) + + ! z-direction zeroth transverse leakage + if (k /= nzz) p = xyz(i,j,k+1) + if (k /= 1 ) m = xyz(i,j,k-1) + + if (k == nzz) then + if (ztop == 2) then + jp = 0._dp + else + jp = nod(n,g)%df(5)*f0(n,g) - nod(n,g)%dn(5)* f0(n,g) + end if + else + jp = -nod(n,g)%df(5)*(f0(p,g) - f0(n,g)) - & + nod(n,g)%dn(5)*(f0(p,g) + f0(n,g)) + end if + if (k == 1) then + if (zbott == 2) then + jm = 0._dp + else + jm = -nod(n,g)%df(6)*f0(n,g) - nod(n,g)%dn(6)* f0(n,g) + end if + else + jm = -nod(n,g)%df(6)*(f0(n,g) - f0(m,g)) - & + nod(n,g)%dn(6)*(f0(n,g) + f0(m,g)) + end if + + L3 = (jp - jm) / zdel(k) + + + end subroutine Lxyz + + !******************************************************************************! + + SUBROUTINE get_source () + + USE sdata, ONLY: nnod, ng, exsrc + + ! Purpose: + ! To update get source for the nodal update + + implicit none + + real(dp) :: L1, L2, L3 + integer :: g, n + logical :: first = .true. + + if (first) then + allocate(S1(nnod,ng), S2(nnod,ng), S3(nnod,ng)) + first = .false. + end if + + do g = 1, ng + do n = 1, nnod + call Lxyz(n,g,L1,L2,L3) + + if (cmode == 2) then + S1(n,g) = L2 + L3 - exsrc(n,g) + S2(n,g) = L1 + L3 - exsrc(n,g) + S3(n,g) = L1 + L2 - exsrc(n,g) + else + S1(n,g) = L2 + L3 + S2(n,g) = L1 + L3 + S3(n,g) = L1 + L2 + end if + end do + end do + + end subroutine get_source + + !******************************************************************************! + + SUBROUTINE TLUpd1 (u,n,g,Lmom1) + + USE sdata, ONLY: xdel, ydel, zdel, xstag, ystag, nzz, & + xwest, xeast, ynorth, ysouth, zbott, ztop, & + ix, iy, iz, xyz, D + + ! Purpose: + ! To calaculate transverse leakage first moments + + implicit none + + integer, intent(in) :: u, n, g + real(dp), intent(out) :: Lmom1 + + real(dp) :: tm, tp + real(dp) :: p1m, p2m, p1p, p2p, hp + integer :: p, m, i, j, k + + ! Set i, j, k + i = ix(n); j = iy(n); k = iz(n) + + if (u==1) then + ! Set paramaters for X-Direction Transverse leakage + if (i /= ystag(j)%smax) p = xyz(i+1,j,k) + if (i /= ystag(j)%smin) m = xyz(i-1,j,k) + + if (i == ystag(j)%smin) then + if (xwest == 2) then + tm = 1._dp + tp = xdel(i+1)/xdel(i) + p1m = tm + 1._dp; p2m = 2._dp*tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1m * p2m * (S1(p,g) - S1(n,g))) / hp + else + tp = xdel(i+1)/xdel(i) + p1p = tp + 1._dp + Lmom1 = (S1(p,g) - S1(n,g)) / p1p + end if + else if (i == ystag(j)%smax) then + if (xeast == 2) then + tm = xdel(i-1)/xdel(i) + tp = 1._dp + p1m = tm + 1._dp + p1p = tp + 1._dp; p2p = 2._dp*tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1p * p2p * (S1(n,g) - S1(m,g))) / hp + else + tm = xdel(i-1)/xdel(i) + p1m = tm + 1._dp + Lmom1 = (S1(n,g) - S1(m,g)) / p1m + end if + else + tm = xdel(i-1)/xdel(i) + tp = xdel(i+1)/xdel(i) + p1m = tm + 1._dp; p2m = 2._dp*tm + 1._dp + p1p = tp + 1._dp; p2p = 2._dp*tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1m * p2m * (S1(p,g) - S1(n,g)) & + + p1p * p2p * (S1(n,g) - S1(m,g))) / hp + end if + + Lmom1 = 0.25_dp * xdel(i)**2 / D(n,g) * Lmom1 + + else if (u == 2) then + ! Set paramaters for Y-Direction Transverse leakage + if (j /= xstag(i)%smax) p = xyz(i,j+1,k) + if (j /= xstag(i)%smin) m = xyz(i,j-1,k) + + if (j == xstag(i)%smin) then + if (ysouth == 2) then + tm = 1._dp + tp = ydel(j+1)/ydel(j) + p1m = tm + 1._dp; p2m = 2._dp*tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1m * p2m * (S2(p,g) - S2(n,g))) / hp + else + tp = ydel(j+1)/ydel(j) + p1p = tp + 1._dp + Lmom1 = (S2(p,g) - S2(n,g)) / p1p + end if + else if (j == xstag(i)%smax) then + if (ynorth == 2) then + tm = ydel(j-1)/ydel(j) + tp = 1._dp + p1m = tm + 1._dp + p1p = tp + 1._dp; p2p = 2._dp*tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1p * p2p * (S2(n,g) - S2(m,g))) / hp + else + tm = ydel(j-1)/ydel(j) + p1m = tm + 1._dp + Lmom1 = (S2(n,g) - S2(m,g)) / p1m + end if + else + tm = ydel(j-1)/ydel(j) + tp = ydel(j+1)/ydel(j) + p1m = tm + 1._dp; p2m = 2._dp*tm + 1._dp + p1p = tp + 1._dp; p2p = 2._dp*tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1m * p2m * (S2(p,g) - S2(n,g)) & + + p1p * p2p * (S2(n,g) - S2(m,g))) / hp + end if + + Lmom1 = 0.25_dp * ydel(j)**2 / D(n,g) * Lmom1 + + else + ! Set paramaters for Z-Direction Transverse leakage + if (k /= nzz) p = xyz(i,j,k+1) + if (k /= 1 ) m = xyz(i,j,k-1) + + if (k == 1 ) then + if (zbott == 2) then + tm = 1._dp + tp = zdel(k+1)/zdel(k) + p1m = tm + 1._dp; p2m = 2._dp*tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1m * p2m * (S3(p,g) - S3(n,g))) / hp + else + tp = zdel(k+1)/zdel(k) + p1p = tp + 1._dp + Lmom1 = (S3(p,g) - S3(n,g)) / p1p + end if + else if (k == nzz) then + if (ztop == 2) then + tm = zdel(k-1)/zdel(k) + tp = 1._dp + p1m = tm + 1._dp + p1p = tp + 1._dp; p2p = 2._dp*tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1p * p2p * (S3(n,g) - S3(m,g))) / hp + else + tm = zdel(k-1)/zdel(k) + p1m = tm + 1._dp + Lmom1 = (S3(n,g) - S3(m,g)) / p1m + end if + else + tm = zdel(k-1)/zdel(k) + tp = zdel(k+1)/zdel(k) + p1m = tm + 1._dp; p2m = 2._dp*tm + 1._dp + p1p = tp + 1._dp; p2p = 2._dp*tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom1 = (p1m * p2m * (S3(p,g) - S3(n,g)) & + + p1p * p2p * (S3(n,g) - S3(m,g))) / hp + end if + + Lmom1 = 0.25_dp * zdel(k)**2 / D(n,g) * Lmom1 + + end if + + end subroutine TLUpd1 + + !****************************************************************************! + + SUBROUTINE TLUpd2 (u,n,g,Lmom2) + + USE sdata, ONLY: xdel, ydel, zdel, xstag, ystag, nzz, & + xwest, xeast, ynorth, ysouth, zbott, ztop, & + ix, iy, iz, xyz, D + + ! Purpose: + ! To calaculate transverse leakage second moments + + implicit none + + integer, intent(in) :: u, n, g + real(dp), intent(out) :: Lmom2 + + real(dp) :: tm, tp + real(dp) :: p1m, p1p, hp + integer :: p, m, i, j, k + + ! Set i, j, k + i = ix(n); j = iy(n); k = iz(n) + + if (u==1) then + ! Set paramaters for X-Direction Transverse leakage + if (i /= ystag(j)%smax) p = xyz(i+1,j,k) + if (i /= ystag(j)%smin) m = xyz(i-1,j,k) + + if (i == ystag(j)%smin) then + if (xwest == 2) then + tm = 1._dp + tp = xdel(i+1)/xdel(i) + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1m * (S1(p,g) - S1(n,g))) / hp + else + Lmom2 = 0._dp + end if + else if (i == ystag(j)%smax) then + if (xeast == 2) then + tm = xdel(i-1)/xdel(i) + tp = 1._dp + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1p * (S1(m,g) - S1(n,g))) / hp + else + Lmom2 = 0._dp + end if + else + tm = xdel(i-1)/xdel(i) + tp = xdel(i+1)/xdel(i) + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1m * (S1(p,g) - S1(n,g)) + p1p * (S1(m,g) - S1(n,g))) / hp + end if + + Lmom2 = 0.25_dp * xdel(i)**2 / D(n,g) * Lmom2 + + else if (u == 2) then + ! Set paramaters for Y-Direction Transverse leakage + if (j /= xstag(i)%smax) p = xyz(i,j+1,k) + if (j /= xstag(i)%smin) m = xyz(i,j-1,k) + + if (j == xstag(i)%smin) then + if (ysouth == 2) then + tm = 1._dp + tp = ydel(j+1)/ydel(j) + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1m * (S2(p,g) - S2(n,g))) / hp + else + Lmom2 = 0._dp + end if + else if (j == xstag(i)%smax) then + if (ynorth == 2) then + tm = ydel(j-1)/ydel(j) + tp = 1._dp + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1p * (S2(m,g) - S2(n,g))) / hp + else + Lmom2 = 0._dp + end if + else + tm = ydel(j-1)/ydel(j) + tp = ydel(j+1)/ydel(j) + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1m * (S2(p,g) - S2(n,g)) + p1p * (S2(m,g) - S2(n,g))) / hp + end if + + Lmom2 = 0.25_dp * ydel(j)**2 / D(n,g) * Lmom2 + + else + ! Set paramaters for Z-Direction Transverse leakage + if (k /= nzz) p = xyz(i,j,k+1) + if (k /= 1 ) m = xyz(i,j,k-1) + + if (k == 1 ) then + if (zbott == 2) then + tm = 1._dp + tp = zdel(k+1)/zdel(k) + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1m * (S3(p,g) - S3(n,g))) / hp + else + Lmom2 = 0._dp + end if + else if (k == nzz) then + if (ztop == 2) then + tm = zdel(k-1)/zdel(k) + tp = 1._dp + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1p * (S3(m,g) - S3(n,g))) / hp + else + Lmom2 = 0._dp + end if + else + tm = zdel(k-1)/zdel(k) + tp = zdel(k+1)/zdel(k) + p1m = tm + 1._dp + p1p = tp + 1._dp + hp = 2._dp * p1m * p1p* (tm + tp + 1._dp) + Lmom2 = (p1m * (S3(p,g) - S3(n,g)) + p1p * (S3(m,g) - S3(n,g))) / hp + end if + + Lmom2 = 0.25_dp * zdel(k)**2 / D(n,g) * Lmom2 + + end if + + + end subroutine TLUpd2 + + !****************************************************************************! + + function get_B(u,n) result (B) + + !Purpose: To Buckling for node n and direction u + + + use sdata, only: ng, xdel, ydel, zdel, ix, iy, iz, Ke, & + sigr, D, chi, mat, nuf, sigs, Ke, tbeta, dfis + implicit none + + integer, intent(in) :: u,n ! direction and node number + real(dp), dimension(ng,ng) :: B ! Buckling B2 + + real(dp) :: dum, dn + integer :: g, h + + if (u == 1) then + dn = xdel(ix(n)) + else if (u == 2) then + dn = ydel(iy(n)) + else + dn = zdel(iz(n)) + end if + + if (cmode == 1) then + do g = 1, ng + do h = 1, ng + if (g == h) then + dum = sigr(n,g) - chi(mat(n),g)*nuf(n,h) / Ke + else + dum = -sigs(n,h,g) - chi(mat(n),g)*nuf(n,h) / Ke + end if + B(g,h) = 0.25_dp * dn**2 / D(n,g) * dum + end do + end do + else if (cmode == 2) then + do g = 1, ng + do h = 1, ng + if (g == h) then + dum = sigr(n,g) - (1._dp - tbeta(mat(n)) + dfis(n)) & + * chi(mat(n),g) * chi(mat(n),g)*nuf(n,h) + else + dum = -sigs(n,h,g) - (1._dp - tbeta(mat(n)) + dfis(n)) & + * chi(mat(n),g)*nuf(n,h) + end if + B(g,h) = 0.25_dp * dn**2 / D(n,g) * dum + end do + end do + else + do g = 1, ng + do h = 1, ng + if (g == h) then + dum = sigr(n,g) - chi(mat(n),g)*nuf(n,h) / Ke + else + dum = -sigs(n,g,h) - chi(mat(n),h)*nuf(n,g) / Ke + end if + B(g,h) = 0.25_dp * dn**2 / D(n,g) * dum + end do + end do + end if + + end function get_B + + !****************************************************************************! + + SUBROUTINE get_ABEFGH (n,u,Aa,Bb,Ee,Ff,Gg,Hh) + + USE sdata, ONLY: ng, xdel, ydel, zdel, ix, iy, iz, D, sigr + + ! Purpose: + ! To calaculate A,B,E,F,G,H paramters used to calculate matrix elements for + ! nodal update + + implicit none + + integer, intent(in) :: u, n + real(dp), dimension(:), intent(out) :: Aa,Bb,Ee,Ff,Gg,Hh + + real(dp) :: dn, alp, alp2 + real(dp) :: m1s, m0c, m2c + integer :: g + + if (u == 1) then + dn = xdel(ix(n)) + else if (u == 2) then + dn = ydel(iy(n)) + else + dn = zdel(iz(n)) + end if + + do g = 1, ng + !Calculate alpha and othe paramters to calculate A,B,E,F,G,H + alp = 0.5_dp * sqrt(sigr(n,g) / D(n,g)) * dn + alp2 = alp**2 + m0c = sinh(alp) / alp + m1s = 3._dp * (cosh(alp)/alp - sinh(alp)/alp2) + m2c = 5._dp * (sinh(alp)/alp - 3._dp*cosh(alp)/alp2 & + + 3._dp*sinh(alp)/alp**3) + + Aa(g) = (sinh(alp) - m1s) / (alp2 * m1s) + Bb(g) = (cosh(alp) - m0c - m2c) / (alp2 * m2c) + Ee(g) = (m0c/m2c - 3._dp/alp2) + Ff(g) = (alp*cosh(alp) - m1s) / (alp2 * m1s) + Gg(g) = (alp*sinh(alp) - 3._dp*m2c) / (cosh(alp) - m0c - m2c) + Hh(g) = (alp*cosh(alp) - m1s) / (sinh(alp) - m1s) + end do + +end subroutine get_ABEFGH + +end module nodal diff --git a/src/mod_th.f90 b/src/mod_th.f90 new file mode 100644 index 0000000..0bd75bb --- /dev/null +++ b/src/mod_th.f90 @@ -0,0 +1,962 @@ +MODULE th + +USE sdata, ONLY: DP + +IMPLICIT NONE + +SAVE + +CONTAINS + +SUBROUTINE th_iter(ind) +! +! Purpose: +! To do thermal-hydrailics iteration +! + +USE sdata, ONLY: nnod, ftem, mtem, cden, bcon, bpos, npow, pow, ppow, & + zdel, node_nf, ix, iy, iz, th_err, node_nf, ix, iy, iz, & + th_niter, nth, fer, ferc, ser, serc, get_time, th_time +USE cmfd, ONLY: outer_th, PowDis +USE io, ONLY: bxtab, ounit +USE xsec, ONLY: XS_updt, XStab_updt + +IMPLICIT NONE + +INTEGER, INTENT(IN), OPTIONAL :: ind ! if iteration reaching th_iter and ind = 0 then STOP +REAL(DP), DIMENSION(nnod) :: pline +REAL(DP), DIMENSION(nnod) :: otem +INTEGER :: mx_iter, n, l +REAL(DP) :: st, fn + +! Determine maximum iteration +IF (PRESENT(ind)) THEN + mx_iter = th_niter +ELSE + mx_iter = 2 +END IF + +th_err = 1. +DO l = 1, mx_iter + ! Save old fuel temp + otem = ftem + + ! Update XS + IF (bxtab == 1) THEN + CALL XStab_updt(bcon, ftem, mtem, cden, bpos) + ELSE + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + END IF + + ! Perform outer inner iteration + CALL outer_th(nth) + + !Get start th_time + st = get_time() + + ! Calculate power density + CALL PowDis(npow) + + ! Calculate linear power density for each nodes (W/cm) + DO n = 1, nnod + pline(n) = npow(n) * pow * ppow * 0.01_DP & + / (node_nf(ix(n),iy(n)) * zdel(iz(n))) ! Linear power density (W/cm) + END DO + + ! Update fuel, moderator temp. and coolant density + CALL th_upd(pline) + + ! Get fuel absolute difference from current and previous th iteration + CALL AbsE(ftem, otem, th_err) + + !Get th_time + fn = get_time() + th_time = th_time + (fn-st) + + ! If error is small enough + IF (th_err < 0.01 .and. fer < ferc .and. ser < serc .and. present(ind)) EXIT + +END DO + +IF (PRESENT(ind) .AND. l-1 == th_niter) THEN + WRITE(ounit,*) ' MAXIMUM TH ITERATION REACHED.' + WRITE(ounit,*) ' CALCULATION MIGHT BE NOT CONVERGED OR CHANGE ITERATION CONTROL' + WRITE(*,*) ' MAXIMUM TH ITERATION REACHED.' + WRITE(*,*) ' CALCULATION MIGHT BE NOT CONVERGED OR CHANGE ITERATION CONTROL' + STOP +END IF + + + +END SUBROUTINE th_iter + + +SUBROUTINE AbsE(newF, oldF, rel) + + ! + ! Purpose: + ! To calculate Max Relative error + +USE sdata, ONLY: nnod + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: newF, oldF +REAL(DP), INTENT(OUT) :: rel + +REAL(DP) :: error +INTEGER :: n + +rel = 0. + +DO n= 1, nnod + IF (ABS(newF(n)) > 1.e-10_DP) THEN + error = ABS(newF(n) - oldF(n)) + IF (error > rel) rel = error + END IF +END DO + +END SUBROUTINE AbsE + + +SUBROUTINE par_ave(par, ave) +! +! Purpose: +! To calculate average fuel temp (only for active core) +! + +USE sdata, ONLY: vdel, nnod, ng, nuf + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: par +REAL(DP), INTENT(OUT) :: ave +REAL(DP) :: dum, dum2 +INTEGER :: n + +dum = 0.; dum2 = 0. +DO n = 1, nnod + IF (nuf(n,ng) > 0.) THEN + dum = dum + par(n) * vdel(n) + dum2 = dum2 + vdel(n) + END IF +END DO + +ave = dum / dum2 + +END SUBROUTINE par_ave + + +SUBROUTINE par_ave_out(par, ave) +! +! Purpose: +! To calculate average fuel temp (only for active core) +! + +USE sdata, ONLY: vdel, nnod, iz, nzz, nuf, ng, ix, iy, xyz, nxx, nyy, nzz, ystag + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: par +REAL(DP), INTENT(OUT) :: ave +REAL(DP) :: dum, dum2 +INTEGER, DIMENSION(nxx,nyy) :: zmax +INTEGER :: n, i, j, k + +! get number of nodex in axial direction from bottom -> fuel +DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + zmax(i,j) = 0 + DO k = 1, nzz/2 + if (nuf(xyz(i,j,k),ng) < 1.e-5_dp) zmax(i,j) = zmax(i,j) + 1 + END DO + END DO +END DO +! get number of nodex in axial direction from fuel -> top reflectors +DO j = 1, nyy + DO i = ystag(j)%smin, ystag(j)%smax + DO k = 1, nzz + if (nuf(xyz(i,j,k),ng) > 1.e-5) zmax(i,j) = zmax(i,j) + 1 + END DO + END DO +END DO + +dum = 0.; dum2 = 0. +DO n = 1, nnod + IF (iz(n) == zmax(ix(n),iy(n)) .AND. nuf(n,ng) > 1.e-5) THEN + dum = dum + par(n) * vdel(n) + dum2 = dum2 + vdel(n) + END IF +END DO + +ave = dum / dum2 + +END SUBROUTINE par_ave_out + + +SUBROUTINE par_max(par, pmax) +! +! Purpose: +! To calculate maximum fuel tem, coolant tem, and density +! + +USE sdata, ONLY: nnod + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: par +REAL(DP), INTENT(OUT) :: pmax +INTEGER :: n + +pmax = 0. +DO n = 1, nnod + IF (par(n) > pmax) pmax = par(n) +END DO + +END SUBROUTINE par_max + + +SUBROUTINE getent(t,ent) +! +! Purpose: +! To get enthalpy for given coolant temp. from steam table +! + +USE sdata, ONLY: stab, ntem +USE io, ONLY : ounit + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: t +REAL(DP), INTENT(OUT) :: ent +REAL(DP) :: t1, ent1 +REAL(DP) :: t2, ent2 +INTEGER :: i + +IF ((t < stab(1,1)) .OR. (t > stab(ntem,1))) THEN + WRITE(ounit,*) ' Coolant temp. : ', t, 'K' + WRITE(ounit,*) ' ERROR : MODERATOR TEMP. IS OUT OF THE RANGE OF DATA IN THE STEAM TABLE' + WRITE(ounit,*) ' CHECK INPUT COOLANT MASS FLOW RATE OR CORE POWER' + WRITE(*,*) ' Coolant temp. : ', t, 'K' + WRITE(*,*) ' ERROR : MODERATOR TEMP. IS OUT OF THE RANGE OF DATA IN THE STEAM TABLE' + WRITE(*,*) ' CHECK INPUT COOLANT MASS FLOW RATE OR CORE POWER' + STOP +END IF + +t2 = stab(1,1); ent2 = stab(1,3) +DO i = 2, ntem + t1 = t2 + ent1 = ent2 + t2 = stab(i,1); ent2 = stab(i,3) + IF ((t >= t1) .AND. (t <= t2)) THEN + ent = ent1 + (t - t1) / (t2 - t1) * (ent2 - ent1) + EXIT + END IF +END DO + + +END SUBROUTINE getent + + +SUBROUTINE gettd(ent,t,rho,prx,kvx,tcx,Rx) +! +! Purpose: +! To get enthalpy for given coolant temp. from steam table +! + +USE sdata, ONLY: stab, ntem +USE io, ONLY : ounit + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: ent +REAL(DP), INTENT(OUT) :: t, rho, prx, kvx, tcx +REAL(DP), INTENT(OUT), OPTIONAL :: Rx +REAL(DP) :: ratx + +INTEGER :: i, i1, i2 + +! Get two closest interpolation points +IF (ent >= stab(1,3) .AND. ent <= stab(ntem,3)) THEN !If enthalpy inside data range + DO i = 2, ntem + IF (ent >= stab(i-1,3) .AND. ent <= stab(i,3)) THEN + i1 = i-1 + i2 = i + EXIT + END IF + END DO +ELSE IF (ent < stab(1,3) .AND. (stab(1,3) - ent) / stab(1,3) < 0.1) THEN !If 10% lower than min. steam table data + i1 = 1 + i2 = 2 +ELSE IF (ent > stab(ntem,3) .AND. (ent - stab(ntem,3)) / stab(ntem,3) < 0.1) THEN !if 10% higher than max. steam table data + i1 = ntem-1 + i2 = ntem +ELSE + WRITE(ounit,1557) ent/1000. + WRITE(*,1557) ent/1000. + WRITE(ounit,*) ' CHECK INPUT COOLANT MASS FLOW RATE OR CORE POWER' + WRITE(*,*) ' CHECK INPUT COOLANT MASS FLOW RATE OR CORE POWER' + STOP + 1557 FORMAT(2X, ' ERROR: ENTHALPY', F8.1 ,' KJ/Kg & + & IS OUT OF THE RANGE IN THE STEAM TABLE') +END IF + +! Interpolate +ratx = (ent - stab(i1,3)) / (stab(i2,3) - stab(i1,3)) +t = stab(i1,1) + ratx * (stab(i2,1) - stab(i1,1)) +rho = stab(i1,2) + ratx * (stab(i2,2) - stab(i1,2)) +prx = stab(i1,4) + ratx * (stab(i2,4) - stab(i1,4)) +kvx = stab(i1,5) + ratx * (stab(i2,5) - stab(i1,5)) +tcx = stab(i1,6) + ratx * (stab(i2,6) - stab(i1,6)) +IF (PRESENT(Rx)) THEN + Rx = 1000._DP * (stab(i2,2) - stab(i1,2)) / (stab(i2,3) - stab(i1,3)) +END IF + + + +END SUBROUTINE gettd + + +REAL(DP) FUNCTION getkc(t) +! +! Purpose: +! To calculate thermal conductivity of cladding +! + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: t + +getkc = 7.51_DP + 2.09e-2_DP*t - 1.45e-5_DP*t**2 + 7.67e-9_DP*t**3 + +END FUNCTION getkc + + +REAL(DP) FUNCTION getkf(t) +! +! Purpose: +! To calculate thermal conductivity of fuel +! + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: t + +getkf = 1.05_DP + 2150.0_DP / (t - 73.15_DP) + +END FUNCTION getkf + + +REAL(DP) FUNCTION getcpc(t) +! +! Purpose: +! To calculate specific heat capacity of cladding +! + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: t + +getcpc = 252.54_DP + 0.11474_DP*t + +END FUNCTION getcpc + + +REAL(DP) FUNCTION getcpf(t) +! +! Purpose: +! To calculate specific heat capacity of fuel +! + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: t + +getcpf = 162.3_DP + 0.3038_DP*t - 2.391e-4_DP*t**2 + 6.404e-8_DP*t**3 + +END FUNCTION getcpf + + +SUBROUTINE TridiaSolve(a,b,c,d,x) +! +! Purpose: +! To solve tridiagonal matrix +! + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(INOUT) :: a, b, c, d +REAL(DP), DIMENSION(:), INTENT(OUT) :: x + +INTEGER :: i, n + +n = SIZE(d) + +! Gauss Elimination +c(1) = c(1)/b(1) +d(1) = d(1)/b(1) +DO i = 2, n + c(i) = c(i) / (b(i) - a(i) * c(i-1)) + d(i) = (d(i) - a(i) * d(i-1)) / (b(i) - a(i) * c(i-1)) +END DO + +! Back Substitution +x(n) = d(n) +DO i = n-1, 1, -1 + x(i) = d(i) - c(i) * x(i+1) +END DO + +END SUBROUTINE TridiaSolve + + + +REAL(DP) FUNCTION geths(xden, tc, kv, Pr) +! +! Purpose: +! To calculate heat transfer coef. +! + +USE sdata, ONLY: dh, farea, cflow + +IMPLICIT NONE + +REAL(DP), INTENT(IN) :: xden ! coolant densisty +REAL(DP), INTENT(IN) :: tc ! coolant thermal conductivity +REAL(DP), INTENT(IN) :: kv ! kinematic viscosity +REAL(DP), INTENT(IN) :: Pr ! Prandtl Number + +REAL(DP) :: cvelo, Nu, Re + +cvelo = cflow / (farea * xden * 1000._DP) ! Calculate flow velocity (m/s) +Re = cvelo * dh / (kv * 1.e-6_DP) ! Calculate Reynolds Number +Nu = 0.023_DP*(Pr**0.4_DP)*(Re**0.8_DP) ! Calculate Nusselt Number +geths = (tc / dh) * Nu ! Calculate heat transfer coefficient + + +END FUNCTION geths + + + +SUBROUTINE th_trans(xpline, h) + +! +! Purpose: +! To perform fuel pin thermal transient +! + +USE sdata, ONLY: nnod, mtem, cden, ftem, tin, cflow, nxx, nyy, cf, ent, heatf, & + tfm, nt, rpos, rdel, rf, rg, rc, farea, dia, pi, zdel, & + ix, iy, iz, frate, th_time, get_time + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: xpline ! Linear Power Density (W/cm) +REAL(DP), INTENT(IN) :: h ! Time step + +INTEGER :: i, j, k, n +REAL(DP), DIMENSION(nt+1) :: a, b, c, d +REAL(DP) :: hs, hg = 1.d4, kt , kt1, kt2 ! coolant heat transfer coef., gap heat transfer coef, and thermal conductivity +REAL(DP) :: alpha = 0.7_DP +REAL(DP) :: xa, xc +REAL(DP) :: fdens = 10.412e3 ! UO2 density (kg/m3) +REAL(DP) :: cdens = 6.6e3 ! Cladding density (kg/m3) +REAL(DP) :: cp ! Specific heat capacity +REAL(DP) :: eps, eta +REAL(DP) :: mdens, vol ! Coolant density and channel volume +REAL(DP), DIMENSION(nnod) :: entp ! previous enthalpy + +REAL(DP) :: pdens ! power densisty (W/m3) +REAL(DP) :: enti ! Coolant inlet enthalpy +REAL(DP), DIMENSION(nxx, nyy) :: entm, bfrate +REAL(DP) :: cpline ! Coolant Linear power densisty (W/m) +REAL(DP) :: Pr, kv, tcon ! Coolant Prandtl Number, Kinematic viscosity, and thermal conductivity +real(dp) :: R +logical :: first = .true. +real(dp) :: st, fn + +!Get start th_time +st = get_time() + +!set initial tridiagonal matrix element a, b +a = 0._dp; b = 0._dp; c = 0._dp; + +if (first) then + allocate(frate(nnod)) + frate = cflow + first = .false. +end if +! frate = cflow +CALL getent(tin, enti) +entp = ent + +DO n = 1, nnod + mdens = cden(n) * 1000._DP ! Coolant density (kg/m3) + cpline = heatf(n) * pi * dia + cf * xpline(n) * 100._DP ! Coolant Linear power densisty (W/m) + vol = farea * zdel(iz(n)) * 0.01_DP ! channel node volume + i = ix(n); j = iy(n); k = iz(n) + + IF (k == 1) THEN ! Calculate coolant enthalpy + eps = mdens * vol / h + ent(n) = (cpline * zdel(iz(n)) * 0.01_DP + 2._DP * frate(n) * enti & + + eps * entp(n)) / (eps + 2._DP * frate(n)) ! Calculate enthalpy + CALL gettd(ent(n), mtem(n), cden(n), Pr, kv, tcon, R) ! Get corresponding temp and density + entm(i,j) = 2._DP * ent(n) - enti + frate(n) = cflow - 0.5_dp * vol / h * R * (ent(n) - entp(n)) + bfrate(i,j) = 2._DP * frate(n) - cflow + ELSE + eps = mdens * vol / h + ent(n) = (cpline * zdel(iz(n)) * 0.01_DP + 2._DP * frate(n) & + * entm(ix(n),iy(n)) + eps * entp(n)) / (eps + 2._DP * frate(n)) + CALL gettd(ent(n), mtem(n), cden(n), Pr, kv, tcon, R) + entm(i,j) = 2._DP * ent(n) - entm(i,j) + frate(n) = bfrate(i,j) - 0.5_dp * vol / h * R * (ent(n) - entp(n)) + bfrate(i,j) = 2._DP * frate(n) - bfrate(i,j) + END IF + + hs = geths(cden(n), Pr, kv, tcon) ! Calculate heat transfer coef + pdens = 100._DP * xpline(n) / (pi * rf**2) ! Fuel pin Power Density (W/m3) + + ! Calculate tridiagonal matrix: a, b, c and source: d + ! For nt=1 [FUEL CENTERLINE] + kt1 = getkf(tfm(n,1)) ! Get thermal conductivity + kt2 = getkf(tfm(n,2)) + kt = 2._DP * kt1 * kt2 / (kt1 + kt2) + cp = getcpf(tfm(n,1)) ! Get specific heat capacity + eta = fdens * cp * rpos(1)**2 / (2._DP * h) + xc = kt * rpos(1) / rdel(1) + b(1) = xc + eta + c(1) = -xc + d(1) = pdens * 0.5_DP * rpos(1)**2 + eta * tfm(n,1) + + DO i = 2, nt-2 + kt1 = kt2 + kt2 = getkf(tfm(n,i+1)) + kt = 2._DP * kt1 * kt2 / (kt1 + kt2) + cp = getcpf(tfm(n,i)) + eta = fdens * cp * (rpos(i)**2 - rpos(i-1)**2) / (2. * h) + xa = xc + xc = kt * rpos(i) / rdel(i) + a(i) = -xa + b(i) = xa + xc + eta + c(i) = -xc + d(i) = pdens * 0.5_DP * (rpos(i)**2 - rpos(i-1)**2) + eta * tfm(n,i) + END DO + + ! For nt-1 [FUEL-GAP INTERFACE] + cp = getcpf(tfm(n,nt-1)) + eta = fdens * cp * (rf**2 - rpos(nt-2)**2) / (2. * h) + xa = xc + xc = rg * hg + a(nt-1) = -xa + b(nt-1) = xa + xc + eta + c(nt-1) = -xc + d(nt-1) = pdens * 0.5_DP * (rf**2 - rpos(nt-2)**2) + eta * tfm(n,nt-1) + + ! For nt [GAP-CLADDING INTERFACE] + kt1 = getkc(tfm(n,nt)) + kt2 = getkc(tfm(n,nt+1)) + kt = 2._DP * kt1 * kt2 / (kt1 + kt2) ! For cladding + cp = getcpc(tfm(n,nt)) + eta = cdens * cp * (rpos(nt)**2 - rg**2) / (2. * h) + xa = xc + xc = kt * rpos(nt) / rdel(nt) + a(nt) = -xa + b(nt) = xa + xc + eta + c(nt) = -xc + d(nt) = eta * tfm(n,nt) + + ! For nt+1 [CLADDING-COOLANT INTERFACE] + cp = getcpc(tfm(n,nt+1)) + eta = cdens * cp * (rc**2 - rpos(nt)**2) / (2. * h) + xa = xc + xc = rc * hs + a(nt+1) = -xa + b(nt+1) = xa + xc + eta + d(nt+1) = rc * hs * mtem(n) + eta * tfm(n,nt+1) + + ! Solve tridiagonal matrix + CALL TridiaSolve(a, b, c, d, tfm(n, :)) + + ! Get lumped fuel temp + ftem(n) = (1.-alpha) * tfm(n, 1) + alpha * tfm(n, nt-1) + + ! Calculate heat flux + heatf(n) = hs * (tfm(n, nt+1) - mtem(n)) +END DO + +!Get th_time +fn = get_time() +th_time = th_time + (fn-st) + +END SUBROUTINE th_trans + + +SUBROUTINE th_upd(xpline) + +! +! Purpose: +! To update thermal parameters +! + +USE sdata, ONLY: nnod, mtem, cden, ftem, tin, ix, iy, iz, nxx, nyy, cflow, cf, & + ent, heatf, tfm, nt, rpos, rdel, rf, rg, rc, pi, zdel, dia + +IMPLICIT NONE + +REAL(DP), DIMENSION(:), INTENT(IN) :: xpline ! Linear Power Density (W/cm) + +INTEGER :: i, n +REAL(DP), DIMENSION(nt+1) :: a, b, c, d +REAL(DP) :: hs, Hg = 1.D4, kt, kt1, kt2 +REAL(DP) :: alp = 0.7_DP +REAL(DP) :: xa, xc +REAL(DP) :: pdens ! power densisty (W/m3) +REAL(DP) :: enti ! Coolant inlet enthalpy +REAL(DP), DIMENSION(nxx, nyy) :: entm ! enthalpy at node boundary +REAL(DP) :: cpline ! Coolant Linear power densisty (W/m) +REAL(DP) :: Pr, kv, tcon ! Coolant Prandtl Number, Kinematic viscosity, and thermal conductivity +REAL(DP) :: zd ! zdel in meter + +!set initial tridiagonal matrix element a, b +a = 0._dp; b = 0._dp; c = 0._dp; + +CALL getent(tin, enti) + +DO n = 1, nnod + cpline = heatf(n) * pi * dia + cf * xpline(n) * 100._DP ! Coolant Linear power densisty (W/m) + zd = zdel(iz(n)) * 0.01_DP + IF (iz(n) == 1) THEN ! For most bootom channel + ent(n) = enti + 0.5_DP * cpline * zd / cflow ! Calculate coolant enthalpy + CALL gettd(ent(n), mtem(n), cden(n), Pr, kv, tcon) ! Get corresponding temp and density + entm(ix(n),iy(n)) = 2._DP * ent(n) - enti ! Extrapolate enthalpy at node boundary + ELSE + ent(n) = entm(ix(n),iy(n)) + 0.5_DP * cpline * zd / cflow + CALL gettd(ent(n), mtem(n), cden(n), Pr, kv, tcon) + entm(ix(n),iy(n)) = 2._DP * ent(n) - entm(ix(n),iy(n)) + END IF + + hs = geths(cden(n), Pr, kv, tcon) + pdens = (1._DP - cf) * 100._DP * xpline(n) / (pi * rf**2) ! Fuel pin Power Density (W/m3) + + ! Calculate tridiagonal matrix: a, b, c and source: d + ! For nt=1 [FUEL CENTERLINE] + kt1 = getkf(tfm(n,1)) ! Get thermal conductivity + kt2 = getkf(tfm(n,2)) + kt = 2._DP * kt1 * kt2 / (kt1 + kt2) + xc = kt * rpos(1) / rdel(1) + b(1) = xc + c(1) = -xc + d(1) = pdens * 0.5_DP * rpos(1)**2 + + DO i = 2, nt-2 + kt1 = kt2 + kt2 = getkf(tfm(n,i+1)) + kt = 2._DP * kt1 * kt2 / (kt1 + kt2) + xa = xc + xc = kt * rpos(i) / rdel(i) + a(i) = -xa + b(i) = xa + xc + c(i) = -xc + d(i) = pdens * 0.5_DP * (rpos(i)**2 - rpos(i-1)**2) + END DO + + ! For nt-1 [FUEL-GAP INTERFACE] + xa = xc + xc = rg * Hg + a(nt-1) = -xa + b(nt-1) = xa + xc + c(nt-1) = -xc + d(nt-1) = pdens * 0.5_DP * (rf**2 - rpos(nt-2)**2) + + ! For nt [GAP-CLADDING INTERFACE] + kt1 = getkc(tfm(n,nt)) + kt2 = getkc(tfm(n,nt+1)) + kt = 2._DP * kt1 * kt2 / (kt1 + kt2) ! For cladding + xa = xc + xc = kt * rpos(nt) / rdel(nt) + a(nt) = -xa + b(nt) = xa + xc + c(nt) = -xc + d(nt) = 0. + + ! For nt+1 [CLADDING-COOLANT INTERFACE] + xa = xc + a(nt+1) = -xa + b(nt+1) = xa + hs * rc + d(nt+1) = rc * hs * mtem(n) + + ! Solve tridiagonal matrix + CALL TridiaSolve(a, b, c, d, tfm(n, :)) + + ! Get lumped fuel temp + ftem(n) = (1.-alp) * tfm(n, 1) + alp * tfm(n, nt-1) + + ! Calculate heat flux + heatf(n) = hs * (tfm(n, nt+1) - mtem(n)) +END DO + + +END SUBROUTINE th_upd + + +SUBROUTINE print_head() + +! +! Purpose: +! To print critical boron concentration header output +! + +USE io, ONLY: ounit, scr, bther + +IMPLICIT NONE + +if (bther == 0) then + ! File Output + WRITE(ounit,*); WRITE(ounit,*) + WRITE(ounit,2176); WRITE(ounit,2177); WRITE(ounit,2176) + WRITE(ounit,*); WRITE(ounit,2178); WRITE(ounit,2179) + if (scr) then + ! Terminal Output + WRITE(*,*); WRITE(*,*) + WRITE(*,2176); WRITE(*,2177); WRITE(*,2176) + WRITE(*,*); WRITE(*,2178); WRITE(*,2179) + end if +else + ! File Output + WRITE(ounit,*); WRITE(ounit,*) + WRITE(ounit,1176); WRITE(ounit,1177); WRITE(ounit,1176) + WRITE(ounit,*); WRITE(ounit,1178); WRITE(ounit,1179) + if (scr) then + ! Terminal Output + WRITE(*,*); WRITE(*,*) + WRITE(*,1176); WRITE(*,1177); WRITE(*,1176) + WRITE(*,*); WRITE(*,1178); WRITE(*,1179) + end if +end if + +2176 format(' ============================================================') +2177 format(12X,'CRITICAL BORON CONCENTRATION SEARCH') +2178 format('Itr Boron Conc. K-EFF FLUX ERROR FISS. SRC. ERROR') +2179 format(' -----------------------------------------------------------') +1176 format & +(' =========================================================================') +1177 format(19X,'CRITICAL BORON CONCENTRATION SEARCH') +1178 format & +('Itr Boron Conc. K-EFF FLUX ERR. FISS. SRC. ERR. DOPPLER ERR.') +1179 format & +(' -----------------------------------------------------------------------') + +END SUBROUTINE print_head + + +SUBROUTINE cbsearch() + +! +! Purpose: +! To search critical boron concentration +! + +USE sdata, ONLY: Ke, rbcon, ftem, mtem, cden, bpos, nnod, f0, fer, ser, & + aprad, apaxi, afrad, npow +USE io, ONLY: ounit, AsmFlux, AsmPow, AxiPow +USE cmfd, ONLY: outer, powdis +USE xsec, ONLY: XS_updt + +IMPLICIT NONE + +REAL(DP) :: bc1, bc2, bcon ! Boron Concentration +REAL(DP) :: ke1, ke2 +INTEGER :: n + +call print_head() + +bcon = rbcon +CALL XS_updt(bcon, ftem, mtem, cden, bpos) +CALL outer(0) +bc1 = bcon +ke1 = Ke + +WRITE(ounit,1791) 1, bc1, Ke1, ser, fer +WRITE(*,1791) 1, bc1, Ke1, ser, fer + +bcon = bcon + (Ke - 1.) * bcon ! Guess next critical boron concentration +CALL XS_updt(bcon, ftem, mtem, cden, bpos) +CALL outer(0) +bc2 = bcon +ke2 = Ke + +WRITE(ounit,1791) 2, bc2, Ke2, ser, fer +WRITE(*,1791) 2, bc2, Ke2, ser, fer + +n = 3 +DO + bcon = bc2 + (1._DP - ke2) / (ke1 - ke2) * (bc1 - bc2) + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + CALL outer(0) + bc1 = bc2 + bc2 = bcon + ke1 = ke2 + ke2 = ke + WRITE(ounit,1791) n, bcon, Ke, ser, fer + WRITE(*,1791) n, bcon, Ke, ser, fer + IF ((ABS(Ke - 1._DP) < 1.e-5_DP) .AND. (ser < 1.e-5_DP) .AND. (fer < 1.e-5_DP)) EXIT + n = n + 1 + IF (bcon > 3000.) THEN + WRITE(ounit,*) ' CRITICAL BORON CONCENTRATION EXCEEDS THE LIMIT(3000 ppm)' + WRITE(ounit,*) ' ADPRES IS STOPPING' + WRITE(*,*) ' CRITICAL BORON CONCENTRATION EXCEEDS THE LIMIT(3000 ppm)' + STOP + END IF + IF (bcon < 0.) THEN + WRITE(ounit,*) ' CRITICAL BORON CONCENTRATION IS NOT FOUND (LESS THAN ZERO)' + WRITE(ounit,*) ' ADPRES IS STOPPING' + WRITE(*,*) ' CRITICAL BORON CONCENTRATION IS NOT FOUND (LESS THAN ZERO)' + STOP + END IF + IF (n == 20) THEN + WRITE(ounit,*) ' MAXIMUM ITERATION FOR CRITICAL BORON SEARCH IS REACHING MAXIMUM' + WRITE(ounit,*) ' ADPRES IS STOPPING' + WRITE(*,*) ' MAXIMUM ITERATION FOR CRITICAL BORON SEARCH IS REACHING MAXIMUM' + STOP + END IF +END DO + +ALLOCATE(npow(nnod)) +IF (aprad == 1 .OR. apaxi == 1) THEN + CALL PowDis(npow) +END IF + +IF (aprad == 1) CALL AsmPow(npow) + +IF (apaxi == 1) CALL AxiPow(npow) + +IF (afrad == 1) CALL AsmFlux(f0, 1._DP) + +1791 format(I3, F10.2, F14.5, ES14.5, ES13.5) + +END SUBROUTINE cbsearch + + +SUBROUTINE cbsearcht() + +! +! Purpose: +! To search critical boron concentration with thermal feedback +! + +USE sdata, ONLY: Ke, ftem, mtem, cden, bcon, rbcon, npow, nnod, & + f0, ser, fer, tfm, aprad, apaxi, afrad, npow, th_err, & + serc, ferc +USE io, ONLY: ounit, AsmFlux, AsmPow, AxiPow, scr +USE cmfd, ONLY: powdis, outer + +IMPLICIT NONE + +REAL(DP) :: bc1, bc2 ! Boron Concentration +REAL(DP) :: ke1, ke2 +INTEGER :: n +REAL(DP) :: tf, tm, mtm, mtf, otm, cd, ocd + +call print_head() + +ALLOCATE(npow(nnod)) + +bcon = rbcon +CALL th_iter() ! Start thermal hydarulic iteration with current paramters +bc1 = bcon +ke1 = Ke + +WRITE(ounit,1792) 1, bc1, Ke1, ser, fer, th_err +WRITE(*,1792) 1, bc1, Ke1, ser, fer, th_err + +IF (bcon < 1.e-5) THEN + bcon = 500. +ELSE + bcon = bcon + (Ke - 1.) * bcon ! Guess next critical boron concentration +END IF +CALL th_iter() ! Perform second thermal hydarulic iteration with updated parameters +bc2 = bcon +ke2 = Ke + +WRITE(ounit,1792) 2, bc2, Ke2, ser, fer, th_err +WRITE(*,1792) 2, bc2, Ke2, ser, fer, th_err + +n = 3 +DO + bcon = bc2 + (1._DP - ke2) / (ke1 - ke2) * (bc1 - bc2) + CALL th_iter() + bc1 = bc2 + bc2 = bcon + ke1 = ke2 + ke2 = ke + WRITE(ounit,1792) n, bcon, Ke, ser, fer, th_err + WRITE(*,1792) n, bcon, Ke, ser, fer, th_err + IF ((ABS(Ke - 1._DP) < 1.e-5_DP) .AND. (ser < serc) .AND. (fer < ferc)) EXIT + n = n + 1 + IF (bcon > 3000.) THEN + WRITE(ounit,*) ' CRITICAL BORON CONCENTRATION EXCEEDS THE LIMIT(3000 ppm)' + WRITE(ounit,*) ' ADPRES IS STOPPING' + WRITE(*,*) ' CRITICAL BORON CONCENTRATION EXCEEDS THE LIMIT(3000 ppm)' + STOP + END IF + IF (bcon < 0.) THEN + WRITE(ounit,*) ' CRITICAL BORON CONCENTRATION IS NOT FOUND (LESS THAN ZERO)' + WRITE(ounit,*) ' ADPRES IS STOPPING' + WRITE(*,*) ' CRITICAL BORON CONCENTRATION IS NOT FOUND (LESS THAN ZERO)' + STOP + END IF + IF (n == 30) THEN + WRITE(ounit,*) ' MAXIMUM ITERATION FOR CRITICAL BORON SEARCH IS REACHING MAXIMUM' + WRITE(ounit,*) ' ADPRES IS STOPPING' + WRITE(*,*) ' MAXIMUM ITERATION FOR CRITICAL BORON SEARCH IS REACHING MAXIMUM' + STOP + END IF +END DO + +IF (aprad == 1 .OR. apaxi == 1) THEN + CALL PowDis(npow) +END IF + +IF (aprad == 1) CALL AsmPow(npow) + +IF (apaxi == 1) CALL AxiPow(npow) + +IF (afrad == 1) CALL AsmFlux(f0, 1._DP) + +CALL par_ave(ftem, tf) +CALL par_ave(mtem, tm) + +CALL par_max(tfm(:,1), mtf) +CALL par_max(mtem, mtm) + +CALL par_ave_out(mtem, otm) +CALL par_ave(cden, cd) +CALL par_ave_out(cden, ocd) + +! Write Output +WRITE(ounit,*) +WRITE(ounit, 5001) tf, tf-273.15; WRITE(ounit, 5002) mtf, mtf-273.15 +WRITE(ounit, 5003) tm, tm-273.15; WRITE(ounit, 5004) mtm, mtm-273.15 +WRITE(ounit, 5005) otm, otm-273.15; WRITE(ounit, 5006) cd * 1000., cd +WRITE(ounit, 5007) ocd * 1000., ocd +if (scr) then + WRITE(*,*) + WRITE(*, 5001) tf, tf-273.15; WRITE(*, 5002) mtf, mtf-273.15 + WRITE(*, 5003) tm, tm-273.15; WRITE(*, 5004) mtm, mtm-273.15 + WRITE(*, 5005) otm, otm-273.15; WRITE(*, 5006) cd * 1000., cd + WRITE(*, 5007) ocd * 1000., ocd +end if + +5001 FORMAT(2X, 'AVERAGE DOPPLER TEMPERATURE : ', F7.1, ' K (', F7.1, ' C)') +5002 FORMAT(2X, 'MAX FUEL CENTERLINE TEMPERATURE : ', F7.1, ' K (', F7.1, ' C)') +5003 FORMAT(2X, 'AVERAGE MODERATOR TEMPERATURE : ', F7.1, ' K (', F7.1, ' C)') +5004 FORMAT(2X, 'MAXIMUM MODERATOR TEMPERATURE : ', F7.1, ' K (', F7.1, ' C)') +5005 FORMAT(2X, 'OUTLET MODERATOR TEMPERATURE : ', F7.1, ' K (', F7.1, ' C)') +5006 FORMAT(2X, 'AVERAGE MODERATOR DENSITY : ', F7.1, ' kg/m3 (', F7.3, ' g/cc)') +5007 FORMAT(2X, 'OUTLET MODERATOR DENSITY : ', F7.1, ' kg/m3 (', F7.3, ' g/cc)') +1792 format(I3, F9.2, F14.5, ES14.5, ES13.5, ES17.5) + +END SUBROUTINE cbsearcht + + +END MODULE th diff --git a/src/mod_trans.f90 b/src/mod_trans.f90 new file mode 100644 index 0000000..39e8ee8 --- /dev/null +++ b/src/mod_trans.f90 @@ -0,0 +1,749 @@ +MODULE trans + +!========================= +! Transient Module to solve transient diffusion problems +! Using Fully Implicit method with (or without) exponetial transformation +! ======================= + +USE sdata, ONLY: DP + +implicit none + +SAVE + +CONTAINS + + +subroutine rod_eject() + +! +! Purpose: +! To perform rod ejection simulation +! + +USE sdata, ONLY: ng, nnod, sigr, nf, nmat, ttot, tdiv, tstep1, tstep2, Ke, & + bcon, ftem, mtem, cden, bpos, nb, & + iBeta, f0, ft, c0, tbeta, omeg, ctbeta, L +USE io, ONLY: ounit, bextr, scr +USE xsec, ONLY: XS_updt +USE cmfd, ONLY: outer_tr, outer, outer_ad + +implicit none + +real(dp), dimension(nnod, ng) :: af ! adjoint flux + +real(dp) :: rho +real(dp) :: t1, t2 +real(dp) :: tpow1 +integer :: n, i, j, imax, step + +! Allocate precusor density +allocate (c0(nnod,nf)) + +! Allocate Frequency transformation constant +allocate (omeg(nnod,ng)) + +! allocate total leakages +allocate(L(nnod,ng)) + +! Update xsec +CALL XS_updt(bcon, ftem, mtem, cden, bpos) + +! Calculate forward flux at t=0 and check if keff=1 +CALL outer(0) +if (scr) then + write(*,*) + write(*,*) ' steady state calculation ... done' +end if + +! If K-EFF NOT EQUAL TO 1.0 +if (ABS(Ke - 1._DP) > 1.e-5_DP) CALL KNE1 + +! Calculate Adjoint flux +! NOTE: This adjoint flux is approximation where +! the same nodal coupling coefficients in forward calculation are used +CALL outer_ad(0) +af = f0 ! Save adjoint flux to af +if (scr) then + write(*,*) + write(*,*) ' adjoint calculation ... done' +end if + +! ! ReCalculate forward flux +CALL outer(0) +if (scr) then + write(*,*) + write(*,*) ' re-calculate steady state condition ... done' +end if + +! Calculate Initial precursor density +CALL iPden() + +! Calculate initial power +CALL PowTot(f0,tpow1) + +! Total beta +tbeta = 0. +do n = 1, nmat + do j = 1, nf + tbeta(n) = tbeta(n) + iBeta(j) + end do + ctbeta = tbeta(1) +end do + +! Calculate reactivity +call reactivity(af, sigr, rho) + +! File output +WRITE(*, *) +WRITE(*, *) " TRANSIENT RESULTS :" +WRITE(*, *) +WRITE(*, *) " Step Time(s) React.($) Rel. Power CR Bank Pos. (1-end)" +WRITE(*, *) "--------------------------------------------------------------" +WRITE(*,'(I4, F10.3, F10.4, ES15.4, 12F9.2)') 0, 0., rho, & +1.0, (bpos(n), n = 1, nb) + +! Terminal output +WRITE(ounit,*) +WRITE(ounit,*) +WRITE(ounit, *) " TRANSIENT RESULTS :" +WRITE(ounit, *) +WRITE(ounit, *) " Step Time(s) React.($) Rel. Power" +WRITE(ounit, *) "-------------------------------------------" +WRITE(ounit,'(I4, F10.3, F10.4, ES15.4)') 0, 0., rho, 1.0 + +! Start transient calculation +step = 0 +t2 = 0. +imax = NINT(tdiv/tstep1) + +! First Time Step +do i = 1, imax + + step = step + 1 + t1 = t2 + t2 = REAL(i)*tstep1 + + if (i > 1) THEN + if (bextr == 0) then + omeg = 0._dp + else + omeg = LOG(f0 / ft) / tstep1 + end if + else + omeg = 0._dp + end if + + call trans_calc(0,tstep1,af,tpow1,step,t2) + +end do + +! Second Time Step +imax = NINT((ttot-tdiv)/tstep2) + +do i = 1, imax + + step = step + 1 + t1 = t2 + t2 = tdiv + REAL(i)*tstep2 + + if (bextr == 0) then + omeg = 0._dp + else + omeg = LOG(f0 / ft) / tstep2 + end if + + call trans_calc(0,tstep2,af,tpow1,step,t2) + +end do + +end subroutine rod_eject + +!****************************************************************************! + +subroutine rod_eject_th() + +! +! Purpose: +! To perform rod ejection simulation with TH feedback +! + +USE sdata, ONLY: ng, nnod, sigr, nf, ttot, tdiv, tstep1, tstep2, Ke, & + tfm, ppow, m, ftem, mtem, bpos, nb, iBeta, & + f0, ft, c0, tbeta, omeg, npow, ctbeta, nmat, L +USE io, ONLY: ounit, bextr, bxtab, scr +USE xsec, ONLY: XS_updt +USE cmfd, ONLY: outer_tr, outer, outer_ad +use th, only : th_iter, par_ave, par_max + +implicit none + +real(dp), dimension(nnod, ng) :: af ! adjoint flux + +real(dp) :: rho +real(dp) :: t1, t2 +real(dp) :: tpow1 +integer :: n, i, j, imax, step +real(dp) :: tf, tm, mtf, mtm + +! Allocate precusor density +allocate (c0(nnod,nf)) + +! Allocate Frequency transformation constant +allocate (omeg(nnod,ng)) + +! Allocate node power distribution +allocate(npow(nnod)) + +! allocate total leakages +allocate(L(nnod,ng)) + +! Determine th paramters distribution +CALL th_iter(0) +if (scr) then + write(*,*) + write(*,*) ' steady state calculation ... done' +end if + +! If K-EFF NOT EQUAL TO 1.0 +IF (ABS(Ke - 1._DP) > 1.e-5_DP .AND. bxtab == 0) CALL KNE1 + +! Calculate Adjoint flux +! NOTE: This adjoint flux is approximation where +! the same nodal coupling coefficients in forward calculation are used +CALL outer_ad(0) +af = f0 ! Save adjoint flux to af +if (scr) then + write(*,*) + write(*,*) ' adjoint calculation ... done' +end if + +! Calculate forward flux +CALL outer(0) +if (scr) then + write(*,*) + write(*,*) ' re-calculate steady state condition ... done' +end if + +! Calculate power +CALL PowTot(f0,tpow1) + +! Calculate Initial precursor density +CALL iPden() + +! Total beta +IF (bxtab == 0) then + tbeta = 0. + do n = 1, nmat + do j = 1, nf + tbeta(n) = tbeta(n) + iBeta(j) + end do + end do + ctbeta = tbeta(1) +else + tbeta = 0. + do n = 1, nmat + do j = 1, nf + tbeta(n) = tbeta(n) + m(n)%iBeta(j) + end do + end do + call calc_beta(af) + write(*,*) + write(*,1324) ctbeta*1.e5 +end if + +! Calculate reactivity +call reactivity(af, sigr, rho) + +CALL par_ave(ftem, tf) +CALL par_max(tfm(:,1), mtf) +CALL par_ave(mtem, tm) +CALL par_max(mtem, mtm) + +! File output +WRITE(ounit, *) +WRITE(ounit, *) " TRANSIENT RESULTS :" +WRITE(ounit, *) +WRITE(ounit, *) " Step Time(s) React.($) Rel. Power Avg. Tm Max. Tm Avg. Tf Max. Tf" +WRITE(ounit, *) "--------------------------------------------------------------------------------" +WRITE(ounit,'(I4, F10.3, F10.4, ES15.4, 4F10.2)') 0, 0., rho, & +ppow*0.01, tm-273.15, mtm-273.15, tf-273.15, mtf-273.15 + +! Terminal output +WRITE(*, *) +WRITE(*, *) " TRANSIENT RESULTS :" +WRITE(*, *) +WRITE(*, *) " Step Time(s) React.($) Rel. Power CR Bank Pos. (1-end)" +WRITE(*, *) "--------------------------------------------------------------" +WRITE(*,'(I4, F10.3, F10.4, ES15.4, 12F9.2)') 0, 0., rho, & +ppow*0.01, (bpos(n), n = 1, nb) + +! Start transient calculation +step = 0 +t2 = 0. +imax = NINT(tdiv/tstep1) + +! First Time Step +do i = 1, imax + + step = step + 1 + t1 = t2 + t2 = REAL(i)*tstep1 + + if (i > 1) THEN + if (bextr == 0) then + omeg = 0._dp + else + omeg = LOG(f0 / ft) / tstep1 + end if + else + omeg = 0._dp + end if + + call trans_calc(1,tstep1,af,tpow1,step,t2) + +end do + +! Second Time Step +imax = NINT((ttot-tdiv)/tstep2) + +do i = 1, imax + + step = step + 1 + t1 = t2 + t2 = tdiv + REAL(i)*tstep2 + + if (bextr == 0) then + omeg = 0._dp + else + omeg = LOG(f0 / ft) / tstep2 + end if + + call trans_calc(1,tstep2,af,tpow1,step,t2) + +end do + +1324 format(2X,'Core-averaged delayed neutron fraction :', F7.2, ' pcm') + +end subroutine rod_eject_th + +!****************************************************************************! + +subroutine trans_calc(thc,ht,af,tpow1,step,t2) + +! +! Purpose: +! To perform transient calculation for given time step +! + +USE sdata, ONLY: ng, nnod, sigr, bcon, ftem, mtem, cden, & + fbpos, bpos, tmove, bspeed, mdir, nb, velo, npow, & + f0, ft, fst, fs0, omeg, tranw, ix, iy, iz, pow, & + tfm, zdel, ppow, node_nf, m, mat, dfis, ctbeta, sth, sigrp +USE io, ONLY: ounit, bxtab +USE xsec, ONLY: XS_updt, XStab_updt +USE cmfd, ONLY: outer_tr, outer, powdis +use th, only : th_trans, par_ave, par_max + + +implicit none + +integer, intent(in) :: thc !T-H indicator +real(dp), intent(in) :: ht, tpow1, t2 +integer, intent(in) :: step +real(dp), dimension(:,:), intent(in) :: af ! adjoint flux + +real(dp) :: rho +real(dp) :: tpow2 +integer :: n, g +logical :: maxi ! Maximum Outer Iteration Reached? + +real(dp), dimension(nnod) :: pline ! Linear power density +real(dp) :: xppow +real(dp) :: tf, tm, mtf, mtm +logical :: first = .true. + +if (first) then + allocate(ft(nnod,ng), fst(nnod)) + allocate(dfis(nnod)) + allocate(sigrp(nnod,ng)) + first = .false. +end if + +! Rod bank changes +do n = 1, nb + if (mdir(n) == 1) THEN ! If CR moving down + if (t2-tmove(n) > 1.e-5_DP .AND. fbpos(n)-bpos(n) < 1.e-5_DP) THEN + bpos(n) = bpos(n) - ht * bspeed(n) + if (bpos(n) < fbpos(n)) bpos(n) = fbpos(n) ! If bpos exceed, set to fbpos + end if + else if (mdir(n) == 2) THEN ! If CR moving up + if (t2-tmove(n) > 1.e-5_DP .AND. fbpos(n)-bpos(n) > 1.e-5_DP) THEN + bpos(n) = bpos(n) + ht * bspeed(n) + if (bpos(n) > fbpos(n)) bpos(n) = fbpos(n) ! If bpos exceed, set to fbpos + end if + else + CONTINUE + end if + end do + + ! Calculate xsec after pertubation + IF (bxtab == 0) THEN + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + ELSE + CALL XStab_updt(bcon, ftem, mtem, cden, bpos) + END IF + + ! Modify removal xsec + sigrp = sigr ! Save sigr to sigrp + IF (bxtab == 0) THEN + DO g = 1, ng + DO n = 1, nnod + sigr(n,g) = sigr(n,g) + 1._DP / (sth * velo(g) * ht) + omeg(n,g) / velo(g) + END DO + END DO + ELSE + DO g = 1, ng + DO n = 1, nnod + sigr(n,g) = sigr(n,g) + 1._DP / (sth * m(mat(n))%velo(g) * ht) & + + omeg(n,g) / m(mat(n))%velo(g) + END DO + END DO + END IF + +! Save the previous fluxes and fission source +ft = f0 +fst = fs0 + +! Transient calculation +CALL outer_tr(ht, maxi) + +! Update precursor density +CALL uPden(ht) + +! Calculate power +CALL PowTot(f0, tpow2) + +! Calculate reactivity +call reactivity(af, sigrp, rho) + +if (thc == 1) then + ! Calculate node power distribution + CALL PowDis(npow) + + ! Power change + xppow = ppow * tpow2/tpow1 * 0.01_DP + + ! Calculate linear power density for each nodes (W/cm) + DO n = 1, nnod + pline(n) = npow(n) * pow * xppow & + / (node_nf(ix(n),iy(n)) * zdel(iz(n))) ! Linear power density (W/cm) + END DO + + ! TH transient + CALL th_trans(pline,ht) + + CALL par_ave(ftem, tf) + CALL par_max(tfm(:,1), mtf) + CALL par_ave(mtem, tm) + CALL par_max(mtem, mtm) +end if + +if (thc == 1) then + WRITE(*,'(I4, F10.3, F10.4, ES15.4, 12F9.2)') step, t2, rho/ctbeta, & + xppow, (bpos(n), n = 1, nb) + + IF (maxi) THEN + WRITE(ounit,'(I4, F10.3, F10.4, ES15.4, 4F10.2, A35)') step, t2, rho/ctbeta, & + xppow, tm-273.15, mtm-273.15, tf-273.15, mtf-273.15, 'OUTER ITERATION DID NOT CONVERGE' + ELSE + WRITE(ounit,'(I4, F10.3, F10.4, ES15.4, 4F10.2)') step, t2, rho/ctbeta, & + xppow, tm-273.15, mtm-273.15, tf-273.15, mtf-273.15 + END IF +else + WRITE(*,'(I4, F10.3, F10.4, ES15.4, 12F9.2)') step, t2, rho/ctbeta, & + tpow2/tpow1, (bpos(n), n = 1, nb) + + if (maxi) THEN + WRITE(ounit,'(I4, F10.3, F10.4, ES15.4, A35)') step, t2, rho/ctbeta, & + tpow2/tpow1, 'OUTER ITERATION DID NOT CONVERGE' + else + WRITE(ounit,'(I4, F10.3, F10.4, ES15.4)') step, t2, rho/ctbeta, & + tpow2/tpow1 + end if +end if + +if (maxi) tranw = .TRUE. + + +end subroutine trans_calc + +!****************************************************************************! + +subroutine KNE1() + +! +! Purpose: +! To adjuts the Keff to 1.0 if it is not equal to 1.0 +! + +USE sdata, ONLY: Ke, xnuf, dnuf, bcon, ftem, mtem, cden, bpos +USE io, ONLY: ounit, scr +USE xsec, ONLY: XS_updt +USE cmfd, ONLY: outer + +implicit none + +integer :: i + +WRITE(ounit, *) +WRITE(ounit, '(A46,F9.6)') ' INITIAL MULTIPLICATION EFFECTIVE (K-EFF) = ', Ke +WRITE(ounit, *) ' WARNING: THE STEADY STATE K-EFF IS NOT EQUAL TO 1.0' +WRITE(ounit, *) ' AND NOW IT IS FORCED TO 1.0 BY MODIFYING THE nu*sigf CROSS SECTIONS ' +WRITE(ounit, *) +if (scr) then + write(*,*) + write(*,*) ' steady state k-eff not equal to one, force it to one ... done' +end if +do i = 1, 10 + xnuf = xnuf / Ke + dnuf = dnuf / Ke + CALL XS_updt(bcon, ftem, mtem, cden, bpos) + CALL outer(0) + if (ABS(Ke-1._DP) < 1.e-5_DP) EXIT +end do +if (i == 10) STOP "K-EFF STILL NOT EQUAL TO ONE. ADPRES IS STOPPING" + + +end subroutine KNE1 + + +!******************************************************************************! + +subroutine PowTot (fx,tpow) + +! +! Purpose: +! To calculate total power density +! + + +USE sdata, ONLY: ng, nnod, sigf, vdel + +implicit none + +real(dp), dimension(:,:), INTENT(IN) :: fx +real(dp), INTENT(OUT) :: tpow + +real(dp), dimension(nnod) :: p +integer :: g, n +real(dp) :: pow + +p = 0._DP +do g= 1, ng + do n= 1, nnod + pow = fx(n,g) * sigf(n,g) * vdel(n) + if (pow < 0.) pow = 0. + p(n) = p(n) + pow + end do +end do + + +tpow = 0._DP +do n = 1, nnod + tpow = tpow + p(n) +end do + +end subroutine PowTot + +!****************************************************************************! + +subroutine iPden() + +! +! Purpose: +! Calculate Initial precursor density +! + +USE sdata, ONLY: nnod, nf, fs0, c0, iBeta, lamb, m, mat, nuf, ng +USE io, ONLY: bxtab + +implicit none + +integer :: n, j +real(dp) :: blamb + +if (bxtab == 1) THEN + do n = 1, nnod + do j = 1, nf + if (nuf(n,ng) > 0.) THEN !If it is fuel + blamb = m(mat(n))%iBeta(j) / m(mat(n))%lamb(j) + c0(n,j) = blamb * fs0(n) + else + c0(n,j) = 0. + end if + end do + end do +else + do n = 1, nnod + do j = 1, nf + blamb = iBeta(j) / lamb(j) + c0(n,j) = blamb * fs0(n) + end do + end do +end if + + +end subroutine iPden + +!****************************************************************************! + +subroutine uPden(ht) + +! +! Purpose: +! To update precursor density +! + +USE sdata, ONLY: nnod, nf, fs0, fst, c0, iBeta, lamb, m, mat, nuf, ng +USE io, ONLY: bxtab + +implicit none + +real(dp), INTENT(IN) :: ht +real(dp) :: a1, a2, pxe +integer :: n, i + +if (bxtab == 1) THEN + do i = 1, nf + do n = 1, nnod + if (nuf(n,ng) > 0.) THEN !If it is fuel + pxe = exp(-m(mat(n))%lamb(i)*ht) + a1 = (1._dp - pxe) / (m(mat(n))%lamb(i)*ht) + a2 = 1._dp - a1 + a1 = a1 - pxe + c0(n,i) = c0(n,i) * pxe + m(mat(n))%iBeta(i) / m(mat(n))%lamb(i) & + * (a1*fst(n) + a2*fs0(n)) + end if + end do + end do +else + do i = 1, nf + pxe = exp(-lamb(i)*ht) + a1 = (1._dp - pxe) / (lamb(i)*ht) + a2 = 1._dp - a1 + a1 = a1 - pxe + do n = 1, nnod + c0(n,i) = c0(n,i) * pxe + iBeta(i) / lamb(i) & + * (a1*fst(n) + a2*fs0(n)) + end do + end do +end if + + +end subroutine uPden + +!****************************************************************************! + +subroutine reactivity(af,sigrp, rho) + +! +! Purpose: +! To calculate dynamic reactivity +! + +USE sdata, ONLY: nnod, ng, f0, sigs, chi, mat, fs0, vdel, L +use nodal, only: Lxyz + +implicit none + +real(dp), dimension(:,:), INTENT(IN) :: af +real(dp), dimension(:,:), INTENT(IN) :: sigrp +real(dp), INTENT(OUT) :: rho + +integer :: n, g, h +real(dp), dimension(nnod) :: scg +real(dp) :: rem, lea, src, fde, L1, L2, L3 + +src = 0.; rem = 0.; lea = 0.; fde = 0. +do g = 1, ng + scg = 0. + do h = 1, ng + do n = 1, nnod + if (g /= h) scg(n) = scg(n) + sigs(n,h,g) * f0(n,h) + end do + end do + do n = 1, nnod + call Lxyz(n,g,L1,L2,L3) + L(n,g) = L1 + L2 + L3 + src = src + af(n,g) * (scg(n) + chi(mat(n),g) * fs0(n)) * vdel(n) + rem = rem + af(n,g) * sigrp(n,g) * f0(n,g) * vdel(n) + lea = lea + af(n,g) * L(n,g) * vdel(n) + fde = fde + af(n,g) * chi(mat(n),g) * fs0(n) * vdel(n) + end do +end do + +rho = (src - lea - rem) / fde + +end subroutine reactivity + +!****************************************************************************! + +subroutine calc_beta(af) + +! +! Purpose: +! To calculate core-averaged delayed neutron fraction +! + +USE sdata, ONLY: ng, nnod, m, mat, chi, nf, f0, nuf, ctbeta +USE cmfd, ONLY: Integrate +USE io, ONLY: ounit + +implicit none + +real(dp), dimension(:,:), INTENT(IN) :: af + +INTEGER :: n, i, g +real(dp), dimension(nnod) :: vdum, vdum2 +real(dp) :: F + +! Calculate F +vdum = 0. +DO g = 1, ng + DO n = 1, nnod + vdum(n) = vdum(n) + nuf(n,g) * f0(n,g) + END DO +END DO + +vdum2 = 0. +DO g = 1, ng + DO n = 1, nnod + vdum2(n) = vdum2(n) + chi(mat(n),g) * vdum(n) * af(n,g) + END DO +END DO + +F = Integrate(vdum2) + +! Calculate Delayed neutron fraction (beta) +ctbeta = 0._dp +DO i = 1, nf + vdum2 = 0. + DO g = 1, ng + DO n = 1, nnod + vdum2(n) = vdum2(n) + chi(mat(n),g) * m(mat(n))%iBeta(i) * vdum(n) * af(n,g) + END DO + END DO + ctbeta = ctbeta + Integrate(vdum2) / F +END DO + +write(ounit,*) +write(ounit,1344) ctbeta*1.e5 + +1344 format (' CORE AVERAGED DELAYED NEUTRON FRACTION: ', F7.2, ' PCM') + + +end subroutine calc_beta + + +end MODULE trans diff --git a/src/mod_xsec.f90 b/src/mod_xsec.f90 new file mode 100644 index 0000000..b2c880e --- /dev/null +++ b/src/mod_xsec.f90 @@ -0,0 +1,862 @@ +module xsec + + use sdata, only: dp + implicit none + save + +contains + + !******************************************************************************! + + SUBROUTINE XS_updt (xbcon, xftem, xmtem, xcden, xbpos) + ! + ! Purpose: + ! To update XS for given TH paramaters and rod position + ! + + use io, only: bbcon, bftem, bmtem, bcden, bcrod, bcbcs + use sdata, only: get_time, xs_time + + + IMPLICIT NONE + + REAL(DP), INTENT(IN) :: xbcon ! Provided Boron Concentration + REAL(DP), DIMENSION(:), INTENT(IN) :: xftem ! Provided fuel temperature + REAL(DP), DIMENSION(:), INTENT(IN) :: xmtem ! Provided moderator temperature + REAL(DP), DIMENSION(:), INTENT(IN) :: xcden ! Provided coolant density + REAL(DP), DIMENSION(:), INTENT(IN) :: xbpos ! Provided control rod bank position + + REAL(DP) :: st, fn + + st = get_time() + + CALL base_updt() + IF (bbcon == 1 .OR. bcbcs == 1) CALL bcon_updt(xbcon) + IF (bftem == 1) CALL ftem_updt(xftem) + IF (bmtem == 1) CALL mtem_updt(xmtem) + IF (bcden == 1) CALL cden_updt(xcden) + IF (bcrod == 1) CALL crod_updt(xbpos) + CALL Dsigr_updt() + + call check_xs() + + fn = get_time() + xs_time = xs_time + (fn-st) + + END SUBROUTINE XS_updt + + !******************************************************************************! + + SUBROUTINE XStab_updt (xbcon, xftem, xmtem, xcden, xbpos) + ! + ! Purpose: + ! To update XS for given TH paramaters and rod position (when xtab file exist) + ! + + USE sdata, ONLY : nnod, mat, sigtr, siga, nuf, sigf, sigs, dc + use io, only : bcrod + use sdata, only: get_time, xs_time + + IMPLICIT NONE + + REAL(DP), INTENT(IN) :: xbcon ! Provided Boron Concentration + REAL(DP), DIMENSION(:), INTENT(IN) :: xftem ! Provided fuel temperature + REAL(DP), DIMENSION(:), INTENT(IN) :: xmtem ! Provided moderator temperature + REAL(DP), DIMENSION(:), INTENT(IN) :: xcden ! Provided coolant density + REAL(DP), DIMENSION(:), INTENT(IN) :: xbpos ! Provided control rod bank position + + INTEGER :: n + REAL(DP) :: st, fn + + st = get_time() + + DO n = 1, nnod + CALL brInterp(0, mat(n), xcden(n), xbcon, xftem(n), xmtem(n), sigtr(n,:), & + siga(n,:), nuf(n,:), sigf(n,:), sigs(n,:,:), dc(n,:,:)) + END DO + IF (bcrod == 1) CALL crod_tab_updt(xbpos) + CALL Dsigr_updt() + + call check_xs() + + fn = get_time() + xs_time = xs_time + (fn-st) + + + END SUBROUTINE XStab_updt + + !******************************************************************************! + + SUBROUTINE check_xs () + ! + ! Purpose: + ! To check errors in xsec + ! + + use sdata, only : D, sigr, nuf, chi, sigs, nnod, ng, mat, nmat + use io, only : ounit + + + IMPLICIT NONE + + INTEGER :: n, g, h + + DO g = 1, ng + DO n = 1, nnod + IF (D(n,g) < 1.e-20) then + WRITE(*,*) + WRITE(*,3541) mat(n), g + WRITE(*,*) ' DIFFUSION COEF. IS CLOSE TO ZERO OR NEGATIVE' + WRITE(ounit,3541) mat(n), g + WRITE(ounit,*) ' DIFFUSION COEF. IS CLOSE TO ZERO OR NEGATIVE' + STOP + END IF + IF (sigr(n,g) < 0.) then + WRITE(*,*) + WRITE(*,3542) mat(n), g + WRITE(*,*) ' REMOVAL XS IS NEGATIVE' + WRITE(ounit,3542) mat(n), g + WRITE(ounit,*) ' REMOVAL XS IS NEGATIVE' + STOP + END IF + IF (nuf(n,g) < 0.) then + WRITE(*,*) + WRITE(*,3544) mat(n), g + WRITE(*,*) ' NU*FISSION XS IS NEGATIVE' + WRITE(ounit,3544) mat(n), g + WRITE(ounit,*) ' NU*FISSION XS IS NEGATIVE' + STOP + END IF + END DO + DO n = 1, nmat + IF (chi(n,g) < 0.) then + WRITE(*,*) + WRITE(*,3543) n, g + WRITE(*,*) ' FISSION SPECTRUM IS NEGATIVE' + WRITE(ounit,3543) n, g + WRITE(ounit,*) ' FISSION SPECTRUM IS NEGATIVE' + STOP + END IF + END DO + DO h = 1, ng + DO n = 1, nnod + IF (sigs(n,g,h) < 0.) then + WRITE(*,*) + WRITE(*,3545) mat(n), g, h + WRITE(*,*) ' SCATTERING XS IS NEGATIVE' + WRITE(ounit,3545) mat(n), g, h + WRITE(ounit,*) ' SCATTERING XS IS NEGATIVE' + STOP + END IF + END DO + END DO + END DO + + 3541 FORMAT (2X, 'ERROR IN THE DIFFUSION COEFFICIENT ', & + 'FOR MATERIAL NUMBER : ', I3, ' ENERGY GROUP : ', I2) + 3542 FORMAT (2X, 'ERROR IN THE REMOVAL CROSS SECTION ', & + 'FOR MATERIAL NUMBER : ', I3, ' ENERGY GROUP : ', I2) + 3543 FORMAT (2X, 'ERROR IN THE FISSION SPECTRUM ', & + 'FOR MATERIAL NUMBER : ', I3, ' ENERGY GROUP : ', I2) + 3544 FORMAT (2X, 'ERROR IN THE NU*FISSION XSEC ', & + 'FOR MATERIAL NUMBER : ', I3, ' ENERGY GROUP : ', I2) + 3545 FORMAT (2X, 'ERROR IN THE SCATTERING CROSS SECTION ', & + 'FOR MATERIAL NUMBER : ', I3, ' ENERGY GROUP : ', I2, & + ' TO ENERGY GROUP : ', I2) + + + END SUBROUTINE check_xs + + !******************************************************************************! + + SUBROUTINE base_updt () + ! + ! Purpose: + ! To update current XS to base XS + ! + + + USE sdata, ONLY: nnod, sigtr, siga, nuf, sigf, sigs, mat, & + xsigtr, xsiga, xnuf, xsigf, xsigs + + IMPLICIT NONE + + INTEGER :: n + + DO n = 1, nnod + sigtr(n,1:) = xsigtr(mat(n),1:) + siga (n,1:) = xsiga (mat(n),1:) + nuf (n,1:) = xnuf (mat(n),1:) + sigf (n,1:) = xsigf (mat(n),1:) + sigs (n,1:,1:) = xsigs (mat(n),1:,1:) + END DO + + + END SUBROUTINE base_updt + + !******************************************************************************! + + SUBROUTINE Dsigr_updt () + ! + ! Purpose: + ! To update diffusion constant and removal XS + ! + + + USE sdata, ONLY: nnod, ng, sigtr, siga, & + sigs, D, sigr + + IMPLICIT NONE + + INTEGER :: i, g, h + REAL(DP) :: dum + + DO i = 1, nnod + DO g = 1, ng + IF (sigtr(i,g) < 1.e-5 ) STOP "Negative diffusion coefficient encountered" + D(i,g) = 1._dp/(3._dp*sigtr(i,g)) + dum = 0. + DO h= 1, ng + IF (g /= h) dum = dum + sigs(i,g,h) + END DO + sigr(i,g) = siga(i,g) + dum + END DO + END DO + + END SUBROUTINE Dsigr_updt + + !******************************************************************************! + + SUBROUTINE crod_updt (bpos) + ! + ! Purpose: TO UPDATE AND CALCUALTE VOLUME WEIGHTED HOMOGENIZED CX FOR RODDED NODE + ! + + USE sdata, ONLY: ng, nxx, nyy, nzz, xyz, zdel, mat, & + sigtr, siga, nuf, sigf, sigs, & + dsigtr, dsiga, dnuf, dsigf, dsigs, & + coreh, fbmap, pos0, ssize + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), INTENT(IN) :: bpos + + INTEGER ::i, j, k, g, h + REAL(DP) :: rodh, vfrac + REAL(DP) :: dum + + ! For each node + DO j = 1, nyy + DO i = 1, nxx + IF (fbmap(i,j) > 0) THEN + !!!(rodh -> posistion the tip of the control rod the top of core) + rodh = coreh - pos0 - bpos(fbmap(i,j))*ssize + dum = 0._dp + DO k = nzz, 1, -1 + ! For partially rodded node, get volume weighted homogenized CX (0 < vfrac < 1._DP) + IF (rodh >= dum .AND. rodh <= dum+zdel(k)) THEN ! If this node partially rodded + vfrac = (rodh - dum) / zdel(k) + sigtr(xyz(i,j,k),:) = sigtr(xyz(i,j,k),:) + & + vfrac * dsigtr(mat(xyz(i,j,k)),:) + siga(xyz(i,j,k),:) = siga(xyz(i,j,k),:) + & + vfrac * dsiga(mat(xyz(i,j,k)),:) + nuf(xyz(i,j,k),:) = nuf(xyz(i,j,k),:) + & + vfrac * dnuf(mat(xyz(i,j,k)),:) + sigf(xyz(i,j,k),:) = sigf(xyz(i,j,k),:) + & + vfrac * dsigf(mat(xyz(i,j,k)),:) + sigs(xyz(i,j,k),:,:) = sigs(xyz(i,j,k),:,:) + & + vfrac * dsigs(mat(xyz(i,j,k)),:,:) + EXIT + END IF + ! For fully rodded node, vfrac = 1. + sigtr(xyz(i,j,k),:) = sigtr(xyz(i,j,k),:) + dsigtr(mat(xyz(i,j,k)),:) + siga(xyz(i,j,k),:) = siga(xyz(i,j,k),:) + dsiga(mat(xyz(i,j,k)),:) + nuf(xyz(i,j,k),:) = nuf(xyz(i,j,k),:) + dnuf(mat(xyz(i,j,k)),:) + sigf(xyz(i,j,k),:) = sigf(xyz(i,j,k),:) + dsigf(mat(xyz(i,j,k)),:) + sigs(xyz(i,j,k),:,:) = sigs(xyz(i,j,k),:,:) + dsigs(mat(xyz(i,j,k)),:,:) + + dum = dum + zdel(k) + END DO + ! if negative CX found, Surpress CX to zero and calculate D and sigr + DO k = nzz, 1, -1 + DO g = 1, ng + IF (siga(xyz(i,j,k),g) < 0.) siga(xyz(i,j,k),g) = 0. + IF (nuf(xyz(i,j,k),g) < 0.) nuf(xyz(i,j,k),g) = 0. + IF (sigf(xyz(i,j,k),g) < 0.) sigf(xyz(i,j,k),g) = 0. + DO h = 1, ng + IF (sigs(xyz(i,j,k),g,h) < 0.) sigs(xyz(i,j,k),g,h) = 0. + END DO + END DO + END DO + END IF + END DO + END DO + + + END SUBROUTINE crod_updt + + !******************************************************************************! + + SUBROUTINE crod_tab_updt (bpos) + ! + ! Purpose: TO UPDATE AND CALCUALTE VOLUME WEIGHTED HOMOGENIZED CX FOR RODDED NODE + ! + + USE sdata, ONLY: ng, nxx, nyy, nzz, xyz, zdel, mat, & + sigtr, siga, nuf, sigf, sigs, dc, & + coreh, fbmap, pos0, ssize, m, & + nnod, cden, ftem, mtem, bcon + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), INTENT(IN) :: bpos + + INTEGER ::i, j, k, g, h + REAL(DP) :: rodh, vfrac + REAL(DP) :: dum + + INTEGER :: nd + + REAL(DP), DIMENSION(nnod,ng) :: rsigtr, rsiga, rnuf, rsigf + REAL(DP), DIMENSION(nnod,ng,ng) :: rsigs + REAL(DP), DIMENSION(nnod,ng,6) :: rdc + + DO j = 1, nyy + DO i = 1, nxx + IF (fbmap(i,j) > 0) THEN + !(rodh -> posistion the tip of the control rod the top of core) + rodh = coreh - pos0 - bpos(fbmap(i,j))*ssize + dum = 0._DP + DO k = nzz, 1, -1 + nd = xyz(i,j,k) ! Node number + IF (m(mat(nd))%trod == 1) THEN + CALL brInterp(1, mat(nd), cden(nd), bcon, ftem(nd), & + mtem(nd), rsigtr(nd,:), rsiga(nd,:), rnuf(nd,:), & + rsigf(nd,:), rsigs(nd,:,:), rdc(nd,:,:)) + ELSE + WRITE(101,1671) fbmap(i,j), mat(nd) + WRITE(*,1671) fbmap(i,j), mat(nd) + STOP + 1671 FORMAT (2X, 'CONTROL ROD BANK NUMBER ', I4, & + ' COINCIDES WITH MATERIAL NUMBER ', I4, & + ' THAT DOES NOT HAVE CONTROL ROD DATA IN XTAB FILE') + END IF + ! For partially rodded node, get volume weighted homogenized CX (0 < vfrac < 1._DP) + IF (rodh >= dum .AND. rodh <= dum+zdel(k)) THEN ! If this node partially rodded + vfrac = (rodh - dum) / zdel(k) ! Rodded fraction + sigtr(nd,:) = (1._DP - vfrac) * sigtr(nd,:) + & + vfrac * rsigtr(nd,:) + siga(nd,:) = (1._DP - vfrac) * siga(nd,:) + & + vfrac * rsiga(nd,:) + nuf(nd,:) = (1._DP - vfrac) * nuf(nd,:) + & + vfrac * rnuf(nd,:) + sigf(nd,:) = (1._DP - vfrac) * sigf(nd,:) + & + vfrac * rsigf(nd,:) + sigs(nd,:,:) = (1._DP - vfrac) * sigs(nd,:,:) + & + vfrac * rsigs(nd,:,:) + dc(nd,:,:) = (1._DP - vfrac) * dc(nd,:,:) + & + vfrac * rdc(nd,:,:) + EXIT + END IF + ! For fully rodded node, vfrac = 1. + sigtr(nd,:) = rsigtr(nd,:) + siga(nd,:) = rsiga(nd,:) + nuf(nd,:) = rnuf(nd,:) + sigf(nd,:) = rsigf(nd,:) + sigs(nd,:,:) = rsigs(nd,:,:) + dc(nd,:,:) = rdc(nd,:,:) + + dum = dum + zdel(k) + END DO + ! if negative CX found, Surpress CX to zero and calculate D and sigr + DO k = nzz, 1, -1 + nd = xyz(i,j,k) + DO g = 1, ng + IF (siga(nd,g) < 0.) siga(nd,g) = 0. + IF (nuf(nd,g) < 0.) nuf(nd,g) = 0. + IF (sigf(nd,g) < 0.) sigf(nd,g) = 0. + DO h = 1, ng + IF (sigs(nd,g,h) < 0.) sigs( nd,g,h) = 0. + END DO + DO h = 1, 6 + IF (dc(nd,g,h) < 0.) dc(nd,g,h) = 0. + END DO + END DO + END DO + END IF + END DO + END DO + + END SUBROUTINE crod_tab_updt + + !******************************************************************************! + + SUBROUTINE bcon_updt (bcon) + + ! + ! Purpose: + ! To update CX for given boron concentration + + USE sdata, ONLY: nnod, ng, sigtr, siga, nuf, sigf, sigs, mat, & + csigtr, csiga, cnuf, csigf, csigs, rbcon + + IMPLICIT NONE + + REAL(DP), INTENT(IN) :: bcon + INTEGER :: n, g, h + + DO n = 1, nnod + DO g = 1, ng + sigtr(n,g) = sigtr(n,g) + csigtr(mat(n),g) * (bcon - rbcon) + siga(n,g) = siga(n,g) + csiga(mat(n),g) * (bcon - rbcon) + nuf(n,g) = nuf(n,g) + cnuf(mat(n),g) * (bcon - rbcon) + sigf(n,g) = sigf(n,g) + csigf(mat(n),g) * (bcon - rbcon) + DO h = 1, ng + sigs(n,g,h) = sigs(n,g,h) + csigs(mat(n),g,h) * (bcon - rbcon) + END DO + END DO + END DO + + + END SUBROUTINE bcon_updt + + !******************************************************************************! + + SUBROUTINE ftem_updt (ftem) + + ! + ! Purpose: + ! To update CX for given fuel temp + + USE sdata, ONLY: nnod, ng, sigtr, siga, nuf, sigf, sigs, mat, & + fsigtr, fsiga, fnuf, fsigf, fsigs, rftem + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), INTENT(IN) :: ftem + INTEGER :: n, g, h + + + DO n = 1, nnod + DO g = 1, ng + sigtr(n,g) = sigtr(n,g) + fsigtr(mat(n),g) * (SQRT(ftem(n))- SQRT(rftem)) + siga(n,g) = siga(n,g) + fsiga(mat(n),g) * (SQRT(ftem(n)) - SQRT(rftem)) + nuf(n,g) = nuf(n,g) + fnuf(mat(n),g) * (SQRT(ftem(n)) - SQRT(rftem)) + sigf(n,g) = sigf(n,g) + fsigf(mat(n),g) * (SQRT(ftem(n)) - SQRT(rftem)) + DO h = 1, ng + sigs(n,g,h) = sigs(n,g,h) + fsigs(mat(n),g,h) * (SQRT(ftem(n)) - SQRT(rftem)) + END DO + END DO + END DO + + END SUBROUTINE ftem_updt + + !******************************************************************************! + + SUBROUTINE mtem_updt (mtem) + + ! + ! Purpose: + ! To update CX for given moderator temperature + + USE sdata, ONLY: nnod, ng, sigtr, siga, nuf, sigf, sigs, mat, & + msigtr, msiga, mnuf, msigf, msigs, rmtem + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), INTENT(IN) :: mtem + INTEGER :: n, g, h + + + DO n = 1, nnod + DO g = 1, ng + sigtr(n,g) = sigtr(n,g) + msigtr(mat(n),g) * (mtem(n) - rmtem) + siga(n,g) = siga(n,g) + msiga(mat(n),g) * (mtem(n) - rmtem) + nuf(n,g) = nuf(n,g) + mnuf(mat(n),g) * (mtem(n) - rmtem) + sigf(n,g) = sigf(n,g) + msigf(mat(n),g) * (mtem(n) - rmtem) + DO h = 1, ng + sigs(n,g,h) = sigs(n,g,h) + msigs(mat(n),g,h) * (mtem(n) - rmtem) + END DO + END DO + END DO + + + END SUBROUTINE mtem_updt + + !******************************************************************************! + + SUBROUTINE cden_updt (cden) + + ! + ! Purpose: + ! To update CX for given coolant density + + USE sdata, ONLY: nnod, ng, sigtr, siga, nuf, sigf, sigs, mat, & + lsigtr, lsiga, lnuf, lsigf, lsigs, rcden + + IMPLICIT NONE + + REAL(DP), DIMENSION(:), INTENT(IN) :: cden + INTEGER :: n, g, h + + + DO n = 1, nnod + DO g = 1, ng + sigtr(n,g) = sigtr(n,g) + lsigtr(mat(n),g) * (cden(n) - rcden) + siga(n,g) = siga(n,g) + lsiga(mat(n),g) * (cden(n) - rcden) + nuf(n,g) = nuf(n,g) + lnuf(mat(n),g) * (cden(n) - rcden) + sigf(n,g) = sigf(n,g) + lsigf(mat(n),g) * (cden(n) - rcden) + DO h = 1, ng + sigs(n,g,h) = sigs(n,g,h) + lsigs(mat(n),g,h) * (cden(n) - rcden) + END DO + END DO + END DO + + + END SUBROUTINE cden_updt + + !******************************************************************************! + + SUBROUTINE brInterp (rod, mn, xcden, xbcon, xftem, xmtem, sigtr, siga, nuf, & + sigf, sigs, dc) + !Purpose: To interpolate the xsec data from xtab file for given bcon, + ! ftem, mtem and cden + + USE sdata, ONLY: m, XBRANCH, ng + use io, only: ounit + + IMPLICIT NONE + + INTEGER, INTENT(IN) :: rod, mn ! CR indicator and material number + REAL(DP), INTENT(IN) :: xbcon, xftem, xmtem, xcden ! TH Parameters + REAL(DP), DIMENSION(:), INTENT(OUT) :: sigtr, siga, nuf, sigf + REAL(DP), DIMENSION(:,:), INTENT(OUT) :: dc, sigs + + INTEGER, PARAMETER :: nx = 8 + TYPE(XBRANCH), DIMENSION(nx) :: xs !Temporary xsec for interpolation + INTEGER :: s, t, u, v, mx + INTEGER :: s1, s2, t1, t2, u1, u2, v1, v2 ! Dimnesion Position of the given parameters + INTEGER :: i + REAL(DP) :: radx + + !Define + and - operators for XBRANCH type addition and substitution respectively + INTERFACE OPERATOR (+) + MODULE PROCEDURE brAdd + END INTERFACE + INTERFACE OPERATOR (-) + MODULE PROCEDURE brSubst + END INTERFACE + INTERFACE OPERATOR (*) + MODULE PROCEDURE brRealMult + END INTERFACE + + ! Set to default + s1=1; s2=1; t1=1; t2=1; u1=1; u2=1; v1=1; v2=1 + + ! Get 2 closest points for interpolation + ! FOR COOLANT DENSITY + IF (m(mn)%nd > 1) THEN + mx = m(mn)%nd + IF (xcden >= m(mn)%pd(1) .AND. xcden <= m(mn)%pd(mx)) THEN + DO s = 2, mx + IF (xcden >= m(mn)%pd(s-1) .AND. xcden <= m(mn)%pd(s)) THEN + s1 = s-1 + s2 = s + EXIT + END IF + END DO + ELSE IF (xcden < m(mn)%pd(1) .AND. (m(mn)%pd(1) - xcden) / m(mn)%pd(1) < 0.2) THEN + s1 = 1 + s2 = 2 + ELSE IF (xcden > m(mn)%pd(mx) .AND. (xcden - m(mn)%pd(mx)) / m(mn)%pd(mx) < 0.2) THEN + s1 = mx - 1 + s2 = mx + ELSE + WRITE(ounit,1567) xcden + WRITE(*,1567) xcden + STOP + 1567 FORMAT(2X, ' ERROR: COOLANT DENSITY ', F7.3 ,' g/cm3 & + & IS OUT OF THE RANGE OF THE BRANCH PARAMETER') + END IF + END IF + + ! FOR BORON CONCENTRATION + IF (m(mn)%nb > 1) THEN + mx = m(mn)%nb + IF (xbcon >= m(mn)%pb(1) .AND. xbcon <= m(mn)%pb(mx)) THEN + DO t = 2, mx + IF (xbcon >= m(mn)%pb(t-1) .AND. xbcon <= m(mn)%pb(t)) THEN + t1 = t-1 + t2 = t + EXIT + END IF + END DO + ELSE IF (xbcon < m(mn)%pb(1) .AND. (m(mn)%pb(1) - xbcon) < 100.) THEN + t1 = 1 + t2 = 2 + ELSE IF (xbcon > m(mn)%pb(mx) .AND. (xbcon - m(mn)%pb(mx)) < 100.) THEN + t1 = mx - 1 + t2 = mx + ELSE + WRITE(ounit,1568) xbcon + WRITE(*,1568) xbcon + STOP + 1568 FORMAT(2X, ' ERROR: BORON CONCENTRATION ', F8.1 ,' PPM & + & IS OUT OF THE RANGE OF THE BRANCH PARAMETER') + END IF + END IF + + ! FOR FUEL TEMPERATURE + IF (m(mn)%nf > 1) THEN + mx = m(mn)%nf + IF (xftem >= m(mn)%pf(1) .AND. xftem <= m(mn)%pf(mx)) THEN + DO u = 2, mx + IF (xftem >= m(mn)%pf(u-1) .AND. xftem <= m(mn)%pf(u)) THEN + u1 = u-1 + u2 = u + EXIT + END IF + END DO + ELSE IF (xftem < m(mn)%pf(1) .AND. (m(mn)%pf(1) - xftem) / m(mn)%pf(1) < 0.2) THEN + u1 = 1 + u2 = 2 + ELSE IF (xftem > m(mn)%pf(mx) .AND. (xftem - m(mn)%pf(mx)) / m(mn)%pf(mx) < 0.2) THEN + u1 = mx - 1 + u2 = mx + ELSE + WRITE(ounit,1570) xftem + WRITE(*,1570) xftem + STOP + 1570 FORMAT(2X, ' ERROR: FUEL TEMPERATURE ', F7.1 ,' K & + & IS OUT OF THE RANGE OF THE BRANCH PARAMETER') + END IF + END IF + + ! FOR MODERATOR TEMPERATURE + IF (m(mn)%nm > 1) THEN + mx = m(mn)%nm + IF (xmtem >= m(mn)%pm(1) .AND. xmtem <= m(mn)%pm(mx)) THEN + DO v = 2, mx + IF (xmtem >= m(mn)%pm(v-1) .AND. xmtem <= m(mn)%pm(v)) THEN + v1 = v-1 + v2 = v + EXIT + END IF + END DO + ELSE IF (xmtem < m(mn)%pm(1) .AND. (m(mn)%pm(1) - xmtem) / m(mn)%pm(1) < 0.2) THEN + v1 = 1 + v2 = 2 + ELSE IF (xmtem > m(mn)%pm(mx) .AND. (xmtem - m(mn)%pm(mx)) / m(mn)%pm(mx) < 0.2) THEN + v1 = mx - 1 + v2 = mx + ELSE + WRITE(ounit,1569) xmtem + WRITE(*,1569) xmtem + STOP + 1569 FORMAT(2X, ' ERROR: MODERATOR TEMPERATURE ', F7.1 ,' K & + & IS OUT OF THE RANGE OF THE BRANCH PARAMETER') + END IF + END IF + + !Start doing interpolation + DO i = 1, nx !Allocate memory to xs + ALLOCATE(xs(i)%sigtr(ng)) + ALLOCATE(xs(i)%siga(ng)) + ALLOCATE(xs(i)%nuf(ng)) + ALLOCATE(xs(i)%sigf(ng)) + ALLOCATE(xs(i)%dc(ng,6)) + ALLOCATE(xs(i)%sigs(ng,ng)) + END DO + + IF (rod == 0) THEN ! For Unrodded XSEC + !interpolation on Moderator Temperature + IF (m(mn)%nm > 1) THEN + radx = (xmtem - m(mn)%pm(v1)) / (m(mn)%pm(v2) - m(mn)%pm(v1)) + xs(1) = m(mn)%xsec(s1,t1,u1,v1) + & + radx * (m(mn)%xsec(s1,t1,u1,v2) - m(mn)%xsec(s1,t1,u1,v1)) + xs(2) = m(mn)%xsec(s1,t1,u2,v1) + & + radx * (m(mn)%xsec(s1,t1,u2,v2) - m(mn)%xsec(s1,t1,u2,v1)) + xs(3) = m(mn)%xsec(s1,t2,u1,v1) + & + radx * (m(mn)%xsec(s1,t2,u1,v2) - m(mn)%xsec(s1,t2,u1,v1)) + xs(4) = m(mn)%xsec(s1,t2,u2,v1) + & + radx * (m(mn)%xsec(s1,t2,u2,v2) - m(mn)%xsec(s1,t2,u2,v1)) + xs(5) = m(mn)%xsec(s2,t1,u1,v1) + & + radx * (m(mn)%xsec(s2,t1,u1,v2) - m(mn)%xsec(s2,t1,u1,v1)) + xs(6) = m(mn)%xsec(s2,t1,u2,v1) + & + radx * (m(mn)%xsec(s2,t1,u2,v2) - m(mn)%xsec(s2,t1,u2,v1)) + xs(7) = m(mn)%xsec(s2,t2,u1,v1) + & + radx * (m(mn)%xsec(s2,t2,u1,v2) - m(mn)%xsec(s2,t2,u1,v1)) + xs(8) = m(mn)%xsec(s2,t2,u2,v1) + & + radx * (m(mn)%xsec(s2,t2,u2,v2) - m(mn)%xsec(s2,t2,u2,v1)) + ELSE + xs(1) = m(mn)%xsec(s1,t1,u1,v1) + xs(2) = m(mn)%xsec(s1,t1,u2,v1) + xs(3) = m(mn)%xsec(s1,t2,u1,v1) + xs(4) = m(mn)%xsec(s1,t2,u2,v1) + xs(5) = m(mn)%xsec(s2,t1,u1,v1) + xs(6) = m(mn)%xsec(s2,t1,u2,v1) + xs(7) = m(mn)%xsec(s2,t2,u1,v1) + xs(8) = m(mn)%xsec(s2,t2,u2,v1) + END IF + !interpolation on Fuel Temperature + IF (m(mn)%nf > 1) THEN + radx = (xftem - m(mn)%pf(u1)) / (m(mn)%pf(u2) - m(mn)%pf(u1)) + xs(1) = xs(1) + radx * (xs(2) - xs(1)) + xs(3) = xs(3) + radx * (xs(4) - xs(3)) + xs(5) = xs(5) + radx * (xs(6) - xs(5)) + xs(7) = xs(7) + radx * (xs(8) - xs(7)) + END IF + !interpolation on Boron concentration + IF (m(mn)%nb > 1) THEN + radx = (xbcon - m(mn)%pb(t1)) / (m(mn)%pb(t2) - m(mn)%pb(t1)) + xs(1) = xs(1) + radx * (xs(3) - xs(1)) + xs(5) = xs(5) + radx * (xs(7) - xs(5)) + END IF + !interpolation on coolant density + IF (m(mn)%nd > 1) THEN + xs(1) = xs(1) + (xcden - m(mn)%pd(s1)) / (m(mn)%pd(s2) - m(mn)%pd(s1)) * & + (xs(5) - xs(1)) + END IF + ELSE ! For Rodded XSEC + !interpolation on Moderator Temperature + IF (m(mn)%nm > 1) THEN + radx = (xmtem - m(mn)%pm(v1)) / (m(mn)%pm(v2) - m(mn)%pm(v1)) + xs(1) = m(mn)%rxsec(s1,t1,u1,v1) + & + radx * (m(mn)%rxsec(s1,t1,u1,v2) - m(mn)%rxsec(s1,t1,u1,v1)) + xs(2) = m(mn)%rxsec(s1,t1,u2,v1) + & + radx * (m(mn)%rxsec(s1,t1,u2,v2) - m(mn)%rxsec(s1,t1,u2,v1)) + xs(3) = m(mn)%rxsec(s1,t2,u1,v1) + & + radx * (m(mn)%rxsec(s1,t2,u1,v2) - m(mn)%rxsec(s1,t2,u1,v1)) + xs(4) = m(mn)%rxsec(s1,t2,u2,v1) + & + radx * (m(mn)%rxsec(s1,t2,u2,v2) - m(mn)%rxsec(s1,t2,u2,v1)) + xs(5) = m(mn)%rxsec(s2,t1,u1,v1) + & + radx * (m(mn)%rxsec(s2,t1,u1,v2) - m(mn)%rxsec(s2,t1,u1,v1)) + xs(6) = m(mn)%rxsec(s2,t1,u2,v1) + & + radx * (m(mn)%rxsec(s2,t1,u2,v2) - m(mn)%rxsec(s2,t1,u2,v1)) + xs(7) = m(mn)%rxsec(s2,t2,u1,v1) + & + radx * (m(mn)%rxsec(s2,t2,u1,v2) - m(mn)%rxsec(s2,t2,u1,v1)) + xs(8) = m(mn)%rxsec(s2,t2,u2,v1) + & + radx * (m(mn)%rxsec(s2,t2,u2,v2) - m(mn)%rxsec(s2,t2,u2,v1)) + ELSE + xs(1) = m(mn)%rxsec(s1,t1,u1,v1) + xs(2) = m(mn)%rxsec(s1,t1,u2,v1) + xs(3) = m(mn)%rxsec(s1,t2,u1,v1) + xs(4) = m(mn)%rxsec(s1,t2,u2,v1) + xs(5) = m(mn)%rxsec(s2,t1,u1,v1) + xs(6) = m(mn)%rxsec(s2,t1,u2,v1) + xs(7) = m(mn)%rxsec(s2,t2,u1,v1) + xs(8) = m(mn)%rxsec(s2,t2,u2,v1) + END IF + !interpolation on Fuel Temperature + IF (m(mn)%nf > 1) THEN + radx = (xftem - m(mn)%pf(u1)) / (m(mn)%pf(u2) - m(mn)%pf(u1)) + xs(1) = xs(1) + radx * (xs(2) - xs(1)) + xs(3) = xs(3) + radx * (xs(4) - xs(3)) + xs(5) = xs(5) + radx * (xs(6) - xs(5)) + xs(7) = xs(7) + radx * (xs(8) - xs(7)) + END IF + !interpolation on Boron concentration + IF (m(mn)%nb > 1) THEN + radx = (xbcon - m(mn)%pb(t1)) / (m(mn)%pb(t2) - m(mn)%pb(t1)) + xs(1) = xs(1) + radx * (xs(3) - xs(1)) + xs(5) = xs(5) + radx * (xs(7) - xs(5)) + END IF + + !interpolation on coolant density + IF (m(mn)%nd > 1) THEN + xs(1) = xs(1) + (xcden - m(mn)%pd(s1)) / (m(mn)%pd(s2) - m(mn)%pd(s1)) * & + (xs(5) - xs(1)) + END IF + END IF + sigtr = xs(1)%sigtr + siga = xs(1)%siga + nuf = xs(1)%nuf + sigf = xs(1)%sigf + sigs = xs(1)%sigs + dc = xs(1)%dc + + DO i = 1, nx !DeAllocate memory to xs + DEALLOCATE(xs(i)%sigtr) + DEALLOCATE(xs(i)%siga) + DEALLOCATE(xs(i)%nuf) + DEALLOCATE(xs(i)%sigf) + DEALLOCATE(xs(i)%dc) + DEALLOCATE(xs(i)%sigs) + END DO + + + END SUBROUTINE brInterp + + !******************************************************************************! + + FUNCTION brAdd(A, B) RESULT (C) + + ! To perform XBRANCH data type addition + + USE sdata, ONLY: XBRANCH + + IMPLICIT NONE + + TYPE(XBRANCH), INTENT(IN) :: A, B + TYPE(XBRANCH) :: C + + C%sigtr = A%sigtr + B%sigtr + C%siga = A%siga + B%siga + C%nuf = A%nuf + B%nuf + C%sigf = A%sigf + B%sigf + C%sigs = A%sigs + B%sigs + C%dc = A%dc + B%dc + + END FUNCTION brAdd + + !******************************************************************************! + + FUNCTION brSubst(A, B) RESULT (C) + + ! To perform XBRANCH data type substraction + + USE sdata, ONLY: XBRANCH + + IMPLICIT NONE + + TYPE(XBRANCH), INTENT(IN) :: A, B + TYPE(XBRANCH) :: C + + C%sigtr = A%sigtr - B%sigtr + C%siga = A%siga - B%siga + C%nuf = A%nuf - B%nuf + C%sigf = A%sigf - B%sigf + C%sigs = A%sigs - B%sigs + C%dc = A%dc - B%dc + + END FUNCTION brSubst + + !******************************************************************************! + + FUNCTION brRealMult(Re, A) RESULT (B) + + ! To perform XBRANCH data type substraction + + USE sdata, ONLY: XBRANCH, DP + + IMPLICIT NONE + + REAL(DP), INTENT(IN) :: Re + TYPE(XBRANCH), INTENT(IN) :: A + TYPE(XBRANCH) :: B + + B%sigtr = Re * A%sigtr + B%siga = Re * A%siga + B%nuf = Re * A%nuf + B%sigf = Re * A%sigf + B%sigs = Re * A%sigs + B%dc = Re * A%dc + + END FUNCTION brRealMult + + !******************************************************************************! + + + + +end module