1
+ .. index :: time manager, time manager mod
2
+
1
3
MODULE time_manager_mod
2
4
=======================
3
5
@@ -11,6 +13,33 @@ Overview
11
13
| Calendars interpret time intervals in terms of years, months, days. Various calendars commonly in use in the
12
14
scientific community are supported.
13
15
16
+ Available calendars
17
+ -------------------
18
+
19
+ The following calendars are available in DART. The base date is used to define the origin of the
20
+ calendar system. For example, the Gregorian calendar has a base date of January 1, 1601, at 00:00:00.
21
+ This means that the all the DART time values in days,seconds in the Gregorian calendar are relative to this
22
+ starting date. If NO_CALENDAR is used, there is no concept of day, month, year: time is only days, seconds from 0.
23
+
24
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
25
+ | Calendar | base year | base month | base day | base hour | base minute | base second |
26
+ +===================+===========+============+==========+===========+=============+=============+
27
+ | GREGORIAN | 1601 | 1 | 1 | 0 | 0 | 0 |
28
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
29
+ | GREGORIAN_MARS | 1 | 1 | 1 | 0 | 0 | 0 |
30
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
31
+ | JULIAN | 1 | 1 | 1 | 0 | 0 | 0 |
32
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
33
+ | NO_CALENDAR | NA | NA | 0 | NA | NA | 0 |
34
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
35
+ | NOLEAP | 1 | 1 | 1 | 0 | 0 | 0 |
36
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
37
+ | SOLAR_MARS | 1 | 1 | 1 | 0 | 0 | 0 |
38
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
39
+ | THIRTY_DAY_MONTHS | 1 | 1 | 1 | 0 | 0 | 0 |
40
+ +-------------------+-----------+------------+----------+-----------+-------------+-------------+
41
+
42
+
14
43
Other modules used
15
44
------------------
16
45
0 commit comments