results.displacement.**** files

Questions and remarks about code_saturne usage
Forum rules
Please read the forum usage recommendations before posting.
Post Reply
pomarede

results.displacement.**** files

Post 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
Yvan Fournier
Posts: 4208
Joined: Mon Feb 20, 2012 3:25 pm

Re: results.displacement.**** files

Post 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
pomarede

Re: results.displacement.**** files

Post by pomarede »

Hello Yvan,

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

Re: results.displacement.**** files

Post 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
Post Reply