Skip to content

fixed neutronics

fixed neutronics #139

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
environment-file: environment.yml
activate-environment: baby-1l-run-3
- name: Run PRT detection
shell: bash -l {0}
working-directory: analysis/neutron
run: jupyter-nbconvert --to notebook prt.ipynb --execute
- name: Run neutronics
shell: bash -l {0}
working-directory: analysis/neutron
run: |
python openmc_model.py
jupyter-nbconvert --to notebook postprocessing.ipynb --execute
- name: Run foil analysis
shell: bash -l {0}
working-directory: analysis/neutron
run: |
papermill foil_analysis.ipynb temp.ipynb -p download_from_raw False
jupyter-nbconvert --to notebook --execute temp.ipynb
- name: Run tritium model
shell: bash -l {0}
working-directory: analysis/tritium
run: jupyter-nbconvert --to notebook tritium_model.ipynb --execute
- name: Run tritium model
shell: bash -l {0}
working-directory: analysis/tritium
run: jupyter-nbconvert --to notebook tritium_model_plotly.ipynb --execute