|
◆ volgrid6d_delete()
subroutine volgrid6d_delete |
( |
type(volgrid6d), intent(inout) |
this | ) |
|
Destructor, it releases every information and memory buffer associated with the object.
It should be called also for objects crated through the import interface.
Definizione alla linea 769 del file volgrid6d_class.F90.
770 read(unit=lunit) ntime, ntimerange, nlevel, nvar 774 ntime=ntime, ntimerange=ntimerange, nlevel=nlevel, nvar=nvar) 778 if ( associated(this%time)) call read_unit(this%time, lunit) 779 if ( associated(this%level)) read(unit=lunit)this%level 780 if ( associated(this%timerange)) read(unit=lunit)this%timerange 781 if ( associated(this%var)) read(unit=lunit)this%var 786 if ( associated(this%voldati)) read(unit=lunit)this%voldati 788 if (.not. present(unit)) close(unit=lunit) 790 end subroutine volgrid6d_read_from_file Legge un oggetto datetime/timedelta o un vettore di oggetti datetime/timedelta da un file FORMATTED o...
|