gabrielbmw wrote:Hi,
I'm having the same problem, but on 1980-02-01_00:00:00. But i fixed it
There is a problem when arwpost 3 is looking for the right time. While the program ir looping in time, it does a diference between the loop time and the wanted time, and that diference isn't using "month", so, in my case, when the program get on 1980-01-01_00:00:00, it calculate zero in the diference, broking everytinng. To fix that, change in ./src/module_date_pack.f90 the line 706:
seconds = second + 60*minute + 60*60*hour + 60*60*24*day + 60*60*24*365*century_year
for:
seconds = second + 60*minute + 60*60*hour + 60*60*24*day + 60*60*24*31*month + 60*60*24*365*century_year
copile and run!!!
Users browsing this forum: No registered users and 2 guests