{ "cells": [ { "cell_type": "markdown", "id": "43616d1b", "metadata": {}, "source": [ "# NNDC DATA\n", "\n", "The NNDC archives provide an exhaustive decay radiation dataset for all the known nuclides. The ENSDF data at NNDC is stored in CSV format in the repository [carsus-data-nndc](https://github.com/tardis-sn/carsus-data-nndc). \n", "\n", "The `NNDCReader` instance looks for the carsus-data-nndc repository in the local system at the path specified by the argument `dirname`. If the data is to be downloaded from the Github repository directly, the `remote` argument should be set to `True`. " ] }, { "cell_type": "code", "execution_count": null, "id": "090e5dcf", "metadata": {}, "outputs": [], "source": [ "from carsus.io.nuclear import NNDCReader" ] }, { "cell_type": "code", "execution_count": null, "id": "9fae6434", "metadata": {}, "outputs": [], "source": [ "nndc_reader = NNDCReader(remote=True)" ] }, { "cell_type": "code", "execution_count": null, "id": "0ec31f11", "metadata": {}, "outputs": [], "source": [ "nndc_reader.decay_data" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.13" } }, "nbformat": 4, "nbformat_minor": 5 }