mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
atmBoundaryLayer: rationalized U and epsilon BCs and added the corresponding k BC
This commit is contained in:
@ -23,8 +23,6 @@ internalField uniform $flowVelocity;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
#include "include/ABLConditions"
|
||||
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
@ -35,13 +33,7 @@ boundaryField
|
||||
inlet
|
||||
{
|
||||
type atmBoundaryLayerInletVelocity;
|
||||
Uref $Uref;
|
||||
Zref $Zref;
|
||||
n $windDirection;
|
||||
z $zDirection;
|
||||
z0 $z0;
|
||||
value $internalField;
|
||||
zGround $zGround;
|
||||
#include "include/ABLConditions"
|
||||
}
|
||||
|
||||
terrain
|
||||
|
||||
@ -23,8 +23,6 @@ internalField uniform $turbulentEpsilon;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
#include "include/ABLConditions"
|
||||
|
||||
terrain
|
||||
{
|
||||
type epsilonWallFunction;
|
||||
@ -44,12 +42,7 @@ boundaryField
|
||||
inlet
|
||||
{
|
||||
type atmBoundaryLayerInletEpsilon;
|
||||
Uref $Uref;
|
||||
Zref $Zref;
|
||||
z $zDirection;
|
||||
z0 $z0;
|
||||
value $internalField;
|
||||
zGround $zGround;
|
||||
#include "include/ABLConditions"
|
||||
}
|
||||
|
||||
ground
|
||||
|
||||
@ -8,9 +8,10 @@
|
||||
|
||||
Uref 10.0;
|
||||
Zref 20;
|
||||
zDir (0 0 1);
|
||||
flowDir (1 0 0);
|
||||
z0 uniform 0.1;
|
||||
turbulentKE 1.3;
|
||||
windDirection (1 0 0);
|
||||
zDirection (0 0 1);
|
||||
zGround uniform 935.0;
|
||||
value $internalField;
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -22,8 +22,6 @@ internalField uniform $turbulentKE;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
#include "include/ABLConditions"
|
||||
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
@ -33,8 +31,8 @@ boundaryField
|
||||
|
||||
inlet
|
||||
{
|
||||
type uniformFixedValue;
|
||||
uniformValue constant $turbulentKE;
|
||||
type atmBoundaryLayerInletK;
|
||||
#include "include/ABLConditions"
|
||||
}
|
||||
|
||||
terrain
|
||||
|
||||
Reference in New Issue
Block a user