mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: basic, IO, preProcessing, VV: clean up tutorials
- TUT: mesh: add missing SnakeRiverCanyon files - TUT: mesh: add missing cp source in a foamyHexMesh tutorial
This commit is contained in:
@ -0,0 +1 @@
|
||||
../../common/0.orig/T
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/U
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/alphat
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/epsilon
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/k
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/leafAreaDensity
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/nut
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/omega
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/p_rgh
|
||||
@ -0,0 +1 @@
|
||||
../../common/0.orig/plantCd
|
||||
@ -0,0 +1,36 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2012 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
object qPlant;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 2 -3 0 0 0 0];
|
||||
|
||||
internalField uniform -9;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
"(bottom|top)"
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 0;
|
||||
}
|
||||
|
||||
"(inlet|outlet|left|right)"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,108 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2012 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object fvOptions;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
pressureGradient
|
||||
{
|
||||
type vectorSemiImplicitSource;
|
||||
volumeMode specific;
|
||||
selectionMode all;
|
||||
injectionRateSuSp
|
||||
{
|
||||
U ((0 1.978046e-03 0) 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmCoriolisUSource1
|
||||
{
|
||||
type atmCoriolisUSource;
|
||||
atmCoriolisUSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
Omega (0 0 5.65156e-05);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmAmbientTurbSource1
|
||||
{
|
||||
type atmAmbientTurbSource;
|
||||
atmAmbientTurbSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
kAmb 1.0e-04;
|
||||
epsilonAmb 7.208e-08;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmBuoyancyTurbSource1
|
||||
{
|
||||
type atmBuoyancyTurbSource;
|
||||
atmBuoyancyTurbSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
rho rho;
|
||||
Lmax 13.0;
|
||||
beta 3.3e-03;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmLengthScaleTurbSource1
|
||||
{
|
||||
type atmLengthScaleTurbSource;
|
||||
atmLengthScaleTurbSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
Lmax 13.0;
|
||||
n 3.0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmPlantCanopyUSource1
|
||||
{
|
||||
type atmPlantCanopyUSource;
|
||||
atmPlantCanopyUSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmPlantCanopyTSource1
|
||||
{
|
||||
type atmPlantCanopyTSource;
|
||||
atmPlantCanopyTSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
atmPlantCanopyTurbSource1
|
||||
{
|
||||
type atmPlantCanopyTurbSource;
|
||||
atmPlantCanopyTurbSourceCoeffs
|
||||
{
|
||||
selectionMode all;
|
||||
rho rho;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1 @@
|
||||
../../common/constant/g
|
||||
@ -0,0 +1 @@
|
||||
../../common/constant/transportProperties
|
||||
@ -0,0 +1 @@
|
||||
../../common/constant/turbulenceProperties
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/blockMeshDict
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/controlDict
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/decomposeParDict
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/fvSchemes
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/fvSolution
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/samples
|
||||
@ -0,0 +1,57 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2012 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object setFieldsDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
defaultFieldValues
|
||||
(
|
||||
volScalarFieldValue qPlant 0
|
||||
volScalarFieldValue plantCd 0
|
||||
volScalarFieldValue leafAreaDensity 0
|
||||
);
|
||||
|
||||
regions
|
||||
(
|
||||
boxToCell
|
||||
{
|
||||
box (0 0 8.60799) (200 200 18.2192);
|
||||
fieldValues
|
||||
(
|
||||
volScalarFieldValue qPlant -9
|
||||
);
|
||||
}
|
||||
|
||||
boxToCell
|
||||
{
|
||||
box (0 0 0) (200 200 18.2192);
|
||||
fieldValues
|
||||
(
|
||||
volScalarFieldValue plantCd 0.2
|
||||
volScalarFieldValue leafAreaDensity 0.14
|
||||
);
|
||||
}
|
||||
|
||||
patchToFace
|
||||
{
|
||||
patch bottom;
|
||||
fieldValues
|
||||
(
|
||||
volScalarFieldValue plantCd 0.2
|
||||
volScalarFieldValue leafAreaDensity 0.14
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1 @@
|
||||
../../common/system/turbulenceFields
|
||||
Reference in New Issue
Block a user