libsim Versione 7.2.6
|
◆ datetime_vect_read_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.
Definizione alla linea 1168 del file datetime_class.F90. 1169
1170END FUNCTION trim_timedelta_to_char
1171
1172
1173!> Restituisce il valore in millisecondi totali di un oggetto \a timedelta.
1174elemental FUNCTION timedelta_getamsec(this)
1175TYPE(timedelta),INTENT(IN) :: this !< oggetto di cui restituire il valore
1176INTEGER(kind=int_ll) :: timedelta_getamsec !< millisecondi totali
1177
1178timedelta_getamsec = this%iminuti
1179
1180END FUNCTION timedelta_getamsec
1181
1182
1183!> Depopularize a \a timedelta object.
1184!! If the object represents a "popular" or mixed interval, a fixed
1185!! interval representation is returned, by recomputing it on a
1186!! standard period (starting from 1970-01-01); if it represents
1187!! already a fixed interval, the same object is returned.
|