NuSiF-Solver/BasicSolver/3D-seq/karman.par

83 lines
2.4 KiB
Plaintext
Raw Normal View History

2023-10-12 17:46:33 +02:00
#==============================================================================
# Laminar Canal Flow
#==============================================================================
# Problem specific Data:
# ---------------------
name karman # name of flow setup
2023-10-24 10:03:24 +02:00
bcLeft 3 # flags for boundary conditions
bcRight 3 # 1 = no-slip 3 = outflow
bcBottom 1 # 2 = free-slip 4 = periodic
bcTop 1 #
bcFront 1 #
bcBack 1 #
2023-10-12 17:46:33 +02:00
2023-10-24 10:03:24 +02:00
gx 0.0 # Body forces (e.g. gravity)
gy 0.0 #
gz 0.0 #
2023-10-12 17:46:33 +02:00
re 5050.0 # Reynolds number
2023-10-12 17:46:33 +02:00
u_init 1.0 # initial value for velocity in x-direction
2023-10-24 10:03:24 +02:00
v_init 0.0 # initial value for velocity in y-direction
w_init 0.0 # initial value for velocity in z-direction
p_init 0.0 # initial value for pressure
2023-10-12 17:46:33 +02:00
# Geometry Data:
# -------------
2023-10-24 10:03:24 +02:00
xlength 30.0 # domain size in x-direction
ylength 8.0 # domain size in y-direction
zlength 8.0 # domain size in z-direction
imax 200 # number of interior cells in x-direction
jmax 80 # number of interior cells in y-direction
kmax 80 # number of interior cells in z-direction
2023-10-12 17:46:33 +02:00
# Time Data:
# ---------
te 250.0 # final time
2023-10-24 10:03:24 +02:00
dt 0.02 # time stepsize
tau 0.5 # safety factor for time stepsize control (<0 constant delt)
2023-10-12 17:46:33 +02:00
# Pressure Iteration Data:
# -----------------------
itermax 200 # maximal number of pressure iteration in one time step
eps 0.001 # stopping tolerance for pressure iteration
rho 0.52
omg 1.75 # relaxation parameter for SOR iteration
2023-10-24 10:03:24 +02:00
gamma 0.9 # upwind differencing factor gamma
2023-10-12 17:46:33 +02:00
# Particle Tracing Data:
# -----------------------
numberOfParticles 4000
startTime 50
injectTimePeriod 1.0
writeTimePeriod 5.0
2023-10-12 17:46:33 +02:00
x1 0.0
y1 3.6
z1 3.6
x2 0.0
y2 4.7
z2 4.7
2023-10-12 17:46:33 +02:00
# Obstacle Geometry Data:
# -----------------------
# Shape 0 disable, 1 Rectangle/Square, 2 Circle
shape 2
xCenter 5.0
yCenter 4.0
2023-10-24 10:03:24 +02:00
zCenter 4.0
2023-10-12 17:46:33 +02:00
xRectLength 8.0
yRectLength 2.0
zRectLength 2.0
circleRadius 2.0
2023-10-12 17:46:33 +02:00
#===============================================================================