Skip to content
Snippets Groups Projects
Commit 1845122f authored by Mark Olesen's avatar Mark Olesen
Browse files

STYLE: unspecified intensity/mixingLength default to zero in porousZone

parent 25d56906
Branches
Tags
No related merge requests found
......@@ -73,8 +73,8 @@ Foam::porousZone::porousZone
cellZoneID_(mesh_.cellZones().findZoneID(name)),
coordSys_(dict, mesh),
porosity_(1),
intensity_(1e-2),
mixingLength_(1e-3),
intensity_(0),
mixingLength_(0),
C0_(0),
C1_(0),
D_("D", dimensionSet(0, -2, 0, 0, 0), tensor::zero),
......
......@@ -58,8 +58,8 @@ Description
note "some catalyst";
coordinateSystem system_10;
porosity 0.809;
intensity 0.001; // optional: default 1% turbulence
mixingLength 0.0001; // optional: default 1mm mixingLength
intensity 0.001; // optional
mixingLength 0.0001; // optional
printCoeffs yes; // optional: feedback for the user
Darcy
......@@ -130,10 +130,10 @@ class porousZone
// Currently unused.
scalar porosity_;
//- Turbulent intensity as fraction of the velocity (default: 0.01)
//- Turbulent intensity as fraction of the velocity
scalar intensity_;
//- Turbulent length scale (default: 0.001)
//- Turbulent length scale
scalar mixingLength_;
//- powerLaw coefficient C0
......
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