Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
711 changes: 711 additions & 0 deletions docs/source/examples/input/jupyters/FLUXESS

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/source/examples/input/jupyters/ace.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -53,7 +53,7 @@
}
],
"source": [
"from f4enix.egroups import GROUP_STRUCTURES\n",
"from f4enix.core.egroups import GROUP_STRUCTURES\n",
"\n",
"print(f'Avaialble groups: {GROUP_STRUCTURES.keys()}')\n",
"print('\\nCASMO-8 energies in eV:')\n",
Expand Down
8 changes: 4 additions & 4 deletions docs/source/examples/input/jupyters/d1suned.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -56,7 +56,7 @@
],
"source": [
"from f4enix.input.d1suned import Reaction, ReactionFile\n",
"from f4enix.input.irradiation import Nuclide\n",
"from f4enix.core.irradiation import Nuclide\n",
"\n",
"# Generate a single reaction\n",
"reac = Reaction(Nuclide(1001, lib=\"91c\"), 102, Nuclide(1002, lib=\"91c\"), comment='fake reaction')\n",
Expand Down Expand Up @@ -270,7 +270,7 @@
},
{
"cell_type": "code",
"execution_count": 9,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -286,7 +286,7 @@
}
],
"source": [
"from f4enix.input.irradiation import Pulse, TIME_UNITS, IrradiationScenario, Nuclide\n",
"from f4enix.core.irradiation import Pulse, TIME_UNITS, IrradiationScenario, Nuclide\n",
"pulses = (\n",
" [Pulse(1, 1e10, TIME_UNITS.DAY), Pulse(2, 0, TIME_UNITS.DAY)]*4\n",
")\n",
Expand Down
267 changes: 247 additions & 20 deletions docs/source/examples/input/jupyters/irradiation.ipynb

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/source/examples/input/jupyters/mcnp_inp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2946,7 +2946,7 @@
"metadata": {},
"outputs": [],
"source": [
"from f4enix.constants import FAULTY_ISOTOPES\n",
"from f4enix.core.constants import FAULTY_ISOTOPES\n",
"\n",
"newinp = deepcopy(inp)\n",
"# first of all collect all the zaids that are present in the input and not in\n",
Expand Down Expand Up @@ -3033,7 +3033,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "py312",
"display_name": "dev",
"language": "python",
"name": "python3"
},
Expand All @@ -3047,7 +3047,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.9"
"version": "3.11.9"
}
},
"nbformat": 4,
Expand Down
Loading