calc_thermal_properties_array Subroutine

private subroutine calc_thermal_properties_array(self, material_id, states, thcs, vhcs)

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) :: states(:)
real(kind=real64), intent(inout) :: thcs(size(states))
real(kind=real64), intent(inout) :: vhcs(size(states))

Calls

proc~~calc_thermal_properties_array~~CallsGraph proc~calc_thermal_properties_array type_properties_manager%calc_thermal_properties_array proc~calc_thermal_properties_impl_array type_properties_manager%calc_thermal_properties_impl_array proc~calc_thermal_properties_array->proc~calc_thermal_properties_impl_array proc~get_pointers_for_region type_properties_manager%get_pointers_for_region proc~calc_thermal_properties_array->proc~get_pointers_for_region none~calc_dqw_dt type_properties_manager%calc_dQw_dT proc~calc_thermal_properties_impl_array->none~calc_dqw_dt none~calc_water_content type_properties_manager%calc_water_content proc~calc_thermal_properties_impl_array->none~calc_water_content proc~calculate_thc_impl_scalar type_properties_manager%calculate_thc_impl_scalar proc~calc_thermal_properties_impl_array->proc~calculate_thc_impl_scalar proc~calculate_vhc_impl_scalar type_properties_manager%calculate_vhc_impl_scalar proc~calc_thermal_properties_impl_array->proc~calculate_vhc_impl_scalar 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 type_properties_manager%calculate_dQw_dT none~calc_dqw_dt->proc~calculate_dqw_dt proc~calculate_dqw_dt_array type_properties_manager%calculate_dQw_dT_array none~calc_dqw_dt->proc~calculate_dqw_dt_array proc~calculate_water_content type_properties_manager%calculate_water_content none~calc_water_content->proc~calculate_water_content proc~calculate_water_content_array type_properties_manager%calculate_water_content_array none~calc_water_content->proc~calculate_water_content_array calc calc proc~calculate_thc_impl_scalar->calc proc~calculate_thc_impl_scalar->proc~calculate_water_content proc~calculate_vhc_impl_scalar->calc proc~calculate_vhc_impl_scalar->proc~calculate_dqw_dt proc~calculate_vhc_impl_scalar->proc~calculate_water_content proc~calculate_dqw_dt->calc deriv deriv proc~calculate_dqw_dt->deriv proc~calculate_dqw_dt_array->proc~calculate_dqw_dt proc~calculate_water_content->calc proc~calculate_water_content_array->proc~calculate_water_content

Source Code

    subroutine calc_thermal_properties_array(self, material_id, states, thcs, vhcs)
        class(type_properties_manager), intent(in) :: self
        integer(int32), intent(in) :: material_id
        type(type_state), intent(inout) :: states(:)
        real(real64), intent(inout) :: thcs(size(states))
        real(real64), intent(inout) :: vhcs(size(states))

        type(type_material_pointers) :: ptrs

        call self%get_pointers_for_region(calc_thermal, material_id, ptrs)
        call self%calc_thermal_properties_impl_array(ptrs, states, thcs, vhcs)

    end subroutine calc_thermal_properties_array