calculate_thc_impl_scalar Function

private function calculate_thc_impl_scalar(self, ptrs, state) result(val)

Type Bound

type_properties_manager

Arguments

Type IntentOptional Attributes Name
class(type_properties_manager), intent(in) :: self
type(type_material_pointers), intent(in) :: ptrs
type(type_state), intent(inout) :: state

Return Value real(kind=real64)


Calls

proc~~calculate_thc_impl_scalar~~CallsGraph proc~calculate_thc_impl_scalar type_properties_manager%calculate_thc_impl_scalar calc calc proc~calculate_thc_impl_scalar->calc proc~calculate_water_content type_properties_manager%calculate_water_content proc~calculate_thc_impl_scalar->proc~calculate_water_content proc~calculate_water_content->calc

Called by

proc~~calculate_thc_impl_scalar~~CalledByGraph proc~calculate_thc_impl_scalar type_properties_manager%calculate_thc_impl_scalar proc~calc_thermal_properties_impl_array type_properties_manager%calc_thermal_properties_impl_array proc~calc_thermal_properties_impl_array->proc~calculate_thc_impl_scalar proc~calculate_thc_impl_array type_properties_manager%calculate_thc_impl_array proc~calculate_thc_impl_array->proc~calculate_thc_impl_scalar proc~calculate_thc_scalar type_properties_manager%calculate_thc_scalar proc~calculate_thc_scalar->proc~calculate_thc_impl_scalar none~calc_thc type_properties_manager%calc_thc none~calc_thc->proc~calculate_thc_scalar proc~calculate_thc_array type_properties_manager%calculate_thc_array none~calc_thc->proc~calculate_thc_array proc~calc_thermal_properties_array type_properties_manager%calc_thermal_properties_array proc~calc_thermal_properties_array->proc~calc_thermal_properties_impl_array proc~calculate_thc_array->proc~calculate_thc_impl_array proc~get_observations_thc get_observations_thc proc~get_observations_thc->none~calc_thc proc~interpolate_observations_thc interpolate_observations_thc proc~interpolate_observations_thc->none~calc_thc

Source Code

    function calculate_thc_impl_scalar(self, ptrs, state) result(val)
        implicit none
        class(type_properties_manager), intent(in) :: self
        type(type_material_pointers), intent(in) :: ptrs
        type(type_state), intent(inout) :: state
        real(real64) :: val

        call self%calculate_water_content(ptrs, state)
        val = ptrs%thc%calc(state)
    end function calculate_thc_impl_scalar