Search found 4077 matches

by Yvan Fournier
Thu Feb 18, 2016 9:39 pm
Forum: code_saturne usage
Topic: LES: SGS Viscosity at previous timestep
Replies: 2
Views: 1917

Re: LES: SGS Viscosity at previous timestep

Hello, Could you provide the recommened usage info (i.e. at least the version you're using) ? Yes, in src/base/varpos.f90 (in the code sources), you'll find: if (iviext.gt.0) then nproce = nproce + 1 ivisla = nproce call field_set_n_previous(iprpfl(iviscl), 1) nproce = nproce + 1 ivista = nproce cal...
by Yvan Fournier
Thu Feb 18, 2016 9:32 pm
Forum: code_saturne usage
Topic: heated square cavity: compressible
Replies: 10
Views: 6744

Re: heated square cavity: compressible

Hello,

Sorry, I've been very busy lately, and forgot to remind my colleague to check this thread.

I just sent him an e-mail a few minutes ago, so you can hope for a reply within a few days...

Best regards,

Yvan
by Yvan Fournier
Thu Feb 18, 2016 12:49 pm
Forum: code_saturne usage
Topic: Coupling two ALE mesh domains
Replies: 1
Views: 2162

Re: Coupling two ALE mesh domains

Hello, Yes, this should be possible, though exchanging deformation info through coupling might not be automated yet, so minor developments would be need to extend the current coupling scheme. You might also be able to separate your domains using a "thin wall", which, todays, splits interio...
by Yvan Fournier
Thu Feb 18, 2016 12:45 pm
Forum: code_saturne usage
Topic: Monitoring probe question
Replies: 7
Views: 4868

Re: Monitoring probe question

Hello, I took a quick look at your user subroutines, and did not see anything suspicious, but as an additional precaution, can you check if you reproduce the issue without user subroutines ? If you still have the issue, running with a debug build of the code (i.e. configured with --enable-debug=true...
by Yvan Fournier
Wed Feb 17, 2016 3:02 pm
Forum: code_saturne usage
Topic: surface pressure integration
Replies: 6
Views: 5267

Re: surface pressure integration

Hello,

You should integrate the (vector) over the whole obstace.

Actually, "efforts" are a stress (i.e. peru unit surface) value, and were renamed in 4.2 to make things clearer.

So you need to sum efforts.surface_norma over boundary faces of the obstacle.

Regards,

Yvan
by Yvan Fournier
Wed Feb 17, 2016 2:58 pm
Forum: code_saturne usage
Topic: Iterations : reorienting or displacing an obstacle
Replies: 3
Views: 2165

Re: Iterations : reorienting or displacing an obstacle

Hello,

Yes, this will rotate the whole mesh.

Basically, the general transformation matrix logic is briefly explained in cs_user_mesh.c, in cs_user_periodicity, example 3.

Regards,

Yvan
by Yvan Fournier
Wed Feb 17, 2016 1:29 am
Forum: code_saturne usage
Topic: Monitoring probe question
Replies: 7
Views: 4868

Re: Monitoring probe question

Hello, According to the backtrace, the error occurs during the parallel syncing of probe data, so it might be partition-dependent, which makes reproducing it without your data quite difficult (and possibly partitioning output file, if you are using Scotch or Metis)... I recommend upgrading to 4.0.4,...
by Yvan Fournier
Tue Feb 16, 2016 10:12 pm
Forum: code_saturne usage
Topic: Monitoring probe question
Replies: 7
Views: 4868

Re: Monitoring probe question

Hello,

No, this might be a bug.

Which version are you using ? Is your case small enough and non-confidential so that you can post it here ?

Regards,

Yvan
by Yvan Fournier
Tue Feb 16, 2016 1:39 pm
Forum: code_saturne usage
Topic: Iterations : reorienting or displacing an obstacle
Replies: 3
Views: 2165

Re: Iterations : reorienting or displacing an obstacle

Hello, cs_user_mesh_input is probably the simplest solution if you only need a combination of translations and rotations (which can be expressed in a homogeneous coordinates transformation matrix). For more general deformations not requiring remeshing, cs_user_mesh_modify should be enough. For more ...
by Yvan Fournier
Mon Feb 15, 2016 7:18 pm
Forum: code_saturne usage
Topic: wall continuity
Replies: 5
Views: 2926

Re: wall continuity

Hello,

For the "stream tracer" in ParaView, how did you specify your source (ParaView sets a single point source by default, do if you do not place the point or replace it with a line source, you often don't get much) ?

Regards,

Yvan