-
-
Notifications
You must be signed in to change notification settings - Fork 115
Add support for implicit coupling of Lagrangian particles #405
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
mike-tree-corvid
wants to merge
25
commits into
precice:develop
Choose a base branch
from
mike-tree-corvid:v1.3.1-lagrangian-particle-implicit
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.
+582
−1
Draft
Changes from 23 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
b01ad23
add checkpointing for basicThermoCloud Lagrangian Particles
63217b4
add custom implicitPatchInjection library
599c908
add newline character at end of Utilities.C to eliminate wmkdepend pa…
daccf65
add implicitPatchInjection/Make platform directories to .gitignore
9c30fbd
add copyright statements for Corvid Technologies, but do not change
4f3fc17
style: apply clang-format to pass CI
aeb3e46
remove contents of implicitPatchInjection/Make/linux64GccDPInt32Opt
fe1ff5d
update implicitPatchInjection to be able to cache and restore from
c5037fd
add implicitConeNozzleInjection to support implicit coupling of the C…
ebbde82
include support for additional cloud types for implicitPatchInjection…
c777742
include support for additional cloud types for implicitConeNozzleInje…
fdea0d0
update Adapter.C and Adapter.H to support basicKinematicCloud, basicT…
61f02d1
add support for basicReactingCloud types
07755e8
add support for basicReactingMultiphaseClouds
0b802fb
update formatting to support clang; my continued forgetfullness to ru…
011a829
refactor implicitConeNozzleInjection and implicitPatchInjection to us…
c1c1447
remove wmake commands for individual implicitPatchInjection and impli…
fff057f
added DEBUG(AdapterInfo) statement noting that clouds are being added…
79eb07b
updated .gitignore to make more general
72e0b6b
worded doc string differently; added link to native OpenFOAM source c…
953cbd7
reformatted implicitInjectionWrapper/implicitInjectionWrapper.H to ha…
9550a91
added README.md for implicitInjectionWrapper
d6fcdc2
modularize the Lagrangian particle support, both within the Adapter.C…
ac34673
Apply suggestion from @MakisH
MakisH 3b150ad
Fix pre-commit
MakisH 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
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
|
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. Unrelated change |
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
|
MakisH marked this conversation as resolved.
|
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,7 @@ | ||
| makeImplicitInjectorsKinematic.C | ||
| makeImplicitInjectorsKinematicColliding.C | ||
| makeImplicitInjectorsThermo.C | ||
| makeImplicitInjectorsReacting.C | ||
| makeImplicitInjectorsReactingMultiphase.C | ||
|
|
||
| LIB = $(FOAM_USER_LIBBIN)/libimplicitInjectors |
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,36 @@ | ||
| EXE_INC = \ | ||
| -I$(LIB_SRC)/finiteVolume/lnInclude \ | ||
| -I$(LIB_SRC)/lagrangian/basic/lnInclude \ | ||
| -I$(LIB_SRC)/lagrangian/intermediate/lnInclude \ | ||
| -I$(LIB_SRC)/lagrangian/distributionModels/lnInclude \ | ||
| -I$(LIB_SRC)/meshTools/lnInclude \ | ||
| -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ | ||
| -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \ | ||
| -I$(LIB_SRC)/thermophysicalModels/thermophysicalProperties/lnInclude \ | ||
| -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \ | ||
| -I$(LIB_SRC)/thermophysicalModels/SLGThermo/lnInclude \ | ||
| -I$(LIB_SRC)/regionModels/regionModel/lnInclude \ | ||
| -I$(LIB_SRC)/regionModels/surfaceFilmModels/lnInclude \ | ||
| -I$(LIB_SRC)/regionFaModels/lnInclude \ | ||
| -I$(LIB_SRC)/finiteArea/lnInclude \ | ||
| -I$(LIB_SRC)/faOptions/lnInclude \ | ||
| -I$(LIB_SRC)/transportModels/incompressible/lnInclude \ | ||
| -I$(LIB_SRC)/transportModels/compressible/lnInclude | ||
|
|
||
| LIB_LIBS = \ | ||
| -lfiniteVolume \ | ||
| -llagrangian \ | ||
| -llagrangianIntermediate \ | ||
| -ldistributionModels \ | ||
| -lmeshTools \ | ||
| -lfluidThermophysicalModels \ | ||
| -lspecie \ | ||
| -lthermophysicalProperties \ | ||
| -lSLGThermo \ | ||
| -lregionModels \ | ||
| -lsurfaceFilmModels \ | ||
| -lregionFaModels \ | ||
| -lfiniteArea \ | ||
| -lfaOptions \ | ||
| -lcompressibleTransportModels \ | ||
| -lincompressibleTransportModels |
Oops, something went wrong.
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.