1 2 3 4 5 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1812 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application fireFoam;
startFrom latestTime;
startTime 0;
stopAt endTime;
endTime 150;
deltaT 0.001;
writeControl adjustableRunTime;
writeInterval 20;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression off;
timeFormat general;
timePrecision 6;
graphFormat raw;
runTimeModifiable no;
adjustTimeStep yes;
maxCo 2;
maxDi 0.25;
maxDeltaT 0.01;
functions
{
patchInlet_phi
{
type surfaceFieldValue;
libs ("libfieldFunctionObjects.so");
writeControl timeStep;
writeInterval 200;
log true;
writeFields no;
regionType patch;
name inlet;
operation sum;
fields (phi);
}
wallPanel_qin
{
type patchProbes;
libs ("libsampling.so");
writeControl timeStep;
writeInterval 200;
log true;
patch region0_to_panelRegion_wallPanel;
probeLocations
(
(0.15 0.0 0.01) // HF2
(0.2 0.2 0.01) // HF3
(0.0 0.4 0.01) // HF4
);
fields (qin);
}
inletqr_qin
{
type patchProbes;
libs ("libsampling.so");
writeControl timeStep;
writeInterval 200;
log true;
patch inlet;
probeLocations
(
( 0.0 0.0 0.0 ) // HF1
( 0.02 0.0 0.02) // HF2
( 0.02 0.0 -0.02) // HF3
(-0.02 0.0 0.02) // HF4
(-0.02 0.0 -0.02) // HF5
);
fields (qr qin);
}
thermoCouple
{
type thermoCoupleProbes;
libs ("libutilityFunctionObjects.so");
writeControl timeStep;
writeInterval 100;
solver Euler;
absTol 1e-4;
relTol 1e-1;
interpolationScheme cell;
// Thermocouple properties
rho 8908;
Cp 440;
d 1e-3;
epsilon 0.9;
radiationField G;
probeLocations
(
(-0.18 0.02 0.0) // 0.02m [TC11]
(-0.18 0.1 0.0) // 0.1m [TC9]
(-0.18 0.3 0.0) // 0.3m [TC?]
(-0.18 0.38 0.0) // 0.39m [TC2]
(0 0.38 0.0) // 0.38m [TC17]
(0 0.26 0.0) // 0.26m [TC18]
(0.01 0.14 0.0) // 0.14m [TC19]
(-0.2 0.015 0.0) // 0.015m [TC12]
(-0.2 0.0385 0.0) // 0.0385m [TC1]
(0.18 0.02 0.0) // 0.02m [TC16]
(0.18 0.14 0.0) // 0.14m [TC15]
(0.18 0.26 0.0) // 0.26m [TC14]
(0.18 0.38 0.0) // 0.38m [TC13]
);
fields (T);
}
probes_O2
{
type probes;
libs ("libsampling.so");
writeControl timeStep;
writeInterval 200;
probeLocations
(
(-0.1 0.02 0.0) // Lower Gas
(-0.1 0.38 0.0) // Upper Gas
);
fields (O2);
}
}
// ************************************************************************* //
|