calc_kflh_base_impedance Module Function

pure elemental module function calc_kflh_base_impedance(self, state) result(kflh)

Arguments

Type IntentOptional Attributes Name
class(type_hcf_base_impedance), intent(in) :: self
type(type_state), intent(in) :: state

Return Value real(kind=real64)


Calls

proc~~calc_kflh_base_impedance~~CallsGraph proc~calc_kflh_base_impedance calc_kflh_base_impedance calc_impedance calc_impedance proc~calc_kflh_base_impedance->calc_impedance calc_kr calc_kr proc~calc_kflh_base_impedance->calc_kr

Called by

proc~~calc_kflh_base_impedance~~CalledByGraph proc~calc_kflh_base_impedance calc_kflh_base_impedance interface~calc_kflh_base_impedance type_hcf_base_impedance%calc_kflh_base_impedance interface~calc_kflh_base_impedance->proc~calc_kflh_base_impedance

Source Code

    module pure elemental function calc_kflh_base_impedance(self, state) result(kflh)
        implicit none
        class(type_hcf_base_impedance), intent(in) :: self
        type(type_state), intent(in) :: state
        real(real64) :: kflh

        kflh = self%k_s * self%base%calc_kr(state%pressure) & !&
                        * self%impedance%calc_impedance(state%ice_content)

    end function calc_kflh_base_impedance