Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Precipitation, evapotranspiration and temperature can be supplied using netcdf-files exported from FEWS with the proper IDs related to the catchmentname/weatherstation in the model. In order to use the netcdf-file data in the model, you have to change both the DELFT_3B.ini and the sobek_3b.fnm filefiles. See code snippet snippets below.

Code Block
titleDELFT_3B.ini (add at end of [Options] block)
GenerateNetCdfOutput = -1
GenerateHisOutput = 0
MeteoNetCdfInput = -1
PrecipitationNetCdfSeriesId = RAINFALL  (note: you need to reference the netcdf variable id here that holds the precipitation data)
EvaporationNetCdfSeriesId = E
TemperatureNetCdfSeriesId = RAINFALL


Code Block
titlesobek_3b.fnm (add to end of line)
'Precipitation_RR.nc'             *125. Optional meteo NetCdf timeseries inputfile rainfall
'Evaporation_RR.nc'               *126. Optional meteo NetCdf timeseries inputfile evaporation
'Precipitation_RR.nc'               *127. Optional meteo NetCdf timeseries inputfile temperature (only for RR-HBV)

...