-
-
Notifications
You must be signed in to change notification settings - Fork 132
Add tutorials with DuMux as solver into system tests #696
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Fujikawas
wants to merge
20
commits into
develop
Choose a base branch
from
dumuxsystemtest
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+211
−26
Draft
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
cc7bc20
add dumux installation in docker image
Fujikawas 9b6b1fe
Add dumux-adapter as a system test component
IshaanDesai acc1ba2
add dumux test suite
Fujikawas 24809b4
Merge branch 'develop' into dumuxsystemtest
Fujikawas c4b7dde
add ref versions
Fujikawas 926d606
Merge branch 'develop' into dumuxsystemtest
Fujikawas 1890d96
change stage name
Fujikawas 6b3900f
dockerfile change
Fujikawas 7b43849
Update tools/tests/dockerfiles/ubuntu_2404/Dockerfile
MakisH d53109a
Update tools/tests/dockerfiles/ubuntu_2404/Dockerfile
MakisH 5b42a62
Move TUTORIALS_REF down
MakisH 9fc07c1
Update tools/tests/reference_versions.yaml
MakisH ac29b0e
Wrap env variables with braces
MakisH 4da2a86
Add default DUNE and DuMux versions in components.yaml
MakisH 2154863
Rever unrelated changes to build_docker_images.py
MakisH f22fc57
Fix DuMuX setup in ubuntu_2404 Dockerfile
IshaanDesai 6df0656
remove clone depth
Fujikawas c4aa8d1
Merge branch 'develop' into dumuxsystemtest
IshaanDesai 4c7d21b
add micro manager in docker image
Fujikawas 64dad40
Merge branch 'develop' into dumuxsystemtest
Fujikawas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,21 @@ | ||
| name: Free flow over porous media | ||
| path: free-flow-over-porous-media | ||
| url: https://precice.org/tutorials-free-flow-over-porous-media.html | ||
|
|
||
| participants: | ||
| - Free-Flow | ||
| - Porous-Media | ||
|
|
||
| cases: | ||
| free-flow-dumux: | ||
| participant: Free-Flow | ||
| directory: ./free-flow-dumux | ||
| run: ./run.sh | ||
| component: dumux-adapter | ||
|
|
||
| porous-media-dumux: | ||
| participant: Porous-Media | ||
| directory: ./porous-media-dumux | ||
| run: ./run.sh | ||
| component: dumux-adapter | ||
|
|
This file contains hidden or 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,16 @@ | ||
| build: | ||
| context: {{ dockerfile_context }} | ||
| args: | ||
| {% for key, value in build_arguments.items() %} | ||
| - {{key}}={{value}} | ||
| {% endfor %} | ||
| target: dumux_adapter | ||
| depends_on: | ||
| prepare: | ||
| condition: service_completed_successfully | ||
| volumes: | ||
| - {{ run_directory }}:/runs | ||
| command: > | ||
| /bin/bash -c "id && | ||
| cd '/runs/{{ tutorial_folder }}/{{ case_folder }}' && | ||
| {{ run }} | tee system-tests_{{ case_folder }}.log 2>&1" |
This file contains hidden or 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,16 @@ | ||
| build: | ||
| context: {{ dockerfile_context }} | ||
| args: | ||
| {% for key, value in build_arguments.items() %} | ||
| - {{key}}={{value}} | ||
| {% endfor %} | ||
| target: micro_manager | ||
| depends_on: | ||
| prepare: | ||
| condition: service_completed_successfully | ||
| volumes: | ||
| - {{ run_directory }}:/runs | ||
| command: > | ||
| /bin/bash -c "id && | ||
| cd '/runs/{{ tutorial_folder }}/{{ case_folder }}' && | ||
| {{ run }} | tee system-tests_{{ case_folder }}.log 2>&1" |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -22,8 +22,8 @@ test_suites: | |
| tutorials: | ||
| - path: flow-over-heated-plate | ||
| case_combination: | ||
| - fluid-openfoam | ||
| - solid-fenics | ||
| - fluid-openfoam | ||
| - solid-fenics | ||
| reference_result: ./flow-over-heated-plate/reference-results/fluid-openfoam_solid-fenics.tar.gz | ||
| nutils_test: | ||
| tutorials: | ||
|
|
@@ -39,6 +39,18 @@ test_suites: | |
| - fluid-openfoam | ||
| - solid-calculix | ||
| reference_result: ./perpendicular-flap/reference-results/fluid-openfoam_solid-calculix.tar.gz | ||
| dumux_test: | ||
| tutorials: | ||
| # - path: free-flow-over-porous-media | ||
| # case_combination: | ||
| # - free-flow-dumux | ||
| # - porous-media-dumux | ||
| # reference_result: ./free-flow-over-porous-media/reference-results/free-flow-dumux_porous-media-dumux.tar.gz | ||
|
Comment on lines
+44
to
+48
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remember to update. |
||
| - path: two-scale-heat-conduction | ||
| case_combination: | ||
| - macro-dumux | ||
| - micro-dumux | ||
| reference_result: ./two-scale-heat-conduction/reference-results/macro-dumux_micro-dumux.tar.gz | ||
| su2_test: | ||
| tutorials: | ||
| - path: perpendicular-flap | ||
|
|
@@ -128,4 +140,4 @@ test_suites: | |
| - fluid-openfoam | ||
| - solid-upstream-dealii | ||
| - solid-downstream-dealii | ||
| reference_result: ./perpendicular-flap/reference-results/fluid-openfoam_solid-upstream-dealii_solid-downstream-dealii.tar.gz | ||
| reference_result: ./perpendicular-flap/reference-results/fluid-openfoam_solid-upstream-dealii_solid-downstream-dealii.tar.gz | ||
This file contains hidden or 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,20 @@ | ||
| name: Two-scale heat conduction | ||
| path: two-scale-heat-conduction | ||
| url: https://precice.org/tutorials-two-scale-heat-conduction.html | ||
|
|
||
| participants: | ||
| - macro-heat | ||
| - Micro-Manager | ||
IshaanDesai marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| cases: | ||
| macro-dumux: | ||
| participant: macro-heat | ||
| directory: ./macro-dumux | ||
| run: ./../compile-dumux-cases.sh && ./run.sh | ||
| component: dumux-adapter | ||
|
|
||
| micro-dumux: | ||
| participant: Micro-Manager | ||
| directory: ./micro-dumux | ||
| run: ./../compile-dumux-cases.sh && ./run.sh | ||
| component: dumux-adapter | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.