You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow simulation to select values based on "if value a is < (or >) value b use value b"
Is a combination of "< or >" + an equation or a lookup table (the equation just resolves a value of the lookup table)
This is a meta-type as it could also be like a table min or max, i.e. row 1 is "a", row 2 is "b"
Data Model
flowby is sub-property, and is either an equation, or a lookup table depending
flowby
extends ModelLinkage (with handlers for parsing)
parent object simply copies the result from the children
inputs:
conditional, if present, which is a Conditional for high speed computation/comparisons (also used by HSPF special actions)
Verify performance on this with sample test, can we make matrix data accessors like min/max function just as fast as a hard-wired 2 input conditional?
Is this really a conditional which would choose one or the other or is it something that evaluates TRUE/FALSE? (we also may need a TRUE/FALSE operator)
if type is Equation, there are only the equation as input for value
if type is DataMatrix, the inputs are only the value of the DataMatrix, however, the Datamatrix child has it's inputs
value:
EquationObject
DataMatrix
If conditional is enabled
input is equation
min, max, of condition inputs
step_flowby - does not exist since the step_model_linkage handles assigning value to the memory slot
if conditional is enabled, this object is a table, if it is not enabled, it is just a linked data pass thru to the flowby subcomp
Conditional behavior:
2 row table eqn 1) flowby, 2) alternate flowby
stat applied to table (must have table stat evaluation completed)
The text was updated successfully, but these errors were encountered:
Overview
Data Model
flowby
inputs
:Conditional
for high speed computation/comparisons (also used by HSPF special actions)conditional
which would choose one or the other or is it something that evaluates TRUE/FALSE? (we also may need a TRUE/FALSE operator)Equation
, there are only the equation as input forvalue
DataMatrix
, the inputs are only the value of the DataMatrix, however, the Datamatrix child has it's inputsvalue
:EquationObject
DataMatrix
step_flowby
- does not exist since thestep_model_linkage
handles assigning value to the memory slotThe text was updated successfully, but these errors were encountered: