diff --git a/Examples/dataTG.py b/Examples/dataTG.py
new file mode 100644
index 0000000000000000000000000000000000000000..df9b0c6fb8864a42ad1431561b2502f742027ec0
--- /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)