FE-Project
Loading...
Searching...
No Matches
Data Types | Modules | Functions/Subroutines
scale_atm_dyn_dgm_hydrostatic.F90 File Reference
#include "scaleFElib.h"

Go to the source code of this file.

Data Types

interface  scale_atm_dyn_dgm_hydrostatic::hydrostaic_build_rho_xyz
 

Modules

module  scale_atm_dyn_dgm_hydrostatic
 module FElib / Fluid dyn solver / Atmosphere / Common
 

Functions/Subroutines

subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constt (dens_hyd, pres_hyd, temp0, pres_sfc, x, y, z, lcmesh3d, elem)
 Calculate density and pressure in hydrostatic balance with a constant temperature.
 
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constpt (dens_hyd, pres_hyd, pottemp0, pres_sfc, x, y, z, lcmesh3d, elem)
 Calculate density and pressure in hydrostatic balance with a constant potential temperature.
 
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constbvfreq (dens_hyd, pres_hyd, bruntvaisalafreq, pottemp0, pres_sfc, x, y, z, lcmesh3d, elem)
 Calculate density and pressure in hydrostatic balance with a constant Brunt–Väisälä frequency.
 
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_consttlaps (dens_hyd, pres_hyd, tlaps, temp0, pres_sfc, x, y, z, lcmesh3d, elem)
 Calculate density and pressure in hydrostatic balance with a constant lapse rate of temperature.
 
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constptlaps (dens_hyd, pres_hyd, ptlaps, pottemp0, pres_sfc, x, y, z, lcmesh3d, elem)
 Calculate density and pressure in hydrostatic balance with a constant lapse rate of potential temperature.
 
subroutine get_pmatd_lu (pmatdlu_, pmatd_, pmatdlu_ipiv_, n)
 

Function/Subroutine Documentation

◆ get_pmatd_lu()

subroutine construct_pmatinv::get_pmatd_lu ( real(rp), dimension(n,n), intent(out) pmatdlu_,
real(rp), dimension(n,n), intent(in) pmatd_,
integer, dimension(n), intent(out) pmatdlu_ipiv_,
integer, intent(in) n )

Definition at line 1139 of file scale_atm_dyn_dgm_hydrostatic.F90.

1141 implicit none
1142 integer, intent(in) :: N
1143 real(RP), intent(out) :: pmatDlu_(N,N)
1144 real(RP), intent(in) :: pmatD_(N,N)
1145 integer, intent(out) :: pmatDlu_ipiv_(N)
1146 integer :: info
1147 !------------------------------------------
1148
1149 pmatdlu_(:,:) = pmatd_(:,:)
1150 call linalgebra_lu(pmatdlu_, pmatdlu_ipiv_)
1151 return
module common / Linear algebra
subroutine, public linalgebra_lu(a_lu, ipiv)

References scale_linalgebra::linalgebra_inv(), and scale_linalgebra::linalgebra_lu().

Referenced by scale_atm_dyn_dgm_nonhydro3d_hevi_gmres::atm_dyn_dgm_nonhydro3d_hevi_cal_vi(), and scale_atm_dyn_dgm_hydrostatic::hydrostaic_build_rho_xyz::hydrostaic_build_rho_xyz_moist().