4. Description of the macro command POST_GOUJ#
4.1. POST_GOUJ Goal#
Perform post-processing in a specific format.
Transform a table created by POST_RELEVE_T into a table of a specific format such as table_sdaster. The table_sdaster table contains the parameters” NUME_FILET “,” NOEUDS “(node number corresponding to the thread number),” NUME_ORDRE “(corresponding to the load increment),” REACTION “(net reaction) and” REACTION_CUM “(cumulative thread reaction in%).
Produces a table_sdaster data structure.
4.2. Syntax#
ntab [table_sdaster] = POST_GOUJ
(
♦ TABLE = tabl_post_rele, [TXM]
)
4.3. Operand#
4.3.1. Operand TABLE#
This operand allows you to specify the name of the tabl_post_rele table that you want to modify.
4.4. example#
TFORC = POST_RELEVE_T (
ACTION =_F (
INTITULE = 'RESU_T1',
GROUP_NO = 'NDFILETS',
RESULTAT = CALC,
NOM_CHAM = 'FORC_NODA',
TOUT_ORDRE = 'OUI',
NOM_CMP = 'DY',
OPERATION = 'EXTRACTION'
)
)
NTFORC = POST_GOUJ (
TABLE = TFORC,
)
IMPR_TABLE (TABLE = NTFORC,
NOM_PARA = ('NUME_FILET', 'NOEUDS'),
FILTRE =_F (
NOM_PARA = 'NOEUDS',
CRIT_COMP = 'NON_VIDE'
),
FORMAT = 'AGRAF'
)
IMPR_TABLE (TABLE = NTFORC,
NOM_PARA = (
'NUME_ORDRE', 'NUME_FILET',
'REACTION', 'REACTION_CUMU'
),
FILTRE =_F (
NOM_PARA = 'NUME_ORDRE',
CRIT_COMP = 'EQ',
VALE_I = 1
),
FORMAT = 'AGRAF'
)