/TABLE/0

Block Format Keyword Defines a table with up to four dimensions using data points.

Format

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10)
/TABLE/0/table_ID
table_title
dimension n1 n2 n3 n4
If dimension = 1, fill the values of the first entry
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10)
X1 X2 etc
etc
etc Xn1
If dimension = 2, fill additional values of the second entry
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10)
Y1 Y2 etc
etc
etc Yn2
If dimension = 3, fill additional values of the third entry
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10)
Z1 Z2 etc
etc
etc Zn3
If dimension = 4, fill additional values of the fourth entry
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10)
W1 W2 etc
etc
etc Wn4
Fill the values of the table T(Xi, Yj, Zk, and Wl)
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10)
T1 T2 etc
etc
etc
Tk

Definition

Field Contents SI Unit Example
table_ID Table identifier.

(Integer, maximum 10 digits)

table_title Table title.

(Character, maximum 100 characters)

dimension Total number of entries.

(Integer ≤ 4)

n1, ..., ndimension Number of values for entry n1, ..., ndimension.

(Integer)

Xi ith value of first entry (1 ≤ i ≤ n1).

(Real)

Yj ith value of second entry (1 ≤ i ≤ n2).

(Real)

Zk ith value of third entry (1 ≤ i ≤ n3).

(Real)

Wl ith value of fourth entry (1 ≤ i ≤ n4).

(Real)

Tk kth value of the table ( 1kn1n1ndimension ).

(Real)

Example

Comments

  1. A function and a table cannot share the same identifier.
  2. The full grid is input. N1, ... Ndimension is mandatory. If the dimension =1, N1, is mandatory; if the dimension=2, N1 and N2 are mandatory, and so on.
  3. The dimension of a table is the same as the number of input entries.
  4. The input values of the entry must be strictly increasing, let

    X1<X2<<Xn

    Y1<Y2<<Yn

    Z1<Z2<<Zn

    W1<W2<<Wn

  5. The values of the table must be given in the following order:
    • first entry varies first
    • second entry varies as the second one
    • dimension entry varies as the last one

    As an example, let a 3-dimension table and let the four entries be denoted X, Y, and Z: the values of the table must be given in the following order:

    T(X1,Y1,Z1) , T(X2,Y1,Z1) , …, T(Xn1,Y1,Z1)

    T(X1,Y2,Z1) , T(X2,Y2,Z1) , …, T(Xn1,Yn2,Z1)

    T(X1,Y1,Z2) , T(X2,Y1,Z2) , …, T(Xn1,Y1,Z2)

    T(X1,Y2,Z2) , …, T(Xn1,Y2,Z2) , …, T(Xn1,Yn2,Z2) , …., T(Xn1,Yn2,Zn3)