Search found 283 matches

by Luciano Garelli
Tue Nov 19, 2019 5:40 pm
Forum: code_saturne usage
Topic: Use of passive scalar
Replies: 3
Views: 2188

Re: Use of passive scalar

Hello,

This error is strange because in the subroutine uitssc the lambda coefficient is used for groundwater flows.

Another way to track the scalars is set an inlet value for each scalar and the track the evolution. Using this way you avoid the use of the source term.

Regards,

Luciano
by Luciano Garelli
Tue Nov 12, 2019 2:02 pm
Forum: code_saturne usage
Topic: Parallel computation of loops
Replies: 4
Views: 2508

Re: Parallel computation of loops

Hello, cs_glob_rank_id will give you the rank of a MPI process in case of parallelism and it will take the values between 0<=cs_glob_rank_id< number of process. In case of a serial run cs_glob_rank_id =-1 , so only process of rank=0 (parallel) or -1 (serial) will write to this file. In you code, the...
by Luciano Garelli
Wed Oct 16, 2019 9:25 am
Forum: code_saturne usage
Topic: ALE simulations: local fluid force on specific rigid body positions
Replies: 14
Views: 8645

Re: ALE simulations: local fluid force on specific rigid body positions

Hello, But these "points" should be associated to some surface or area in order to compute forces, or chose the boundary face in the rigid body which contain or is placed the point. After you have selected the face or surface(faces) you can computed the forces using the cs_user_extra_opera...
by Luciano Garelli
Wed Oct 16, 2019 9:18 am
Forum: code_saturne usage
Topic: Export the data calculated by extra operations
Replies: 5
Views: 2663

Re: Export the data calculated by extra operations

Hello, I think that the answer is yes (I'm not totally sure because I never have done), but if you have created a new variable (scalar, vector, etc) and you store some data, then you can access from both, fortran or C. Maybe someone from the development team could answer more precisely to your quest...
by Luciano Garelli
Tue Oct 15, 2019 6:42 pm
Forum: code_saturne usage
Topic: Export the data calculated by extra operations
Replies: 5
Views: 2663

Re: Export the data calculated by extra operations

Hello, You can call the fortran subrutine in a C function doing some BIND(C) to be compatible with C. May be this link could help you. https://gcc.gnu.org/onlinedocs/gfortran/Interoperable-Subroutines-and-Functions.html Maybe you can check in the post.f90 file the subrutine cs_f_post_write_var , whi...
by Luciano Garelli
Tue Oct 15, 2019 6:20 pm
Forum: code_saturne usage
Topic: ALE simulations: local fluid force on specific rigid body positions
Replies: 14
Views: 8645

Re: ALE simulations: local fluid force on specific rigid body positions

Hello, I really don't understand very well the question....but the forces computed are normal and tangencial to specific faces and also you can get the X,Y,Z with respect to the global reference. If the object is moving in the Z and X direction I don't understand why do you get forces in the Y direc...
by Luciano Garelli
Wed Sep 18, 2019 10:30 am
Forum: code_saturne usage
Topic: Internal coupling and steady state
Replies: 5
Views: 2500

Re: Internal coupling and steady state

Hello Yvan, Thanks for the help, maybe my case setup is wrong. Additionally, I get the same behavior when I use "anisotropic_turbulent_viscosity" in order to set anisotropic conductivities. I have added a quite similar block of code for the contribution of the boundary faces to the cs_anis...
by Luciano Garelli
Tue Sep 17, 2019 3:21 pm
Forum: code_saturne usage
Topic: Internal coupling and steady state
Replies: 5
Views: 2500

Re: Internal coupling and steady state

Hello Yvan, Hello Luciano, Is the top left picture using the modified or unmodified version ? The top left picture is the unmodified version from the master branch. On the right, I do not see the orange curve. Is it superimposed with another Yes, the orange is superimposed with the another curves. T...
by Luciano Garelli
Mon Sep 16, 2019 9:38 am
Forum: code_saturne usage
Topic: Internal coupling and steady state
Replies: 5
Views: 2500

Internal coupling and steady state

Hello, I have been faced with a problem when try to use internal coupling and the steady state solver in CS6, due to that selected field to be coupled looks like it is not been coupled. If I switch to transient simulation the coupling and the solution is fine. Looking at the cs_convection_diffusion....
by Luciano Garelli
Thu Sep 05, 2019 9:06 am
Forum: code_saturne usage
Topic: Anisotropic thermal conductivity
Replies: 4
Views: 2484

Re: Anisotropic thermal conductivity

Hello Yvan, Thank you for the example. I have being running few very simple example and I have a pair of questions. For the case of the temperature field the "anisotropic_turbulent_viscosity" tensor "visten" should be filled with the thermal conductivity or the thermal conductivi...