-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enable remap in RZ geometry. * Add analysis application for particle remap. * Improve numeric tolerances consistency between Tangram and Portage. * Propagate recent fixes from R3D. * Fix CI issues. * Fix for IBM XL compiler. * Fix slope limiter in multi-material cells.
- Loading branch information
Showing
64 changed files
with
189,338 additions
and
443 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
0 1.11022e-15 | ||
1 6.66134e-16 | ||
2 0.0156782 | ||
0 6.66134e-16 | ||
1 1.48952e-15 | ||
2 0.0154166 | ||
3 1.62945 | ||
4 0.124934 | ||
5 0.112769 | ||
5 0.113188 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# This file is part of the Ristra portage project. | ||
# Please see the license file at the root of this repository, or at: | ||
# https://github.com/laristra/portage/blob/master/LICENSE | ||
# | ||
|
||
if (WONTON_ENABLE_MPI) | ||
|
||
message(STATUS "Adding msmapp test") | ||
|
||
# copy run script, input parameters, and gold files | ||
file(GLOB data | ||
"run.sh" | ||
"example_input" | ||
"gold/gold_diagnostics.dat") | ||
|
||
file(COPY ${data} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) | ||
|
||
# add tests | ||
add_test(NAME "test_msmapp" COMMAND ./run.sh) | ||
|
||
set_property(TEST "test_msmapp" | ||
PROPERTY ENVIRONMENT | ||
ROOT_DIR=${CMAKE_BINARY_DIR}/app/msmapp | ||
COMPARE=${CMAKE_BINARY_DIR}/app/apptest_cmp/apptest_cmp) | ||
|
||
endif() |
File renamed without changes.
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,6 @@ | ||
-1 4.3291634482639e+00 | ||
-1 2.7228090924636e-03 | ||
-1 7.3670204276142e+00 | ||
-1 2.5319967415767e-03 | ||
-1 2.7228090924636e-03 | ||
-1 2.5319967415767e-03 |
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,14 @@ | ||
#!/bin/bash | ||
|
||
# This file is part of the Ristra portage project. | ||
# Please see the license file at the root of this repository, or at: | ||
# https://github.com/laristra/portage/blob/master/LICENSE | ||
|
||
set -e | ||
set -x | ||
|
||
epsilon=1.e-10 | ||
|
||
mpirun -np 1 ${ROOT_DIR}/msmapp "${ROOT_DIR}/test/example_input" | ||
|
||
${COMPARE} "gold_diagnostics.dat" "diagnostics.dat" ${epsilon} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# ------------------------------------------------------------------------------ | ||
# This file is part of the Ristra portage project. | ||
# Please see the license file at the root of this repository, or at: | ||
# https://github.com/laristra/portage/blob/master/LICENSE | ||
# ------------------------------------------------------------------------------ | ||
|
||
if (WONTON_ENABLE_MPI) | ||
# create binary | ||
add_executable(particle-analysis remap.cc) | ||
|
||
# link to portage and its dependencies | ||
target_link_libraries(particle-analysis PRIVATE portage) | ||
|
||
# build tests as well | ||
if (ENABLE_APP_TESTS) | ||
add_subdirectory(test) | ||
endif() | ||
endif() |
Oops, something went wrong.