-
Notifications
You must be signed in to change notification settings - Fork 91
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
Add a Multilevel schwarz preconditioner #1431
base: develop
Are you sure you want to change the base?
Conversation
f6c6240
to
58e6482
Compare
58e6482
to
bf971dc
Compare
bf971dc
to
60889dc
Compare
60889dc
to
bf971dc
Compare
bf971dc
to
b795413
Compare
a10beb2
to
8667fa1
Compare
24c6f7d
to
8df491e
Compare
8df491e
to
9101732
Compare
9101732
to
2c5d816
Compare
Error: The following files need to be formatted:
You can find a formatting patch under Artifacts here or run |
e988e0e
to
e2714c8
Compare
As a first step, I just added a two-level preconditioner with equal weighting for the local solution and the coarse solution. I think it maybe makes sense to try this out in some applications and then think about arbitrary number of levels, additive/multiplicative etc. |
format! |
Co-authored-by: Pratik Nayak <[email protected]>
This PR uses the distributed coarse level generation from PGM to use as a coarse level for the additive Schwarz preconditioner. The only requirement is that the galerkin product generator ($RAP$ ) generate a
multigrid::MultigridLevel
which is a triplet ofrestrict
,prolong
andcoarse
operators. The user additionally also needs to set the solver for the coarse level.TODO
Possible issues