[FEM] Elmer: sort solver methods for better overview

This commit is contained in:
Uwe
2022-08-14 03:18:35 +02:00
parent f0590d1b2f
commit 08f02885a4

View File

@@ -39,24 +39,24 @@ from . import equation
LINEAR_SOLVER = ["Direct", "Iterative"]
LINEAR_DIRECT = ["Banded", "MUMPS", "Umfpack"]
LINEAR_ITERATIVE = [
"CG",
"CGS",
"BiCGStab",
"BiCGStabl",
"TFQMR",
"GMRES",
"CG",
"GCR",
"Idrs"
"CGS",
"GMRES",
"Idrs",
"TFQMR"
]
LINEAR_PRECONDITIONING = [
"None",
"Diagonal",
"ILUT",
"ILU0",
"ILU1",
"ILU2",
"ILU3",
"ILU4"
"ILU4",
"ILUT"
]