Salome HOME
Relaxed parameters in linear solver
authormichael <michael@localhost.localdomain>
Sat, 28 Nov 2020 23:03:59 +0000 (00:03 +0100)
committermichael <michael@localhost.localdomain>
Sat, 28 Nov 2020 23:03:59 +0000 (00:03 +0100)
CDMATH/tests/validation/scripts/AnisotropicDiffusion2DEF/FiniteElements2DDiffusion_SQUARE.py [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 3d67706..4a36f62
@@ -154,7 +154,7 @@ def solve(filename,resolution,meshType, testColor):
     
     # Résolution du système linéaire
     #=================================
-    LS=cdmath.LinearSolver(Rigidite,RHS,100,1.E-6,"CG","ILU")#Remplacer CG par CHOLESKY pour solveur direct
+    LS=cdmath.LinearSolver(Rigidite,RHS,200,1.E-5,"CG","ILU")#Remplacer CG par CHOLESKY pour solveur direct
     LS.setComputeConditionNumber()
     SolSyst=LS.solve()