Hello.
I am trying to run a model using MANAL(JMA) as input data for WRF.
When using Vtable.JMAGSM, the surface RH(relative humidity) and TT(temperature) are not recognized.
If level1 is set to 1.5, the following error occurs:
============
Start_date = 2022-07-07_00:00:00 , End_date = 2022-07-10_00:00:00
output format is WPS
Path to intermediate files is ./
At line 214 of file parse_table.f90
Fortran runtime error: Bad integer for item 1 in list input
Error termination. Backtrace:
#0 0x751d96c23960 in ???
#1 0x751d96c244d9 in ???
#2 0x751d96c2510f in ???
#3 0x751d96e6e5eb in ???
#4 0x751d96e715aa in ???
#5 0x751d96e722aa in ???
#6 0x61b819fc4691 in ???
#7 0x61b819f79ec0 in ???
#8 0x61b819f7b076 in ???
#9 0x751d96829d8f in __libc_start_call_main
at ../sysdeps/nptl/libc_start_call_main.h:58
#10 0x751d96829e3f in __libc_start_main_impl
at ../csu/libc-start.c:392
#11 0x61b819f74824 in ???
==============
How should I modify the Vtable to read 1.5m-level data correctly?
Additionally, I edited ungrib./src/rd_grib2.F as follows:
==============
! Height above ground (m)
if (gfld%ipdtmpl(12) .eq. 2. .or.
& gfld%ipdtmpl(12) .eq. 1.5 .or. ! temp fix for hrrr maxref
& gfld%ipdtmpl(12) .eq. 10. ) then
level=200100.
==============
Thanks.
I am trying to run a model using MANAL(JMA) as input data for WRF.
When using Vtable.JMAGSM, the surface RH(relative humidity) and TT(temperature) are not recognized.
If level1 is set to 1.5, the following error occurs:
============
Start_date = 2022-07-07_00:00:00 , End_date = 2022-07-10_00:00:00
output format is WPS
Path to intermediate files is ./
At line 214 of file parse_table.f90
Fortran runtime error: Bad integer for item 1 in list input
Error termination. Backtrace:
#0 0x751d96c23960 in ???
#1 0x751d96c244d9 in ???
#2 0x751d96c2510f in ???
#3 0x751d96e6e5eb in ???
#4 0x751d96e715aa in ???
#5 0x751d96e722aa in ???
#6 0x61b819fc4691 in ???
#7 0x61b819f79ec0 in ???
#8 0x61b819f7b076 in ???
#9 0x751d96829d8f in __libc_start_call_main
at ../sysdeps/nptl/libc_start_call_main.h:58
#10 0x751d96829e3f in __libc_start_main_impl
at ../csu/libc-start.c:392
#11 0x61b819f74824 in ???
==============
How should I modify the Vtable to read 1.5m-level data correctly?
Additionally, I edited ungrib./src/rd_grib2.F as follows:
==============
! Height above ground (m)
if (gfld%ipdtmpl(12) .eq. 2. .or.
& gfld%ipdtmpl(12) .eq. 1.5 .or. ! temp fix for hrrr maxref
& gfld%ipdtmpl(12) .eq. 10. ) then
level=200100.
==============
Thanks.
Attachments
Last edited: