calc_thermal_properties_scalar Subroutine

private subroutine calc_thermal_properties_scalar(self, material_id, state, thc, vhc)

Type Bound

type_properties_manager

Arguments

Type IntentOptional Attributes Name
class(type_properties_manager), intent(in) :: self
integer(kind=int32), intent(in) :: material_id
type(type_state), intent(inout) :: state
real(kind=real64), intent(inout) :: thc
real(kind=real64), intent(inout) :: vhc

Calls

proc~~calc_thermal_properties_scalar~~CallsGraph proc~calc_thermal_properties_scalar type_properties_manager%calc_thermal_properties_scalar proc~calc_thermal_properties_impl_scalar type_properties_manager%calc_thermal_properties_impl_scalar proc~calc_thermal_properties_scalar->proc~calc_thermal_properties_impl_scalar proc~get_pointers_for_region type_properties_manager%get_pointers_for_region proc~calc_thermal_properties_scalar->proc~get_pointers_for_region calc calc proc~calc_thermal_properties_impl_scalar->calc proc~calculate_dqw_dt type_properties_manager%calculate_dQw_dT proc~calc_thermal_properties_impl_scalar->proc~calculate_dqw_dt proc~calculate_water_content type_properties_manager%calculate_water_content proc~calc_thermal_properties_impl_scalar->proc~calculate_water_content proc~get_den_ptr type_material_manager%get_den_ptr proc~get_pointers_for_region->proc~get_den_ptr proc~get_gcc_ptr type_material_manager%get_gcc_ptr proc~get_pointers_for_region->proc~get_gcc_ptr proc~get_hcf_ptr type_material_manager%get_hcf_ptr proc~get_pointers_for_region->proc~get_hcf_ptr proc~get_thc_ptr type_material_manager%get_thc_ptr proc~get_pointers_for_region->proc~get_thc_ptr proc~get_vhc_ptr type_material_manager%get_vhc_ptr proc~get_pointers_for_region->proc~get_vhc_ptr proc~get_wrf_ptr type_material_manager%get_wrf_ptr proc~get_pointers_for_region->proc~get_wrf_ptr proc~calculate_dqw_dt->calc deriv deriv proc~calculate_dqw_dt->deriv proc~calculate_water_content->calc

Source Code

    subroutine calc_thermal_properties_scalar(self, material_id, state, thc, vhc)
        implicit none
        class(type_properties_manager), intent(in) :: self
        integer(int32), intent(in) :: material_id
        type(type_state), intent(inout) :: state
        real(real64), intent(inout) :: thc
        real(real64), intent(inout) :: vhc

        type(type_material_pointers) :: ptrs

        call self%get_pointers_for_region(calc_thermal, material_id, ptrs)
        call self%calc_thermal_properties_impl_scalar(state, ptrs, thc, vhc)
    end subroutine calc_thermal_properties_scalar