libsim  Versione7.2.3

◆ datetime_vect_read_unit()

subroutine datetime_vect_read_unit ( type(datetime), dimension(:)  this,
integer, intent(in)  unit 
)

This method reads from a Fortran file unit the contents of the object this.

The record to be read must have been written with the ::write_unit method. The method works both on formatted and unformatted files.

Parametri
thisobject to be read
[in]unitunit from which to read, it must be an opened Fortran file unit

Definizione alla linea 1179 del file datetime_class.F90.

1179 
1180 END FUNCTION timedelta_getamsec
1181 
1182 
1188 FUNCTION timedelta_depop(this)
1189 TYPE(timedelta),INTENT(IN) :: this
1190 TYPE(timedelta) :: timedelta_depop
1191 
1192 TYPE(datetime) :: tmpdt
1193 
1194 IF (this%month == 0) THEN
1195  timedelta_depop = this
1196 ELSE
1197  tmpdt = datetime_new(1970, 1, 1)

Generated with Doxygen.