-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbase.json
123 lines (117 loc) · 2.85 KB
/
base.json
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
{
"Mapping" : {
"tiles" : [1,1,1],
"tilesPerRank" : [1,1,1],
"wallTime" : 60
},
"Grid" : {
"xNum" : 200,
"yNum" : 200,
"zNum" : 4,
"GridInput" : {
"type" : "Cartesian",
"origin" : [0.0, 0.0, 0.0],
"width" : [2.0, 0.4, 0.1],
"xType" : { "type" : "Uniform" },
"yType" : {
"type" : "TanhMinus",
"Stretching" : 1.0
},
"zType" : { "type" : "Uniform" }
}
},
"Integrator" : {
"startIter" : 0,
"startTime" : 0.0,
"resetTime" : false,
"maxIter" : 40,
"maxTime" : 20.0,
"TimeStep" : {
"type" : "ConstantCFL",
"cfl" : 0.5
},
"implicitChemistry" : false,
"EulerScheme" : {
"type" : "Hybrid",
"vorticityScale" : 0.0
}
},
"BC" : {
"xBCLeft" : {
"type" : "NSCBC_Inflow",
"VelocityProfile" : {
"type" : "File",
"FileDir" : "InflowProfile"
},
"P" : 1.01325e5,
"TemperatureProfile" : {
"type" : "File",
"FileDir" : "InflowProfile"
},
"MixtureProfile" : {
"type" : "Constant",
"Mixture" : {
"Species" : [{"Name" : "Mix", "MolarFrac" : 1.0 }]
}
}
},
"xBCRight" : {
"type" : "NSCBC_Outflow",
"P" : 1.01325e5
},
"yBCLeft" : {
"type" : "IsothermalWall",
"TemperatureProfile" : {
"type" : "Constant",
"temperature" : 300.0
}
},
"yBCRight" : {
"type" : "NSCBC_Outflow",
"P" : 1.01325e5
},
"zBCLeft" : { "type" : "Periodic" },
"zBCRight" : { "type" : "Periodic" },
"bufferZone" : { "type" : "Off" }
},
"Flow" : {
"mixture": {
"type" : "ConstPropMix",
"gasConstant" : 287.15,
"gamma" : 1.4,
"prandtl" : 0.71,
"viscosityModel" : {
"type" : "PowerLaw",
"ViscRef" : 0.05,
"TempRef" : 300.0
}
},
"initCase" : {
"type" : "Restart",
"restartDir" : "InflowProfile"
},
"resetMixture" : false,
"initMixture" : {
"Species" : [{"Name" : "Mix", "MolarFrac" : 1.0 }]
},
"bodyForce" : [0.0, 0.0, 0.0],
"turbForcing" : { "type" : "OFF" },
"laser" : { "type" : "Off" }
},
"IO" : {
"wrtRestart" : true,
"restartEveryTimeSteps" : 5000,
"probesSamplingInterval" : 1,
"probes" : [],
"AveragesSamplingInterval" : 1,
"ResetAverages" : false,
"YZAverages" : [],
"XZAverages" : [],
"XYAverages" : [],
"XAverages" : [],
"YAverages" : [],
"ZAverages" : [],
"volumeProbes" : []
},
"Efield" : { "type" : "Off" }
}