Page 1 of 1

results.displacement.**** files

Posted: Tue Oct 23, 2012 4:40 pm
by pomarede
Hi everybody,

I am using Code_Saturne 2.2.2 with activated ALE. For a post-processing need, with ancient versions (like 1.3 !!), I used to put the keyword 'ICHRMD' to 10 in order to obtain output files with fixed mesh but with the "chr.displacement.****" files.
With the new versions, as this keyword is no more implemented, I don't know how to obtain post-processing files which would have a "results.displacement.****" form, except by using the routine usvpst.f90.
Is there another way to do this ? And, if not, do I have to construct a nnod*3 vector which would contain "depale" in usvpst ?

Many thanks for any help,

Marie

Re: results.displacement.**** files

Posted: Sun Oct 28, 2012 5:23 pm
by Yvan Fournier
Hello,

For versions 2.3 and 3.0, the output if this field is automatic.

For version 2.2, there is a missing test for ALE and call to pstdfm in the modini subroutine, but if you simply add

Code: Select all

call pstdfm
anywhere in usdpst or usini1, things should work (we have to remember to fix this bug in the next 2.2 bugfix release).

Regards,

Yvan

Re: results.displacement.**** files

Posted: Mon Oct 29, 2012 10:07 am
by pomarede
Hello Yvan,

Many thanks, I'll try this and then, upgrade my version :)

Re: results.displacement.**** files

Posted: Mon Oct 29, 2012 3:19 pm
by pomarede
It works :)
I finally added

Code: Select all

call pstdfm
in cs_user_parameters.f90, in the usipes routine.

Thanks again Yvan,

Marie