eos_pT_terms Subroutine

private elemental subroutine eos_pT_terms(ro, T, ThAr)

Arguments

Type IntentOptional Attributes Name
real(kind=dp), intent(in) :: ro
real(kind=dp), intent(in) :: T
type(ThArrays_t), intent(inout) :: ThAr

Calls

proc~~eos_pt_terms~~CallsGraph proc~eos_pt_terms eos_pT_terms proc~fill_f_terms fill_f_terms proc~eos_pt_terms->proc~fill_f_terms proc~fill_g_dreg_terms fill_g_Dreg_terms proc~eos_pt_terms->proc~fill_g_dreg_terms

Called by

proc~~eos_pt_terms~~CalledByGraph proc~eos_pt_terms eos_pT_terms proc~funct_ro_from_pt ro_from_pT_obj_t%funct_ro_from_pT proc~funct_ro_from_pt->proc~eos_pt_terms proc~funct_t_from_rop T_from_roP_obj_t%funct_T_from_roP proc~funct_t_from_rop->proc~eos_pt_terms

Source Code

elemental subroutine eos_pT_terms(ro, T, ThAr) ! ThArr can be smaller: f,g,Derg
    real(dp), intent(in)  :: ro, T
    type(ThArrays_t), intent(inout) :: ThAr
    call fill_f_terms(ro, ThAr)
    call fill_g_Dreg_terms(T, ThAr)
end subroutine eos_pT_terms