1 1 GfsSimulation GfsBox GfsGEdge {} {
Metric M {
x = (rx/4. + 0.375)*cos(ry)
y = (rx/4. + 0.375)*sin(ry)
}
VariableTracer T { scheme = none }
SourceDiffusion T 1
Time { dtmax = 1e-2 }
Refine LEVEL
ApproxProjectionParams { tolerance = 1e-6 }
AdvectionParams { scheme = none }
SourceViscosity 1
EventStop { step = 1e-2 } V 1e-5 DV
OutputScalarNorm { istep = 1 } dv { v = DV }
OutputErrorNorm { start = end } { awk '{print LEVEL,$5,$7,$9}' } { v = V } {
s = {
double r = rx/4. + 0.375;
return r*((0.5/r)*(0.5/r) - 1.)/((0.5/0.25)*(0.5/0.25) - 1.);
}
v = E
}
OutputSimulation { start = end } end-LEVEL.gfs
Init { start = end } { Rx = rx }
OutputSimulation { start = end } end-LEVEL.txt { format = text }
}
GfsBox {
left = Boundary {
BcDirichlet V 0.25
BcDirichlet T 0.25
}
right = Boundary {
BcDirichlet V 0.
BcDirichlet T 0
}
}
1 1 top