AsterO'dactyle
Hi
I have opted for only projecting nodal values with PROJ_CHAMP. Very likely that I have had issues when trying to project ELGA - fields when using COQUE_3D. Below example of how I have sometimes extracted maximum/minimum stresses, fields are calculated with CALC_CHAMP.
IMPR_RESU(FORMAT='RESULTAT',
RESU=_F(CARA_ELEM=elemprop,
MAILLAGE=mesh,
NOM_CHAM=('SIEQ_ELGA', ),
NOM_CMP=('VMIS', ),
RESULTAT=resnonl,
VALE_MAX='OUI',
VALE_MIN='OUI'),
UNITE=2)
Below a typical POST_CHAMP - function which I use when dealing with COQUE_3D and DEFORMATION=GROT_GDEP, since results look weird in ParaView with TRI7/QUAD9 mesh. For DKT I usually use linear mesh so there is no need to project really.
sup = POST_CHAMP(EXTR_COQUE=_F(NIVE_COUCHE='SUP',
NOM_CHAM=('SIEQ_ELNO', 'EPEQ_ELNO'),
NUME_COUCHE=1),
RESULTAT=resnonl)
But thank you for mentioning that ECLA_PG, I can do some searching myself how to possibly utilize that. I'm quite novice in manipulating different fields and due to that I posted my original question as well, that perhaps there is a better way to project fields to post-processing.