- Sensitivity governing equations: X-momentum sensitivity equation: ρ∂x∂uu^+ρ∂y∂uv^+ρ∂z∂uw^+ρ∂x∂uu^+ρ∂y∂vu^+ρ∂z∂wu
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
- Sensitivity governing equations: X-momentum sensitivity equation: ρ∂x∂uu^+ρ∂y∂uv^+ρ∂z∂uw^+ρ∂x∂uu^+ρ∂y∂vu^+ρ∂z∂wu
After finite volume discretization, we get a set of linear algebraic equations which are very similar to lincarized Navicr-stokes cquation as: [LKHF][V^P^]=[eg] Where; [A]=[LKHF] are function of flow parameters and independent of the sensitivity parameters (constant). V^=⎣⎡u^v^w⎦⎤ - Linear system solver: We could have a solution with Gauss elimination using low number of cells. But, for large grid number (optimum mesh) direct solution for such system become unacceptable. Instead, one of the iterative methods for solving linear system of equations should be used. Unfortunately, due to the non-orthogonality associated to the untrusted mesh the resultant [A] matrix is not positive definite matrix, off-diagonal dominant matrix, and non-symmetric. We tried to use a lot of iterative methods such as G-S, ILU, and GMRES. GMRES gave me some convergence, but did not reach to that value obtained by Gauss climination, as it showed so much slow convergence. We tried to use Algebraic multi grid "AMG" codes (due to its robustness as it is already used in CFD soft wares) available online, but they did not converge or reach to that value obtained by Gauss elimination We tried to use block iterative such as solving: LV^=e−HP^ Then FP^=g−KV^ But not converged. - Conclusion: So, we seek to solve such equation system AX=b in an iterative way that could fastly and correctly converge to same solution obtained from Gauss-elimination. We believe in AMG solver, but may be the codes available online are not effective for my case.