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
results.displacement.**** files
Forum rules
Please read the forum usage recommendations before posting.
Please read the forum usage recommendations before posting.
-
- Posts: 4208
- Joined: Mon Feb 20, 2012 3:25 pm
Re: results.displacement.**** files
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
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
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
Regards,
Yvan
Re: results.displacement.**** files
Hello Yvan,
Many thanks, I'll try this and then, upgrade my version
Many thanks, I'll try this and then, upgrade my version

Re: results.displacement.**** files
It works
I finally added
in cs_user_parameters.f90, in the usipes routine.
Thanks again Yvan,
Marie

I finally added
Code: Select all
call pstdfm
Thanks again Yvan,
Marie