Routine TBIMPR: Printing a table ======================================= .. code-block:: text TBIMPR (table, phase, format, ifr, ifr, nparim, nparim, lipaim, nbparg, lipapg, format, format) .. csv-table:: "IN", "table", "K19", "name of the table you want to print" "IN", "nphase", "K*", "Name of any associated sensitive parameter" "IN", "formaz", "K8", "table print format ('EXCEL', 'TABLEAU', 'MOT_CLE')" "IN", "ir", "K.. ", "logical printing unit" "IN", "nparim", "I", "Number of parameters to print: if nparim=0, we print TOUS the parameters." "IN", "lipaim", "V (K16)", "List of parameters to be printed. The order in which the parameters are printed is that of the lipaim list" "IN", "nparpg", "I", "Number of "pagination" parameters" "IN", "lipapg", "V (K16)", "List of pagination parameters" "IN", "formar", "K8", "Format for writing real values. If formar=' '→ by default value: 1 PE12 .5" "IN", "formac", "K2", "Convention for writing complex numbers: If format = '' → by default value: 'RI' If formar = 'RI' → (real part, imaginary part) If format = 'MP' → (module, phase)" The user has the possibility to print his results in the following formats: FORMAT: 'EXCEL' ---------------- .. code-block:: text NUME_ORDRE INST NOEUD DX DY 1 4. N7 3.4 3.8 1 4. N4 2.4 2.8 1 4. N2 1.4 1.8 4 8. N7 3.4 3.8 4 8. N4 2.4 2.8 4 8. N2 1.4 1.8 7 20. N7 3.4 3.8 7 20. N4 2.4 2.8 7 20. N2 1.4 1.8 FORMAT: 'TABLEAU' ------------------ .. csv-table:: "DX", "INST 4. 8. 20." "NOEUD N7 N4 N2", "3.4 3.4 3.4 2.4 2.4 2.4 1.4 1.4 1.4" FORMAT: 'MOT_CLE' ------------------ .. code-block:: text NUME_ORDRE: 1 INST: 4. NOEUD: N7 DX: 3.4 DY: 3.8 NUME_ORDRE: 1 INST: 4. NOEUD: M4 DX: 2.4 DY: 2.8 NUME_ORDRE: 1 INST: 4. NOEUD: N2 DX: 1.4 DY: 1.8 NUME_ORDRE: 4 INST: 8. NOEUD: M7 DX: 3.4 DY: 3.8... FORMAT 'EXCEL' with pagination (defined here by the 'NOEUD' parameter) --------------------------------------------------------- .. code-block:: text NOEUD: N7 road NUME_ORDRE INST DX DY 1 4. 3.4 3.8 4 8. 3.4 3.8 7 20. 3.4 3.8 NOEUD: N4 NUME_ORDRE INST DX DY 1 4. 2.4 2.8 4 8. 2.4 2.8 7 20. 2.4 2.8 NOEUD: N2 NUME_ORDRE INST DX DY 1 4. 1.4 1.8 4 8 1.4 1.8 7 20. 1.4 1.8 By default the print format is the 'EXCEL' format, i.e. presentation in columns of the various selected parameters.