NATF: Nuclear Analysis Toolkit Framework
Introduction
NATF (Nuclear Analysis Toolkit for Fusion) is a computational framework developed for automating nuclear analysis workflows using MCNP and FISPACT-II. Key features include:
- Activation Analysis (CELL_ACT): Material activation calculations with pre-processing/post-processing automation
- Displacement Damage (CELL_DPA): DPA (Displacements Per Atom) predictions for radiation damage studies
- Coolant Activation (COOLANT_ACT): Analysis of coolant systems' radioactive inventory
Supported code versions: MCNP5 (1.2-1.6), MCNP6 (6.1-6.2), FISPACT-II 3.0+. Source code available at github.com/zxkjack123/NATF.
Installation Guide
System Requirements
- OS: Linux (Ubuntu 18.04+/CentOS 7+ recommended)
- Python: 3.6+ (Recommended 3.10+)
- Prerequisites: numpy, pandas, matplotlib, configparser
Installation Methods
1. PyPI Installation (Stable Releases):
pip install natf --user
Verify installation:
natf_run --version
2. Source Compilation (Development Version):
git clone -b develop https://github.com/zxkjack123/NATF.git
cd NATF
python setup.py install --user
echo 'export PATH=$HOME/.local/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
Getting Started
Basic Configuration
Create config.ini
:
[general]
aim = CELL_ACT_PRE
work_dir = ./natf_run
[mcnp]
mcnp_input = mcnp.inp
mcnp_ptrac = ptrac_file
[fispact]
material_list = mat_list
irradiation = scenarios.txt
Execute Analysis
natf_run --input config.ini
Validate Installation
Run test suite:
cd tests/
./ci-run-tests.sh