Reformat. Merge improved solvers.

This commit is contained in:
2023-11-21 05:27:11 +01:00
parent acc831e0b0
commit 2fad29b925
11 changed files with 655 additions and 176 deletions

View File

@@ -8,15 +8,15 @@ name poisson
xlength 1.0 # domain size in x-direction
ylength 1.0 # domain size in y-direction
imax 200 # number of interior cells in x-direction
jmax 200 # number of interior cells in y-direction
imax 300 # number of interior cells in x-direction
jmax 300 # number of interior cells in y-direction
# Pressure Iteration Data:
# -----------------------
itermax 10000 # maximal number of pressure iteration in one time step
itermax 1000000 # maximal number of pressure iteration in one time step
eps 0.000001 # stopping tolerance for pressure iteration
rho 0.99999 # relaxation parameter for SOR iteration
omg 1.998 # relaxation parameter for SOR iteration
omg 1.2 # relaxation parameter for SOR iteration
#===============================================================================