OMP version comparable runtime to mpi

This commit is contained in:
2025-04-28 15:38:36 +02:00
parent c75266e9d3
commit 92e9ed764f
21 changed files with 2752 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Problem specific Data:
# ---------------------
name poisson
# Geometry Data:
# -------------
xlength 1.0 # domain size in x-direction
ylength 1.0 # domain size in y-direction
imax 6000 # number of interior cells in x-direction
jmax 6000 # number of interior cells in y-direction
# Pressure Iteration Data:
# -----------------------
itermax 100000 # 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.2 # relaxation parameter for SOR iteration
#===============================================================================