libsim Versione 7.2.6

◆ volgrid_set_vol_2d()

subroutine, public volgrid_set_vol_2d ( type(volgrid6d), intent(inout) this,
integer, intent(in) ilevel,
integer, intent(in) itime,
integer, intent(in) itimerange,
integer, intent(in) ivar,
real, dimension(:,:), intent(in) voldati )

Reset a 2-d x-y slice of a volume after the data have been modified.

This method works both with volumes having allocated and non-allocated thisvoldati array, and it updates the requested slice. In case thisvoldati is already allocated, this is a no-operation while in the other case this method encodes the field provided into the grid_id object on file or in memory. Since this method may be called many times by a program, it is optimized for speed and it does not make any check about the matching size of the field and the array or about the allocation status of this, so it should be called only when everything has been checked to be in good shape.

Parametri
[in,out]thisobject in which slice has to be updated
[in]ilevelindex of vertical level of the slice
[in]itimeindex of time level of the slice
[in]itimerangeindex of timerange of the slice
[in]ivarindex of physical variable of the slice
[in]voldatiupdated values of the slice

Definizione alla linea 694 del file volgrid6d_class.F90.

695if (associated(this%time)) call write_unit(this%time, lunit)
696if (associated(this%level)) write(unit=lunit)this%level
697if (associated(this%timerange)) write(unit=lunit)this%timerange
698if (associated(this%var)) write(unit=lunit)this%var
699
700
701!! Volumi di valori dati
702
703if (associated(this%voldati)) write(unit=lunit)this%voldati
704
705if (.not. present(unit)) close(unit=lunit)
706
707end subroutine volgrid6d_write_on_file

Generated with Doxygen.