HydroModel: Create a HydroModel

Description Usage Arguments Value Author(s) See Also Examples

Description

This function takes data and returns a new HydroModel-object, which can then be used to do hydrological simulations

Usage

1

Arguments

model

character: Name of the model

parameters

data.frame with the required parameters

data

A list of data required to run the model.

...

Other arguments stored in the dots-slot of the HydroModel-class

Value

A HydroModel-class-Object of

Author(s)

Dominik Reusser and Wouter Buytaerd

See Also

HydroModel-class

Examples

1
2
3
4
5
data(huagrahuma)
mymodel <- HydroModel("topmodel", huagrahuma$parameters[1:9], 
 	huagrahuma$inputs, delay = huagrahuma$delay,
        topidx = huagrahuma$topidx)
predictions <- predict(mymodel, probs=c(0.05, 0.95))

RHydro documentation built on May 2, 2019, 6:24 p.m.

Related to HydroModel in RHydro...