-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from ebknudsen/more_c2omc_models
More c2omc models
- Loading branch information
Showing
21 changed files
with
817 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: circular torus - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_openmc/test_csg_cad_circulartorus.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: cuboid - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_openmc/test_csg_cad_cuboid.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: cylinder - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_dagmc/test_csg_cad_cylinder.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: elliptical torus - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_openmc/test_csg_cad_ellipticaltorus.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: nested cylinder - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_openmc/test_csg_cad_nestedcylinder.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: nested sphere - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_openmc/test_csg_cad_nestedsphere.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: sphere - cad to openmc | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
push: | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout actions | ||
uses: actions/checkout@v4 | ||
|
||
- name: use upstream test composite action | ||
uses: ./.github/actions/dependencies | ||
|
||
- shell: bash | ||
env: | ||
OPENMC_CROSS_SECTIONS: /home/runner/work/model_benchmark_zoo/model_benchmark_zoo/cross_sections.xml | ||
run: | | ||
source "${HOME}/conda/etc/profile.d/conda.sh" | ||
source "${HOME}/conda/etc/profile.d/mamba.sh" | ||
mamba activate | ||
pytest tests/test_cad_to_openmc/test_csg_cad_sphere.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.