mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
radiationProperties: general model organization fvOptions: taking out the use of pressureJumpDirec.... from tutorial
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object fvOptions;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
/*
|
|
airDeflection
|
|
{
|
|
type directionalPressureGradientExplicitSource;
|
|
active true;
|
|
|
|
directionalPressureGradientExplicitSourceCoeffs
|
|
{
|
|
selectionMode cellZone;
|
|
cellZone c1Zone;
|
|
|
|
fieldNames (U);
|
|
flowDir (1 2 0); // flow direction
|
|
relaxationFactor 0.3;
|
|
|
|
faceZone f1Zone;
|
|
|
|
//Pressure drop model [Pa]
|
|
model DarcyForchheimer;//volumetricFlowRateTable/constant
|
|
|
|
//DarcyForchheimer
|
|
D 5e7;
|
|
I 0;
|
|
length 0.01;
|
|
|
|
//constant
|
|
pressureDrop 8;
|
|
|
|
//volumetricFlowRateTable
|
|
outOfBounds clamp;
|
|
fileName "volFlowRateTable";
|
|
}
|
|
}
|
|
*/
|
|
// ************************************************************************* //
|