thermal_conductivity_not_implemented Function

public function thermal_conductivity_not_implemented(c_pt, T, B) result(ret_val) bind(C)

Arguments

Type IntentOptional Attributes Name
type(c_ptr), value :: c_pt
real(kind=dp), value :: T
real(kind=dp), value :: B

Return Value real(kind=dp)


Source Code

    function thermal_conductivity_not_implemented(c_pt,T,B) result(ret_val) bind(C)
        type(c_ptr), value :: c_pt
        real(dp), value :: T,B
        real(dp) :: ret_val
        ret_val=0.0_dp
        if(.false.) print*,c_associated(c_pt),T,B
        error stop 'thermal_conductivity - not implemented'
    end function thermal_conductivity_not_implemented