<div dir="ltr">Hello,<br><br>I'm trying to solve Biot's poroelasticity (Cryer's sphere problem) through a fully coupled scheme. Thus, the solution of a single linear system yields both displacement and pressure fields,<br><br>  |K       L      | | u | = |b_u|.<br>  |Q  (A + H) | | p | = |b_p|<br><br>The linear system is asymmetric, given that the discrete equations were obtained through the Element based Finite Volume Method (EbFVM). An unstructured tetrahedral grid is utilised, it has about 10000 nodal points (not coarse, nor too refined). Therefore, GMRES and GAMG are employed to solve it.<br><br>Furthermore, the program was parallelised through a Domain Decomposition Method. Thus, each processor works in its subdomain only.<br><br>So far, so good. For a given set of poroelastic properties (which are constant throughout time and space), the speedup increases as more processors are utilised:<br><br>  coupling intensity: 7.51e-01<br><br>    proc    solve time [s]<br>       1        314.23<br>       2        171.65<br>       3        143.21<br>       4        149.26 (> 143.21, but ok)<br><br>However, after making the problem MORE coupled (different poroelastic properties), a strange behavior is observed:<br><br>  coupling intensity: 2.29e+01<br><br>    proc    solve time [s]<br>       1      28909.35<br>       2        192.39<br>       3        181.29<br>       4      14463.63<br><br>Recalling that GMRES and GAMG are used, KSP takes about 4300 iterations to converge when 1 processor is employed. On the other hand, for 2 processors, KSP takes around 30 iterations to reach convergence. Hence, explaining the difference between the solution times.<br><br>Increasing the coupling even MORE, everything goes as expected:<br><br>  coupling intensity: 4.63e+01<br><br>    proc    solve time [s]<br>       1        229.26<br>       2        146.04<br>       3        121.49<br>       4        107.80<br><br>Because of this, I ask:<br><br>* What may be the source of this behavior? Can it be predicted?<br>* How can I remedy this situation?<br><br>At last, are there better solver-pc choices for coupled poroelasticity?<br><br>Thank you,<br>Felipe<br></div>