FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(heating_diagnostics), | intent(inout) | :: | h | |||
integer, | intent(in) | :: | nspec |
subroutine init_htype_0 (h, nspec)
implicit none
type (heating_diagnostics), intent(in out) :: h
integer, intent (in) :: nspec
allocate (h % delfs2(nspec))
allocate (h % hs2(nspec))
allocate (h % phis2(nspec))
allocate (h % hypervisc(nspec))
allocate (h % hyperres(nspec))
allocate (h % hypercoll(nspec))
allocate (h % collisions(nspec))
allocate (h % imp_colls(nspec))
allocate (h % gradients(nspec))
! allocate (h % curvature(nspec))
allocate (h % heating(nspec))
call zero_htype (h)
end subroutine init_htype_0