Added multiple olaflow cases (short run, calibration of porosity parameters)

This commit is contained in:
Edgar P. Burkhart 2022-05-03 12:15:58 +02:00
parent c7e9efe9ac
commit 2b07e47d01
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
197 changed files with 29749 additions and 5 deletions

View file

@ -0,0 +1,63 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.3 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object setFieldsDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
defaultFieldValues
(
volScalarFieldValue alpha.water 0
volVectorFieldValue U (0 0 0)
volScalarFieldValue porosityIndex 0
);
regions
(
boxToCell
{
box (-200 -100 -100) (100 100 4.5);
fieldValues
(
volScalarFieldValue alpha.water 1
);
}
boxToCell
{
box (-110 -100 0) (-100 100 1);
fieldValues
(
volVectorFieldValue U (1 0 0)
);
}
surfaceToCell
{
file "./constant/triSurface/poro.stl";
outsidePoints ((-100 0 0)); // definition of outside
includeCut true; // cells cut by surface
includeInside true; // cells not on outside of surf
includeOutside false; // cells on outside of surf
nearDistance -1; // cells with centre near surf
// (set to -1 if not used)
curvature -100; // cells within nearDistance
// and near surf curvature
// (set to -100 if not used)
fieldValues
(
volScalarFieldValue porosityIndex 1
);
}
);