NuSiF-Solver/BasicSolver/2D-seq/canal.par

73 lines
2.0 KiB
Plaintext
Raw Normal View History

2023-02-05 07:34:23 +01:00
#==============================================================================
# Laminar Canal Flow
#==============================================================================
# Problem specific Data:
# ---------------------
name canal # name of flow setup
bcTop 1 # flags for boundary conditions
bcBottom 1 # 1 = no-slip 3 = outflow
bcLeft 3 # 2 = free-slip 4 = periodic
bcRight 3 #
gx 0.0 # Body forces (e.g. gravity)
gy 0.0 #
2023-09-19 14:17:20 +02:00
re 500.0 # Reynolds number
2023-02-05 07:34:23 +01:00
u_init 1.0 # initial value for velocity in x-direction
v_init 0.0 # initial value for velocity in y-direction
2023-09-19 14:17:20 +02:00
p_init 1.0 # initial value for pressure
2023-02-05 07:34:23 +01:00
# Geometry Data:
# -------------
xlength 30.0 # domain size in x-direction
ylength 4.0 # domain size in y-direction
imax 200 # number of interior cells in x-direction
jmax 50 # number of interior cells in y-direction
# Time Data:
# ---------
2023-09-19 14:17:20 +02:00
te 700.0 # final time
2023-02-05 07:34:23 +01:00
dt 0.02 # time stepsize
tau 0.5 # safety factor for time stepsize control (<0 constant delt)
# Pressure Iteration Data:
# -----------------------
itermax 500 # maximal number of pressure iteration in one time step
2023-09-19 12:10:00 +02:00
eps 0.0001 # stopping tolerance for pressure iteration
rho 0.52
2023-02-05 07:34:23 +01:00
omg 1.8 # relaxation parameter for SOR iteration
gamma 0.9 # upwind differencing factor gamma
2023-08-05 19:35:16 +02:00
# Particle Tracing Data:
# -----------------------
2023-09-12 14:10:47 +02:00
numberOfParticles 60
2023-09-19 14:17:20 +02:00
startTime 0
2023-08-05 19:35:16 +02:00
injectTimePeriod 2.0
2023-09-19 14:17:20 +02:00
writeTimePeriod 0.5
2023-08-05 19:35:16 +02:00
2023-08-06 21:22:54 +02:00
x1 1.0
2023-08-05 19:35:16 +02:00
y1 0.0
2023-08-06 21:22:54 +02:00
x2 1.0
2023-08-05 19:35:16 +02:00
y2 4.0
2023-09-12 14:10:47 +02:00
# Obstacle Geometry Data:
# -----------------------
# Shape 0 disable, 1 Rectangle/Square, 2 Circle
shape 1
2023-09-19 14:17:20 +02:00
xCenter 4.0
yCenter 1
xRectLength 8.0
yRectLength 2.0
2023-09-12 14:10:47 +02:00
circleRadius 1.0
2023-02-05 07:34:23 +01:00
#===============================================================================