resistive_material Derived Type

type, public :: resistive_material


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=dp), public :: cp

Specific heat capacity J/(K kg)

real(kind=dp), public :: rrr

Residual resistivity ratio

real(kind=dp), public :: resistivity

Resistivity [ohm.m]

real(kind=dp), public :: density

kg/m3

real(kind=dp), public :: cp_density

Cp x density J/K/m3


Source Code

  type resistive_material
    real(dp) :: cp
    !! Specific heat capacity J/(K kg)

    real(dp) :: rrr
    !! Residual resistivity ratio

    real(dp) :: resistivity
    !! Resistivity [ohm.m]

    real(dp) :: density
    !! kg/m3

    real(dp) :: cp_density
    !! Cp x density J/K/m3
  end type resistive_material