Stopping of a LIS-DA run (related with state perturbation and analysis increments) #848
-
Hi, I am Donghyuck Yoon, a Ph.D. student at UNIST, South Korea. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi Donghyuck, Is there any error message at all in the job's standard or error output (or to the screen)? Also, please check the end of all lislog files, not just the .0000 file. One of the processors may show the error. David |
Beta Was this translation helpful? Give feedback.
-
In the LISF public-7.3 release, I believe that line 3978 of LISF/lis/surfacemodels/noah.3.3/module_sf_noah33lsm.F90 is: QZ is the quartz, and you likely have a grid point where the QZ is zero, causing the floating invalid. Can you go into LISF/lis/make, run "gmake realclean", then run the configure script again - this time choosing "-1" for the compilation option for debug mode, then run again, and copy the error message? It will give a more exact error message (although it may be the same as above). Also, can you share your SOILPARM.TBL file? You may be trying to use a file that does not match up with the LIS-Noah-3.3 code. Finally, please be sure that all of your LANDMASK=1 grid boxes in your lis_input file have a non-water TEXTURE index value. You may be trying to run a grid point without a defined soil TEXTURE type, so the quartz value is not defined from the SOILPARM.TBL file. David |
Beta Was this translation helpful? Give feedback.
In the LISF public-7.3 release, I believe that line 3978 of LISF/lis/surfacemodels/noah.3.3/module_sf_noah33lsm.F90 is:
THKS = (THKQTZ ** QZ)* (THKO ** (1. - QZ))
QZ is the quartz, and you likely have a grid point where the QZ is zero, causing the floating invalid.
Can you go into LISF/lis/make, run "gmake realclean", then run the configure script again - this time choosing "-1" for the compilation option for debug mode, then run again, and copy the error message? It will give a more exact error message (although it may be the same as above).
Also, can you share your SOILPARM.TBL file? You may be trying to use a file that does not match up with the LIS-Noah-3.3 code.
Finally, please be su…