NuSiF-Solver/PoissonSolver/2D-seq/poisson.par

23 lines
713 B
Plaintext
Raw Permalink Normal View History

2023-02-05 07:34:23 +01:00
# Problem specific Data:
# ---------------------
name poisson
# Geometry Data:
# -------------
xlength 1.0 # domain size in x-direction
ylength 1.0 # domain size in y-direction
2023-11-21 05:27:11 +01:00
imax 300 # number of interior cells in x-direction
jmax 300 # number of interior cells in y-direction
2023-02-05 07:34:23 +01:00
# Pressure Iteration Data:
# -----------------------
2023-11-21 05:27:11 +01:00
itermax 1000000 # maximal number of pressure iteration in one time step
2023-02-05 07:34:23 +01:00
eps 0.000001 # stopping tolerance for pressure iteration
2023-06-18 13:55:23 +02:00
rho 0.99999 # relaxation parameter for SOR iteration
2023-11-21 05:27:11 +01:00
omg 1.2 # relaxation parameter for SOR iteration
2023-02-05 07:34:23 +01:00
#===============================================================================