CYANUS (a Calculator for Yield Analysis of NeUtron Activation) is a MATLAB tool for calculating the energies and intensities of delayed gamma-rays released by neutron irradiated samples.
CYANUS allows the user to arbitrarily designate the pointwised neutorn spectrum, elemental composition of the irradiation sample and the three key time duration (irradiation, cooling and measurement time).
- Pointwised neutron spectra are avaliable.
- The isomer production ratios for isotopes irradiated by neutrons with different energies are taken into consideration.
- Easy to deploy, add the folder to the MATLAB path, then start.
- Add the folder
function
to MATLAB search path. - Run
cyanus()
in the command window, several input forms to run CYANUS will appear. - Results are saved to
cyanus-output.mat
in the working path. The variabletable_gamma
contains all the possible delayed gamma-rays and their count in the measurement time period. Other variables and their meanings are listed below
Variable | Description |
---|---|
spec_neutron | Pointwised neutron spectrum (User input) |
table_active | Probabilities that neutron irradiated isotopes reach different isoeric states |
table_decay | List of produced radioactive isotopes, their halflives and saturation quantity |
table_element | Elements and their masses, intermediate variable of CYANUS |
table_gamma | All the delayed gamma-rays and their counts |
table_gamma_element | The total counts of gamma-rays released by each element |
table_gamma_element_max | The count of gamma-ray with the highest intensity of each element |
table_isotope | Mole number of each isotope |
table_specimen | List of elements and masses (User input) |
ttt | Irradiation time, cooling time and measurement time (User input) |
When irradiated by neutrons, the stable isotope
In which
After an irradiation time of
The count
In which
CYANUS integrated above mentioned equations for calculating
Symbol | Description | Source |
---|---|---|
The number of |
User input | |
The isomeric ratio | Calculated by TALYS 1.96 | |
The (n, γ) cross section of |
ENDF/B-VII.1 | |
The flux of irradiating neutrons with energy from |
User input | |
The decay constant of |
NUBASE2020 | |
The intensity of gamma-ray with energy of |
Lund/LBNL Nuclear Data Search | |
The irradiation time | User input | |
The cooling time | User input | |
The measurement time | User input |
The nuclear data from the databases were downloaded and organized in the folder data
As an elementary work for aiding the neutron activation analysis with complex neutron fields, CYANUS requires abundant tests to become reliable. We sincerely thank you for using and cross checking CYANUS. Any comments are welcome.
CYANUS 是一个使用MATLAB编写的小工具,用以计算中子活化后,样品发射的缓发伽马射线能量及强度。用户可自由输入样品元素组成、辐照中子能谱、照射时长、冷却时长和测量时长,程序将基于核数据,计算并输出辐照后的物体释放的所有的缓发伽马射线能量和数量信息。
- 中子能谱输入自由度更高,可逐能量点指定注量率,而不局限于传统的热中子注量率、快热中子比等若干个参数;
- 考虑了同质异能素的生成概率与中子能量的依赖关系;
- 快速部署,只需将
function
目录加入MATLAB搜索路径,即可使用,便于与其它科研代码互相调用和组合。
- 将文件夹
function
加入MATLAB自动搜索路径 - 在命令行窗口运行
cyanus()
,提示输入格式 - 计算结果保存在当前目录下的
cyanus-output.mat
文件中,其中 各变量的含义如下表
变量名 | 解释 |
---|---|
spec_neutron | 用户输入的逐能点中子能谱 |
table_active | 中子照射后各核素到达不同的同质异能素的概率 |
table_decay | 中子照射产生的各活化核的半衰期及饱和数量 |
table_element | 元素与质量表格 |
table_gamma | 受照射的元素发射的所有伽马射线各自的能量和数量 |
table_gamma_element | 受照射的元素各自发射的所有伽马射线总数量 |
table_gamma_element_max | 受照射的元素各自发射的最强伽马射线总数量 |
table_isotope | 用户输入的元素按照天然丰度换算出的核素与对应摩尔数表格 |
table_specimen | 用户输入的元素与质量表格 |
ttt | 用户输入的照射、冷却、测量时长 |
中子照射后,稳定核素
其中
在照射
放射性同位素
其中
CYANUS 将上述公式整合,计算了 5730个$ \gamma $射线的
符号 | 解释 | 来源 |
---|---|---|
核素 |
用户输入 | |
核素 |
TALYS 1.96 预先计算 | |
核素 |
ENDF/B-VII.1 | |
能量在 |
用户输入 | |
核素 |
NUBASE2020 | |
核素 |
Lund/LBNL Nuclear Data Search | |
辐照时长 | 用户输入 | |
冷却时长 | 用户输入 | |
测量时长 | 用户输入 |
表格中的核数据位于文件夹 data
中。
在攻读博士期间,面对需要判断不同核素在中子照射后释放的伽马能量和强度关系的问题,我早年是在手机软件“核素导览”上查找截面和伽马射线射线强度等信息后,手算所需的计数和计数率等信息,低效而且无法说清同质异能态产生的情况。这种计算对例如In等同质异能素的gamma射线占主导的核素基本上是不可用的。2022年,博士开题后,根据评审专家的建议,我决定整理公开数据库中有关中子活化问题的核数据,并编写一个便捷的计算软件,以辅助向更复杂问题,例如多元素活化的信本比问题等,进行深入探索。经过内部的数轮迭代,本程序定量计算伽马射线强度的功能基本实现,与Yule 1965年的反应堆实验结果实现了较好的对应。不足的是,由于遵循着“先完成再完美”的信条,当前程序编写不甚规范,不够用户友好。现在,“完成”已经基本告一段落,“完美”将陆续实现。
热忱欢迎核技术爱好者或从业者协助完善本程序。
- 将探测器响应,包括探测效率、康普顿坪、单逃双逃 纳入计算
- 整理核数据的格式,以减少读取用时
- 编写用户界面
- Python 版本