Fortran runtime error: Allocatable argument 'runoff_data' is not allocated #568
-
|
Hi! This is running on the gcc compiler in debug mode. What could be the solution for this issue? I've included my control file for convenience. Best, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
if you use the runoff input like this: Your |
Beta Was this translation helpful? Give feedback.
-
|
just make sure to setup <vname_hruid> and <dname_hruid> that match with variable/dimension names in the netcdf. I can see how you setup from your log (both are hru), but I don't know what runoff netcdf you actually used looks like. The one you sent to me uses ID for both HRU variable name and dimension. |
Beta Was this translation helpful? Give feedback.
Ok, looking through your setup, I found a few errors (I guess our documentation was not clear).
can you remove these two items from your control file?
The table In the documentation now has
control variable | Default value | Description
<dname_xlon> | None | dimension name for x, lat, or j dimension in runoff netCDF(s). Only runoff is given in grid.
<dname_ylat> | None | dimension name for y, lon, or i dimension in runoff netCDF(s). Only runoff is given in grid.
So if you use gridded runoff you will need lat/lon dimenion name (NOT variable name). Because you are using hru runoff, so no need to provide anything. actually if you provid…