-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GeoMechanicsApplication] Fixed invalid values for default linear solver settings #12815
Changes from 1 commit
17f3fd5
48438fb
ea767d3
fb1fa44
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Of course we can discuss if these are the best defaults we can think of, I just took the settings of one of our tests. I first tried sparse_lu, but I don't think it's always guaranteed that the LinearSolversApplication is initialized, so not sure if that's the most robust option for a default |
||
}, | ||
"problem_domain_sub_model_part_list": [""], | ||
"processes_sub_model_part_list": [""], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The precconditioner_type is missing here. Maybe it is wise to do the lower case of AMGCL as only change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, I reverted everything that wasn't related, just did the lower case amgcl, however then we get the following problem:
So I changed that to amg