net.simplace.client.simulation.lap.experimental.util.ValueToTableConverter
Provides a resettable counter of simulation days.
Counting
Counter is incremented, if the input variable iDoCount is true.
Resetting the counter
If iReset is true, the counter is reset before an potential increment.
Customization
Increment and start value are customizable.
Default increment is 1, start value is 0.
Component Variables
Content Type | Name | Description | Data Type | Unit | Min Value | Max Value | Default Value |
constant | cDeltaX | distance of 0-valued points to x | DOUBLE | 1 | - | - | 0.0 |
constant | cInterpolationType | if y-values at x-cDeltaX and x+cDeltaY should be set to 0. | BOOLEAN | 1 | - | - | false |
input | iXValue | x value | DOUBLE | 1 | - | - | 0.0 |
input | iYValue | y value | DOUBLE | 1 | - | - | 0.0 |
out | ValueTable | Array with x and y values, possibly with 0 before and after | DOUBLEARRAY | 1 | - | - | [Ljava.lang.Double;@4d4df0f4 |
public class ValueToTableConverter extends
net.simplace.simulation.model.FWSimComponent {
// Public Constructors
public ValueToTableConverter();
// Public Instance Methods public HashMap createVariables(); // Defines
net.simplace.simulation.model.FWSimComponent
Create the FWSimVariables as interface for this SimComponent
// Protected Instance Methods protected void init(); // Defines
net.simplace.simulation.model.FWSimComponent
Initializes the fields by getting input and output FWSimVariables from VarMap
protected void process(); // Defines
net.simplace.simulation.model.FWSimComponent
Process the algorithm and write the results back to VarMap
protected FWSimComponent clone(FWSimVarMap aVarMap);
// Defines net.simplace.simulation.model.FWSimComponent
creates a clone from this SimComponent for use in other threads
}
Hierarchy: java.lang.Object - net.simplace.simulation.model.FWSimComponent (net.simplace.simulation.util.FWSimFieldContainer) - ValueToTableConverter