Skip to content
Snippets Groups Projects
Commit 779b8f2d authored by Henry's avatar Henry
Browse files

twoPhaseEulerFoam: make residualSlip optional

parent 88200402
Branches
Tags
No related merge requests found
......@@ -198,9 +198,13 @@
dimensionedScalar residualSlip
(
"residualSlip",
dimVelocity,
interfacialProperties.lookup("residualSlip")
dimensionedScalar::lookupOrDefault
(
"residualSlip",
interfacialProperties,
0,
dimVelocity
)
);
Info << "dragPhase is " << dragPhase << endl;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment