Creating a constant CARTE: routine MECACT ========================================== **CALL MECACT (** **base, map, module, module, module, nommoa, nomgd, ncmp, licmp,** **icmp, rcmp, ccmp, k8cmp)** .. csv-table:: "BASE ", "K1", "IN", "name of the creation base for the map ('G', 'V')" "CARTE ", "K19", "IN JXOUT ", "name of the card to be created." "MOCLE ", "K6", "IN", "keyword allowing access to the mesh concept: /' MAILLA 'we affect all the stitches of MAILLAGEprécisé in NOMMOA (1:8) /' MODELE' we affect all the late stitches of the LIGREL specified in NOMMOA (1:19)" "NOMMOA ", "K*", "IN", "name of the MAILLAGE or the MODELE or the LIGREL on which the card is based." "NOMGD ", "I", "IN", "name of the quantity associated with the map." "NCMP ", "I", "IN", "number of CMPS of the affected quantity" "LICMP ", "L_K8", "IN", "list of the names of the CMP of the affected quantity." "ICMP ", "L_I", "IN", "list of the values of CMPS of the affected quantity if it is of the "integer" type" "RCMP ", "L_R", "IN", "list of the values of CMPS of the affected quantity if it is of the "real" type" "CCMP ", "L_R", "IN", "list of values of CMPS of the affected quantity if it is of the "complex" type" "K8 CMP ", "L_K8", "IN", "list of CMPS values of the affected quantity if it is of type "K8"" Example: .. code-block:: text licmp (1) = 'DX' licmp (2) = 'DY' rcmp (1) = 1.0 rcmp (2) = 2.0 CALL MECACT ('my_card', 'mailla', MAILLA, 'depl_r', 2, licmp, ibid, rcmp, '') will have the effect of creating a constant map of the quantity 'DEPL_R' for which, all mesh cells will be affected by the values: (DX=1.0, DY=2.0).