WOLFRAM SYSTEM MODELER
CombiTimeTableTable look-up with respect to time and linear/periodic extrapolation methods (data from matrix/file) |
SystemModel["Modelica.Blocks.Sources.CombiTimeTable"]
This information is part of the Modelica Standard Library maintained by the Modelica Association.
This block generates an output signal y[:] by constant, linear or cubic Hermite spline interpolation in a table. The time points and function values are stored in a matrix table[i,j], where the first column table[:,1] contains the time points and the other columns contain the data to be interpolated.
Via parameter columns it can be defined which columns of the table are interpolated. If, e.g., columns={2,4}, it is assumed that 2 output signals are present and that the first output is computed by interpolation of column 2 and the second output is computed by interpolation of column 4 of the table matrix. The table interpolation has the following properties:
smoothness = 1: Linear interpolation = 2: Akima interpolation: Smooth interpolation by cubic Hermite splines such that der(y) is continuous, also if extrapolated. = 3: Constant segments = 4: Fritsch-Butland interpolation: Smooth interpolation by cubic Hermite splines such that y preserves the monotonicity and der(y) is continuous, also if extrapolated. = 5: Steffen interpolation: Smooth interpolation by cubic Hermite splines such that y preserves the monotonicity and der(y) is continuous, also if extrapolated. = 6: Modified Akima interpolation: Smooth interpolation by cubic Hermite splines such that der(y) is continuous, also if extrapolated. Additionally, overshoots and edge cases of the original Akima interpolation method are avoided.
extrapolation = 1: Hold the first or last value of the table, if outside of the table scope. = 2: Extrapolate by using the derivative at the first/last table points if outside of the table scope. (If smoothness is LinearSegments or ConstantSegments this means to extrapolate linearly through the first/last two table points.). = 3: Periodically repeat the table data (periodical function). = 4: No extrapolation, i.e. extrapolation triggers an error
For interpolation by constant segments time events are always generated at interval boundaries. For smooth interpolation by cubic Hermite splines no time events are generated at interval boundaries.timeEvents = 1: Always generate time events at interval boundaries = 2: Generate time events at discontinuities (defined by duplicated sample points) = 3: No time events at interval boundaries
Example:
table = [0, 0; 1, 0; 1, 1; 2, 4; 3, 9; 4, 16]; extrapolation = 2 (default), timeEvents = 2 If, e.g., time = 1.0, the output y = 0.0 (before event), 1.0 (after event) e.g., time = 1.5, the output y = 2.5, e.g., time = 2.0, the output y = 4.0, e.g., time = 5.0, the output y = 23.0 (i.e., extrapolation via last 2 points).
The table matrix can be defined in the following ways:
tableName is "NoName" or has only blanks, fileName is "NoName" or has only blanks.
or Scilab by commandsave tables.mat tab1 tab2 tab3
when the three tables tab1, tab2, tab3 should be used from the model.savematfile tables.mat tab1 tab2 tab3
When the constant "NO_FILE_SYSTEM" is defined, all file I/O related parts of the source code are removed by the C-preprocessor, such that no access to files takes place.
If tables are read from a text file, the file needs to have the following structure ("-----" is not part of the file content):
----------------------------------------------------- #1 double tab1(6,2) # comment line 0 0 1 0 1 1 2 4 3 9 4 16 double tab2(6,2) # another comment line 0 0 2 0 2 2 4 8 6 18 8 32 -----------------------------------------------------
Note, that the first two characters in the file need to be "#1" (a line comment defining the version number of the file format). Afterwards, the corresponding matrix has to be declared with type (= "double" or "float"), name and actual dimensions. Finally, in successive rows of the file, the elements of the matrix have to be given. The elements have to be provided as a sequence of numbers in row-wise order (therefore a matrix row can span several lines in the file and need not start at the beginning of a line). Numbers have to be given according to C syntax (such as 2.3, -2, +2.e4). Number separators are spaces, tab (\t), comma (,), or semicolon (;). Several matrices may be defined one after another. Line comments start with the hash symbol (#) and can appear everywhere. Text files should either be ASCII or UTF-8 encoded, where UTF-8 encoded strings are only allowed in line comments and an optional UTF-8 BOM at the start of the text file is ignored. Other characters, like trailing non comments, are not allowed in the file.
MATLAB is a registered trademark of The MathWorks, Inc.
nout |
Value: max([size(columns, 1); size(offset, 1)]) Type: Integer Description: Number of outputs |
---|---|
tableOnFile |
Value: false Type: Boolean Description: = true, if table is defined on file or in function usertab |
table |
Value: fill(0.0, 0, 2) Type: Real[:,:] Description: Table matrix (time = first column; e.g., table=[0, 0; 1, 1; 2, 4]) |
tableName |
Value: "NoName" Type: String Description: Table name on file or in function usertab (see docu) |
fileName |
Value: "NoName" Type: String Description: File where matrix is stored |
verboseRead |
Value: true Type: Boolean Description: = true, if info message that file is loading is to be printed |
columns |
Value: 2:size(table, 2) Type: Integer[:] Description: Columns of table to be interpolated |
smoothness |
Value: Modelica.Blocks.Types.Smoothness.LinearSegments Type: Smoothness Description: Smoothness of table interpolation |
extrapolation |
Value: Modelica.Blocks.Types.Extrapolation.LastTwoPoints Type: Extrapolation Description: Extrapolation of data outside the definition range |
timeScale |
Value: 1 Type: Time (s) Description: Time scale of first table column |
offset |
Value: {0} Type: Real[:] Description: Offsets of output signals |
startTime |
Value: 0 Type: Time (s) Description: Output = offset for time < startTime |
shiftTime |
Value: startTime Type: Time (s) Description: Shift time of first table column |
timeEvents |
Value: Modelica.Blocks.Types.TimeEvents.Always Type: TimeEvents Description: Time event handling of table interpolation |
verboseExtrapolation |
Value: false Type: Boolean Description: = true, if warning messages are to be printed if time is outside the table definition range |
t_min |
Value: t_minScaled * timeScale Type: Time (s) Description: Minimum abscissa value defined in table |
t_max |
Value: t_maxScaled * timeScale Type: Time (s) Description: Maximum abscissa value defined in table |
t_minScaled |
Value: Internal.getTimeTableTmin(tableID) Type: Real Description: Minimum (scaled) abscissa value defined in table |
t_maxScaled |
Value: Internal.getTimeTableTmax(tableID) Type: Real Description: Maximum (scaled) abscissa value defined in table |
y |
Type: RealOutput[nout] Description: Connector of Real output signals |
---|
tableID |
Type: ExternalCombiTimeTable Description: External table object |
---|
Modelica.Electrical.Machines.Examples.InductionMachines Test example: InductionMachineSquirrelCage with inverter driving a conveyor |
|
Modelica.Magnetic.FluxTubes.Examples.SolenoidActuator Pull-in stroke of both solenoid models after a voltage step at time t=0 |
|
Modelica.Magnetic.FundamentalWave.Examples.BasicMachines.InductionMachines Induction machine with squirrel cage and inverter driving a conveyor |
|
Modelica.Magnetic.QuasiStatic.FundamentalWave.Examples.BasicMachines.InductionMachines Induction machine with squirrel cage and inverter driving a conveyor |
|
Modelica.Mechanics.MultiBody.Examples.Elementary Rolling wheel set that is pulled by a force |
|
Modelica.Mechanics.Translational.Examples One-dimensional vehicle with driving resistances |
|
Modelica.Fluid.Examples.TraceSubstances Demonstrates a room volume with CO2 controls |
|
Modelica.Thermal.FluidHeatFlow.Examples Test the OpenTank model |
|
Modelica.Thermal.FluidHeatFlow.Examples Two cylinder system |
|
Modelica.Thermal.HeatTransfer.Examples Second order thermal model of a motor |
Modelica.Blocks.Sources Generate a Boolean output signal based on a vector of time instants |
|
Modelica.Blocks.Sources Generate an Integer output signal based on a table matrix with [time, yi] values |
Release Notes: