Problem executing ungrib program

jc sun

New member
Dear Madam/Sir
I am getting an error while using ungrib and it shows the following, I will attach my namelist and hope someone will help me.
Thank you in advance.
 

Attachments

Hi,
The error message is
Code:
error reading odate: odate = 2019-8-15_18:00:00
Your namelist has the following:
Code:
 start_date = '2019-8-1_00:00:00','2019-8-1_00:00:00',
 end_date   = '2019-8-15_18:00:00','2019-8-15_18:00:00',
The ungrib program expects a double-digit month and day syntax, so you just need to modify the namelist to
Code:
 start_date = '2019-08-01_00:00:00','2019-08-01_00:00:00',
 end_date   = '2019-08-15_18:00:00','2019-08-15_18:00:00',
 
Back
Top