Skip to content
Snippets Groups Projects
Commit 77a6a460 authored by Luis Kornblueh's avatar Luis Kornblueh Committed by Thomas Jahns
Browse files

Use explicit type conversion.

parent 95250984
No related branches found
No related tags found
No related merge requests found
......@@ -21,13 +21,13 @@ program simulate_iau
write (0,*) "Assign values ..."
start_date = "2016-01-01T00:00:00"
stop_date = "2016-01-02T00:00:00"
start_date = t_datetime("2016-01-01T00:00:00")
stop_date = t_datetime("2016-01-02T00:00:00")
time_step = "PT15M"
time_step = t_timedelta("PT15M")
dtime = 900.0
iau_time_shift = "-PT1H30M"
iau_time_shift = t_timedelta("-PT1H30M")
dt_shift = -5400.0
write (0,*) "Prepare time loop ..."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment