Skip to content

Commit

Permalink
[GeoMechanicsApplication] Fixed invalid values for default linear sol…
Browse files Browse the repository at this point in the history
…ver settings (#12815)

---------

Co-authored-by: Anne van de Graaf <[email protected]>
  • Loading branch information
rfaasse and avdg81 authored Nov 1, 2024
1 parent 2ae2431 commit 08033fd
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ def GetDefaultParameters(cls):
"block_builder" : true,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"solver_type": "amgcl",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"preconditioner_type": "amg",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ def GetDefaultParameters(cls):
"block_builder" : true,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"solver_type": "amgcl",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"preconditioner_type": "amg",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ def GetDefaultParameters(cls):
"prebuild_dynamics" : false,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"solver_type": "amgcl",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"preconditioner_type": "amg",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ def GetDefaultParameters(cls):
"prebuild_dynamics" : false,
"search_neighbours_step" : false,
"linear_solver_settings":{
"solver_type": "AMGCL",
"solver_type": "amgcl",
"tolerance": 1.0e-6,
"max_iteration": 100,
"scaling": false,
"verbosity": 0,
"preconditioner_type": "ILU0Preconditioner",
"preconditioner_type": "amg",
"smoother_type": "ilu0",
"krylov_type": "gmres",
"coarsening_type": "aggregation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,6 @@
"max_alpha": 2.0,
"line_search_tolerance": 0.5,
"rotation_dofs": true,
"linear_solver_settings": {
"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": ["Truss"],
"processes_sub_model_part_list": ["Fixed_Displacement","Midnode_Displacement","Point_Load"],
"body_domain_sub_model_part_list": ["Truss"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,6 @@
"max_alpha": 2.0,
"line_search_tolerance": 0.5,
"rotation_dofs": true,
"linear_solver_settings": {
"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": ["Truss"],
"processes_sub_model_part_list": ["Fixed_Displacement","Midnode_Displacement","Point_Load"],
"body_domain_sub_model_part_list": ["Truss"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,6 @@
"max_alpha": 2.0,
"line_search_tolerance": 0.5,
"rotation_dofs": true,
"linear_solver_settings": {
"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": ["Truss"],
"processes_sub_model_part_list": ["Fixed_Displacement","Midnode_Displacement","Point_Load"],
"body_domain_sub_model_part_list": ["Truss"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,6 @@
"max_alpha": 2.0,
"line_search_tolerance": 0.5,
"rotation_dofs": true,
"linear_solver_settings": {
"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": ["Truss"],
"processes_sub_model_part_list": ["Fixed_Displacement","Midnode_Displacement","Point_Load"],
"body_domain_sub_model_part_list": ["Truss"]
Expand Down

0 comments on commit 08033fd

Please sign in to comment.