Solution of Poisson's equation
From CFD-Wiki
(Difference between revisions)
m (Reverted edits by MonbaSrelo (Talk) to last version by Zxaar) |
|||
(8 intermediate revisions not shown) | |||
Line 7: | Line 7: | ||
== The solution == | == The solution == | ||
+ | |||
+ | The left hand side can be discretised in the manner explained in section related to [[Discretisation of diffusive term |diffusive term ]]. The diffusive term can be broken into two explicit and implicit parts. | ||
+ | |||
+ | We have, <math> \vec \alpha {\rm{ = }}\frac{{{\rm{\vec A}}}}{{{\rm{\vec A}} \bullet {\rm{d\vec s}}}} </math> | ||
+ | |||
+ | giving us the expression: <br> | ||
+ | :<math> | ||
+ | D_f = \Gamma _f \nabla \phi _f \bullet {\rm{\vec A = }}\Gamma _{\rm{f}} \left[ {\left( {\phi _1 - \phi _0 } \right)\vec \alpha \bullet {\rm{\vec A + }}\bar \nabla \phi \bullet {\rm{\vec A - }}\left( {\bar \nabla \phi \bullet {\rm{d\vec s}}} \right)\vec \alpha \bullet {\rm{\vec A}}} \right] | ||
+ | </math> <br> | ||
+ | where <math> \bar \nabla \phi _f </math> and <math> \Gamma _f </math> are suitable face averages. <br> | ||
+ | When broken into implicit and explicit parts <br> | ||
+ | :<math> | ||
+ | D_{implicit} = \Gamma _{\rm{f}} \left[ {\left( {\phi _1 - \phi _0 } \right)\vec \alpha \bullet {\rm{\vec A }} } \right] | ||
+ | </math> <br> | ||
+ | |||
+ | :<math> | ||
+ | D_{explicit} = \Gamma _f \left[ {\bar \nabla \phi \bullet \vec A - \left( {\bar \nabla \phi \bullet d\vec s} \right)\vec \alpha \bullet \vec A} \right] | ||
+ | </math> <br> | ||
+ | |||
+ | This gives us the coefficient of matrix as: | ||
+ | :<math> | ||
+ | A_l = A_l + \Gamma _f \vec \alpha \bullet \vec A | ||
+ | </math> <br> | ||
+ | |||
+ | :<math> | ||
+ | A_P = A_P - \Gamma _f \vec \alpha \bullet \vec A | ||
+ | </math> <br> | ||
+ | |||
+ | and for source matrix: <br> | ||
+ | <math> | ||
+ | S_U = S_U + q_\phi - D_{explicit} = S_U + q_\phi - \Gamma _f \left[ {\bar \nabla \phi \bullet \vec A - \left( {\bar \nabla \phi \bullet d\vec s} \right)\vec \alpha \bullet \vec A} \right] | ||
+ | |||
+ | </math> <br> | ||
+ | |||
+ | Once the coefficient and source matrix is constructed, the system could be solved with the help of iterative solvers. | ||
+ | |||
+ | ---- | ||
+ | <i> Return to [[Numerical methods | Numerical Methods]] </i> |
Latest revision as of 10:04, 17 December 2008
Poisson equation occurs in many forms in CFD. Efficient and fast solution to Poisson equation is important aspect of CFD.
In CFD the Poisson equation occurs mainly in the form:
The solution
The left hand side can be discretised in the manner explained in section related to diffusive term . The diffusive term can be broken into two explicit and implicit parts.
We have,
giving us the expression:
where and are suitable face averages.
When broken into implicit and explicit parts
This gives us the coefficient of matrix as:
and for source matrix:
Once the coefficient and source matrix is constructed, the system could be solved with the help of iterative solvers.
Return to Numerical Methods