FE-Project
|
module common / Linear algebra More...
Data Types | |
interface | linalgebra_solvelineq |
Functions/Subroutines | |
real(rp) function, dimension(size(a, 1), size(a, 2)), public | linalgebra_inv (a) |
subroutine, public | linalgebra_lu (a_lu, ipiv) |
subroutine, public | linalgebra_solvelineq_gmres (a, b, x, m, restart_num, conv_crit) |
module common / Linear algebra
real(rp) function, dimension(size(a,1),size(a,2)), public scale_linalgebra::linalgebra_inv | ( | real(rp), dimension(:,:), intent(in) | a | ) |
Definition at line 66 of file scale_linalgebra.F90.
Referenced by scale_element_base::elementbase_construct_massmat(), get_pmatd_lu(), scale_element_hexahedral::hexhedralelement_init(), scale_element_line::lineelement_init(), and scale_element_quadrilateral::quadrilateralelement_init().
subroutine, public scale_linalgebra::linalgebra_lu | ( | real(rp), dimension(:,:), intent(inout) | a_lu, |
integer, dimension(size(a_lu,1)), intent(out) | ipiv ) |
Definition at line 160 of file scale_linalgebra.F90.
Referenced by scale_atm_dyn_dgm_nonhydro3d_hevi_gmres::atm_dyn_dgm_nonhydro3d_hevi_cal_vi(), get_pmatd_lu(), and scale_atm_dyn_dgm_hydrostatic::hydrostaic_build_rho_xyz::hydrostaic_build_rho_xyz_moist().
subroutine, public scale_linalgebra::linalgebra_solvelineq_gmres | ( | type(sparsemat), intent(in) | a, |
real(rp), dimension(:), intent(in) | b, | ||
real(rp), dimension(:), intent(inout) | x, | ||
integer, intent(in) | m, | ||
integer, intent(in) | restart_num, | ||
real(rp), intent(in) | conv_crit ) |
Definition at line 180 of file scale_linalgebra.F90.
References scale_sparsemat::sparsemat_storage_typeid_csr.