Skip to content

Commit

Permalink
Used valid values for default linear solver settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaasse committed Nov 1, 2024
1 parent 2ae2431 commit 17f3fd5
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,14 @@ def GetDefaultParameters(cls):
"block_builder" : true,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
"solver_type": "amgcl",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation",
"max_iteration": 100,
"verbosity": 0,
"tolerance": 1.0e-6,
"scaling": false
},
"problem_domain_sub_model_part_list": [""],
"processes_sub_model_part_list": [""],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,14 @@ def GetDefaultParameters(cls):
"block_builder" : true,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
"solver_type": "amgcl",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation",
"max_iteration": 100,
"verbosity": 0,
"tolerance": 1.0e-6,
"scaling": false
},
"problem_domain_sub_model_part_list": [""],
"processes_sub_model_part_list": [""],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,14 @@ def GetDefaultParameters(cls):
"prebuild_dynamics" : false,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
"solver_type": "amgcl",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation",
"max_iteration": 100,
"verbosity": 0,
"tolerance": 1.0e-6,
"scaling": false
},
"problem_domain_sub_model_part_list": [""],
"processes_sub_model_part_list": [""],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,14 @@ def GetDefaultParameters(cls):
"prebuild_dynamics" : false,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
"solver_type": "amgcl",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation",
"max_iteration": 100,
"verbosity": 0,
"tolerance": 1.0e-6,
"scaling": false
},
"problem_domain_sub_model_part_list": [""],
"processes_sub_model_part_list": [""],
Expand Down

0 comments on commit 17f3fd5

Please sign in to comment.