61 lines
1.7 KiB
Plaintext
61 lines
1.7 KiB
Plaintext
#==============================================================================
|
|
# Driven Cavity
|
|
#==============================================================================
|
|
|
|
# Problem specific Data:
|
|
# ---------------------
|
|
|
|
name dcavity # name of flow setup
|
|
|
|
bcTop 1 # flags for boundary conditions
|
|
bcBottom 1 # 1 = no-slip 3 = outflow
|
|
bcLeft 1 # 2 = free-slip 4 = periodic
|
|
bcRight 1 #
|
|
|
|
gx 0.0 # Body forces (e.g. gravity)
|
|
gy 0.0 #
|
|
|
|
re 10.0 # Reynolds number
|
|
|
|
u_init 0.0 # initial value for velocity in x-direction
|
|
v_init 0.0 # initial value for velocity in y-direction
|
|
p_init 0.0 # initial value for pressure
|
|
|
|
# Geometry Data:
|
|
# -------------
|
|
|
|
xlength 1.0 # domain size in x-direction
|
|
ylength 1.0 # domain size in y-direction
|
|
imax 40 # number of interior cells in x-direction
|
|
jmax 40 # number of interior cells in y-direction
|
|
|
|
# Time Data:
|
|
# ---------
|
|
|
|
te 100.0 # final time
|
|
dt 0.02 # time stepsize
|
|
tau 0.5 # safety factor for time stepsize control (<0 constant delt)
|
|
|
|
# Pressure Iteration Data:
|
|
# -----------------------
|
|
|
|
itermax 1000 # maximal number of pressure iteration in one time step
|
|
eps 0.001 # stopping tolerance for pressure iteration
|
|
rho 0.5
|
|
omg 1.7 # relaxation parameter for SOR iteration
|
|
gamma 0.9 # upwind differencing factor gamma
|
|
|
|
# Particle Tracing Data:
|
|
# -----------------------
|
|
|
|
numberOfParticles 30
|
|
startTime 0
|
|
injectTimePeriod 2.0
|
|
writeTimePeriod 0.5
|
|
|
|
x1 0.1
|
|
y1 0.9
|
|
x2 0.9
|
|
y2 0.9
|
|
#===============================================================================
|