AbstractBoundaryItemSoftstartFactor Method |
Calculate the strength factor of the softstart.
Uses _applicationBegin as the startup
Usage:
a = SoftStartFactor(t);
Value = (1-a)*_softstartValue + (a)*Value;
Namespace:
DHI.Mike1D.BoundaryModule
Assembly:
DHI.Mike1D.BoundaryModule (in DHI.Mike1D.BoundaryModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax protected double SoftstartFactor(
DateTime s
)
Protected Function SoftstartFactor (
s As DateTime
) As Double
protected:
double SoftstartFactor(
DateTime s
)
Parameters
- s
- Type: SystemDateTime
DateTime to get softstart factor for
Return Value
Type:
DoubleA number between 0 and 1
Remarks
If the input argument dateTime is before _applicationBegin, zero is returned.
See Also