Skip to content
Snippets Groups Projects
Commit 19f96cfa authored by Franck Pérignon's avatar Franck Pérignon
Browse files

missing input file

parent 4f5dfdfd
No related branches found
No related tags found
No related merge requests found
# 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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment