Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

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

  • erro.jpg
    erro.jpg
    10.7 KB · Views: 6
  • namelist.wps.txt
    1.3 KB · Views: 3
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',
 
Top