CombiTable2Ds
Table look-up in two dimensions (matrix/file)
Library
Modelica/Blocks/Tables
Description
Bivariate constant, bilinear or bivariateAkima interpolation of a two-dimensional table.The grid points and function values are stored in a matrix "table[i,j]",where:
- the first column "table[2:,1]" contains the u1 grid points,
- the first row "table[1,2:]" contains the u2 grid points,
- the other rows and columns contain the data to be interpolated.
Example:
| | | | | 1.0 | 2.0 | 3.0 | // u2 ----*-------*-------*-------* 1.0 | 1.0 | 3.0 | 5.0 | ----*-------*-------*-------* 2.0 | 2.0 | 4.0 | 6.0 | ----*-------*-------*-------* // u1is defined as table = [0.0, 1.0, 2.0, 3.0; 1.0, 1.0, 3.0, 5.0; 2.0, 2.0, 4.0, 6.0]If, e.g., the input u1 is 1.0, input u2 is 1.0 and smoothness is LinearSegments, the output y is 1.0, e.g., the input u1 is 2.0, input u2 is 1.5 and smoothness is LinearSegments, the output y is 3.0.
- The interpolation interval is found by a binary search where the interval used in the last call is used as start interval.
- Via parameter smoothness it is defined how the data is interpolated:
smoothness = 1: Bilinear interpolation = 2: Bivariate Akima interpolation: Smooth interpolation by bicubic Hermite splines such that der(y) is continuous, also if extrapolated. = 3: Constant segments = 4: Fritsch-Butland interpolation: Not supported = 5: Steffen interpolation: Not supported = 6: Modified Akima interpolation: Not supported
- First and second derivatives are provided, with exception of the following two smoothness options.
- No derivatives are provided for interpolation by constant segments.
- No second derivative is provided for linear interpolation.
- Values outside of the table range, are computed by extrapolation according to the setting of parameter extrapolation:
extrapolation = 1: Hold the first or last values 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
- If the table has only one element, the table value is returned, independent of the value of the input signal.
- The grid values (first column and first row) have to be strictly increasing.
The table matrix can be defined in the following ways:
- Explicitly supplied as parameter matrix "table", and the other parameters have the following values:
tableName is "NoName" or has only blanks,fileName is "NoName" or has only blanks.
- Read from a file "fileName" where the matrix is stored as "tableName". Both text and MATLAB MAT-file format is possible. (The text format is described below). The MAT-file format comes in four different versions: v4, v6, v7 and v7.3. The library supports at least v4, v6 and v7 whereas v7.3 is optional. It is most convenient to generate the MAT-file from FreeMat or MATLAB® by command
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
Note, a fileName can be defined as URI by using the helper function loadResource. - Statically stored in function "usertab" in file "usertab.c". The matrix is identified by "tableName". Parameter fileName = "NoName" or has only blanks. Row-wise storage is always to be preferred as otherwise the table is reallocated and transposed. See the Tables package documentation for more details.
When the constant "NO_FILE_SYSTEM" is defined, all file I/O related parts of thesource 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 thefollowing structure ("-----" is not part of the file content):
-----------------------------------------------------#1double table2D_1(3,4) # comment line0.0 1.0 2.0 3.0 # u[2] grid points1.0 1.0 3.0 5.02.0 2.0 4.0 6.0double table2D_2(4,4) # comment line0.0 1.0 2.0 3.0 # u[2] grid points1.0 1.0 3.0 5.02.0 2.0 4.0 6.03.0 3.0 5.0 7.0-----------------------------------------------------
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 declaredwith type (= "double" or "float"), name and actual dimensions.Finally, in successive rows of the file, the elements of the matrixhave to be given. The elements have to be provided as a sequence ofnumbers in row-wise order (therefore a matrix row can span severallines 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 startwith 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.The matrix elements are interpreted in exactly the same wayas if the matrix is given as a parameter. For example, the firstcolumn "table2D_1[2:,1]" contains the u[1] grid points,and the first row "table2D_1[1,2:]" contains the u[2] grid points.
MATLAB is a registered trademark of The MathWorks, Inc.
Parameters
Name | Label | Description | Data Type | Valid Values |
---|---|---|---|---|
mo_tableOnFile | tableOnFile | = true, if table is defined on file or in function usertab | Scalar | true |
mo_table | table | Table matrix (grid u1 = first column, grid u2 = first row; e.g., table=[0, 0; 0, 1]) | Matrix | |
mo_tableName | tableName | Table name on file or in function usertab (see docu) | String | |
mo_fileName | fileName | File where matrix is stored | String | |
mo_verboseRead | verboseRead | = true, if info message that file is loading is to be printed | Scalar | true |
mo_smoothness | smoothness | Smoothness of table interpolation | Structure | |
mo_smoothness/choice1 | Modelica.Blocks.Types.Smoothness.LinearSegments | Number | 0 | |
mo_smoothness/choice2 | Modelica.Blocks.Types.Smoothness.ContinuousDerivative | Number | 0 | |
mo_smoothness/choice3 | Modelica.Blocks.Types.Smoothness.ConstantSegments | Number | 0 | |
mo_smoothness/choice4 | Modelica.Blocks.Types.Smoothness.MonotoneContinuousDerivative1 | Number | 0 | |
mo_smoothness/choice5 | Modelica.Blocks.Types.Smoothness.MonotoneContinuousDerivative2 | Number | 0 | |
mo_smoothness/choice6 | Modelica.Blocks.Types.Smoothness.ModifiedContinuousDerivative | Number | 0 | |
mo_extrapolation | extrapolation | Extrapolation of data outside the definition range | Structure | |
mo_extrapolation/choice1 | Modelica.Blocks.Types.Extrapolation.HoldLastPoint | Number | 0 | |
mo_extrapolation/choice2 | Modelica.Blocks.Types.Extrapolation.LastTwoPoints | Number | 0 | |
mo_extrapolation/choice3 | Modelica.Blocks.Types.Extrapolation.Periodic | Number | 0 | |
mo_extrapolation/choice4 | Modelica.Blocks.Types.Extrapolation.NoExtrapolation | Number | 0 | |
mo_verboseExtrapolation | verboseExtrapolation | = true, if warning messages are to be printed if table input is outside the definition range | Scalar | true |
mo_u_min | u_min | Minimum abscissa value defined in table | Vector of size 2 | |
mo_u_max | u_max | Maximum abscissa value defined in table | Vector of size 2 | |
mo_tableID | tableID | External table object | Scalar |
Name | Label | Description | Data Type | Valid Values |
---|---|---|---|---|
mo__nmodifiers | Number of Modifiers | Specifies the number of modifiers | Number | |
mo__modifiers | Modifiers | Add new modifier | Structure | |
mo__modifiers/varname | Variable name | Cell of strings | ||
mo__modifiers/attribute | Attribute | Cell of strings | 'start' | |
mo__modifiers/value | Value |
Ports
Name | Type | Description | IO Type | Number |
---|---|---|---|---|
u1 | implicit | Connector of Real input signal 1 | input | 1 |
u2 | implicit | Connector of Real input signal 2 | input | 2 |
y | implicit | Connector of Real output signal | output | 1 |