Newer
Older
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0/filmRegion";
object Tf;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 298;
boundaryField
{
region0_to_filmRegion_coupledWall // Patch to pyrolysis
{
type mappedField;
sampleRegion pyrolysisRegion;
sampleMode nearestPatchFace;
samplePatch region0_to_pyrolysisRegion_coupledWall;
offset (0 0 0);
fieldName T;
setAverage no;
average 0;
value uniform 298;
}
coupledWall_top // Patch to Region0
{
type zeroGradient;
}
"side.*"
{
type inletOutlet;
inletValue uniform 298;
value uniform 298;
}
outlet
{
type zeroGradient;
}
inlet
{
type fixedValue;
value uniform 298.0;
}
}
// ************************************************************************* //