heat_capacity_not_implemented Function

public function heat_capacity_not_implemented(c_pt, T, B, TC, TCS, TC0) 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
real(kind=dp), value :: TC
real(kind=dp), value :: TCS
real(kind=dp), value :: TC0

Return Value real(kind=dp)


Source Code

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