FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dens_vel_diagnostics), | intent(inout), | dimension(:,:) | :: | dv |
subroutine del_dvtype_2 (dv)
implicit none
type (dens_vel_diagnostics), dimension(:,:), intent(in out) :: dv
integer :: m, mmax, n, nmax
mmax = size (dv, 1)
nmax = size (dv, 2)
do n=1,nmax
do m=1,mmax
deallocate (dv(m,n) % dvpar)
deallocate (dv(m,n) % dvperp)
deallocate (dv(m,n) % dn)
end do
end do
end subroutine del_dvtype_2