Description of the macro command POST_GOUJ ========================================== .. code-block:: text POST_GOUJ Goal ---------------- .. code-block:: text 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. .. code-block:: text Syntax ------- .. code-block:: text ntab [table_sdaster] = POST_GOUJ ( ♦ TABLE = tabl_post_rele, [TXM] ) Operand -------- Operand TABLE ~~~~~~~~~~~~~~~ .. code-block:: text ♦ TABLE = [TXM] This operand allows you to specify the name of the tabl_post_rele table that you want to modify. example ------- .. code-block:: text 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' )