NOAA-EMC / ufs-land-driver

Creative Commons Zero v1.0 Universal
2 stars 15 forks source link

Main #23

Open luckylixu opened 2 years ago

luckylixu commented 2 years ago

Hi Dr. Barlage,

I am Li Xu of CPC. I found some output units for Noah model is not correct, so we do some quick fix for units. pls see the detail in the Hailan's google doc. https://docs.google.com/document/d/16dLekchr-zQ_o-RD9mHsIGPUiVrQ3VaZ/edit

also we do some trim at Noah model output to save disk space (you can ignore those part)

one more bug, we found the current time computation mode used int32 for calculate sec since reference time. the int32 max value is 2,147,483,647; that is, hexadecimal 0x7FFFFFFF. could only compute the seconds roughly for 68 year, since 1970-01-01. when we intergrted to 2038, the seconds will overflow. so I quick change it to int64, that will fix the bug.

Best regard,

Li