From 19f96cfa21e35c59054b30d7236efe0696cc230c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franck=20P=C3=A9rignon?= <franck.perignon@imag.fr> Date: Thu, 4 Jul 2013 17:58:31 +0000 Subject: [PATCH] missing input file --- Examples/dataTG.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Examples/dataTG.py diff --git a/Examples/dataTG.py b/Examples/dataTG.py new file mode 100644 index 000000000..df9b0c6fb --- /dev/null +++ b/Examples/dataTG.py @@ -0,0 +1,24 @@ + + +# problem dimension +dim = 3 +# resolution +nb = 33 +# pi constant +import math +pi = math.pi +# Advection method +ADVECTION_METHOD = 'scales_p_M6' +# +VISCOSITY = 1. / 1600 +# Vorticity projection? +WITH_PROJ = True + +# post treatment ... +OUTPUT_FREQ = 1 +FILENAME = './res/energy.dat' + +# simulation parameters +from parmepy.problem.simulation import Simulation +simu = Simulation(tinit=0.0, tend=10., timeStep=0.01, + iterMax=1000000) -- GitLab