CatchmentSurfaceFillStorage Method  | 
 
            Fills a specific storage with a giving amount of inflow (rain). 
            This procedure will update the amount of inflow not added to the storage,
            and returns the new depth of the storage.
            
 
    Namespace: 
   DHI.Mike1D.RainfallRunoffModule
    Assembly:
   DHI.Mike1D.RainfallRunoffModule (in DHI.Mike1D.RainfallRunoffModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static double FillStorage(
	ref double netInflow,
	double storage,
	double storageCapacity
)
Public Shared Function FillStorage ( 
	ByRef netInflow As Double,
	storage As Double,
	storageCapacity As Double
) As Double
public:
static double FillStorage(
	double% netInflow, 
	double storage, 
	double storageCapacity
)
Parameters
- netInflow
 - Type: SystemDouble
Net inflow, rain or similar [m]. Output is part that was not added due to storageCapacity limitation. - storage
 - Type: SystemDouble
Current depth of the storage to be filled [m] - storageCapacity
 - Type: SystemDouble
Capacity of the storage to be filled [m] 
Return Value
Type: 
DoubleNew storage depth
See Also