1 0 GfsSimulation GfsBox GfsGEdge {} {
Time { end = 0.5 }
Global {
}
Refine level
ProjectionParams { tolerance = 1e-6 }
ApproxProjectionParams { tolerance = 1e-6 }
VariableTracerVOFHeight T
VariableFiltered T1 T 1
InitFraction T (- ellipse(-0.3,0,radius,radius))
Init {} { U = T }
PhysicalParams { alpha = 1./rho(T1) }
SourceViscosity mu(T1)
AdaptVorticity { istep = 1 } { cmax = 0.3 maxlevel = level }
AdaptGradient { istep = 1 } { cmax = 1e-3 maxlevel = level } T
OutputScalarSum { istep = 1 } k { v = Velocity2*rho(T1) }
OutputScalarSum { istep = 1 } t { v = T }
EventScript { start = end } {
gnuplot <<EOF
set term postscript eps color lw 3 solid 20
set output 'k.eps'
set xlabel 'Time'
set ylabel 'Kinetic energy'
set grid
plot 'k' u 3:5 w l t ''
EOF
if awk '{if ($5 > 7.2e-3) exit (1);}' < k ; then
return 0;
else
return $GFS_STOP;
fi
}
}
GfsBox {}