Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
f73e5be2
Commit
f73e5be2
authored
Aug 10, 2017
by
mattijs
Browse files
ENH: overset: adjust fringe for interFoam
parent
6a62c6bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
applications/solvers/multiphase/interFoam/overInterDyMFoam/createDyMControls.H
View file @
f73e5be2
...
...
@@ -19,6 +19,11 @@ bool massFluxInterpolation
pimple
.
dict
().
lookupOrDefault
(
"massFluxInterpolation"
,
false
)
);
bool
adjustFringe
(
pimple
.
dict
().
lookupOrDefault
(
"oversetAdjustPhi"
,
false
)
);
bool
ddtCorr
(
pimple
.
dict
().
lookupOrDefault
(
"ddtCorr"
,
true
)
...
...
applications/solvers/multiphase/interFoam/overInterDyMFoam/interDyMFoam.C
View file @
f73e5be2
...
...
@@ -53,6 +53,7 @@ Description
#include
"interpolationCellPoint.H"
#include
"transform.H"
#include
"fvMeshSubset.H"
#include
"oversetAdjustPhi.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
applications/solvers/multiphase/interFoam/overInterDyMFoam/pEqn.H
View file @
f73e5be2
...
...
@@ -28,6 +28,14 @@
fvc
::
makeAbsolute
(
phiHbyA
,
U
);
}
if
(
adjustFringe
)
{
fvc
::
makeRelative
(
phiHbyA
,
U
);
oversetAdjustPhi
(
phiHbyA
,
U
);
fvc
::
makeAbsolute
(
phiHbyA
,
U
);
}
surfaceScalarField
phig
(
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment