-
Hi. In my opinion, additional Jacobian term should be needed. In
Above Jacobian is for 2-D planar. Is there no need to consider Jacobian for the axisymmetric? Similarly, it seems that there are only inviscid contribution of Jacobian in I'm not good at SU2 code structure, so please point me out what I missed if I'm wrong. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Why do you believe these jacobian terms "should be needed"? In general a jacobian does not need to be exact and an approximation which captures the dominant terms (typically 2D convection here) my be preferable (using the default Kyrlov solver FGMRES with the ILU preconditioner the matrix does not necessarily need to be diagonally dominant, positive definite or well conditioned but it is often advantageous for convergence). You are right that the jacobian entries are overwritten after the function call so you would need to change |
Beta Was this translation helpful? Give feedback.
Why do you believe these jacobian terms "should be needed"?
In general a jacobian does not need to be exact and an approximation which captures the dominant terms (typically 2D convection here) my be preferable (using the default Kyrlov solver FGMRES with the ILU preconditioner the matrix does not necessarily need to be diagonally dominant, positive definite or well conditioned but it is often advantageous for convergence).
You are right that the jacobian entries are overwritten after the function call so you would need to change
=-
to-=
there but I have tried that and found ever so slightly inferior convergence when including the turbulence axisymmetry terms (keeping all or only diagona…