forked from Exawind/amr-wind
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Communication for VOF conservation (Exawind#602)
* implementing communication of the VOF field between stages of the directionally split scheme. This is crucial for conservation across processor and periodic boundaries. * changes to output momentum and volume fraction conservation when MultiPhase is verbose. * a fix to compare VOF to tiny - avoids instability that can occur with geometric operations on very small VOF values. * removing an unnecessary fillpatch * Allow user to specify whether VOF debris should be removed. Default is on, off is intended for conservation tests. * adding unit test to check vof conservation in multiple directions, as well as accuracy in 1D flow. * fixing a conditional * fixing initialization loop for umac and eliminating an unneeded line * addressing some of the CI feedback * addressing more of the CI feedback - namely, putting the google test checks in ordinary loops instead of parallelfor. * small edits to unit test * making velocity initialization array a GpuArray * eliminating unnecessary scalar equation loop and moving initialization outside of time iteration loop. * another initialization for icheck * setting up variable nx so that lambda function doesn't reference private variable * removing lambda functions from protected class variables in unit tests.
- Loading branch information
Showing
8 changed files
with
411 additions
and
41 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
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,4 +1,5 @@ | ||
target_sources( | ||
${amr_wind_unit_test_exe_name} PRIVATE | ||
test_vof_plic.cpp | ||
test_vof_cons.cpp | ||
) |
Oops, something went wrong.