Search found 4281 matches

by Yvan Fournier
Sun Jan 11, 2026 8:05 pm
Forum: code_saturne usage
Topic: Modify buoyancy-term parameter Pr
Replies: 1
Views: 248

Re: Modify buoyancy-term parameter Pr

Hello,

If you want to replace "cs_real_t prdtur = 1;", since it is a local definition, a user-defined file will not be enough.

You can try using the modified source code file as a user-defined file, but I am not sure whether this will work or lead to link-time issues. It did work in most cases ...
by Yvan Fournier
Sun Jan 11, 2026 7:55 pm
Forum: code_saturne usage
Topic: [V8.3 GUI] Unable to change Centering Blend value for Velocity (locked to 1)
Replies: 1
Views: 102

Re: [V8.3 GUI] Unable to change Centering Blend value for Velocity (locked to 1)

Hello,

The slope test does not need to be toggled, as it adjusts to the scheme.

It seems the setting is disabled whenever you are using an LES turbulence model, because in this case a sencond(order scheme is required. In practice though, we seomtimes recommend adding 2% upwind (perhaps even) to ...
by Yvan Fournier
Thu Jan 08, 2026 11:53 pm
Forum: code_saturne usage
Topic: Issue with Infinite SEM Virtual Box Dimensions (coo_min = -1e30) on Annular Inlet [V9.1]
Replies: 4
Views: 208

Re: Issue with Infinite SEM Virtual Box Dimensions (coo_min = -1e30) on Annular Inlet [V9.1]

Hello,

If you still avec access to the build directory, you could edit the source code to apply the patch, then got to the build directory and simply re-run "make install".

Otherwise you may try to include the fixed file with user-define files, but you may have link issues related to multiply ...
by Yvan Fournier
Thu Jan 08, 2026 12:44 pm
Forum: code_saturne usage
Topic: Issue with Infinite SEM Virtual Box Dimensions (coo_min = -1e30) on Annular Inlet [V9.1]
Replies: 4
Views: 208

Re: Issue with Infinite SEM Virtual Box Dimensions (coo_min = -1e30) on Annular Inlet [V9.1]

Hello,

This seems to be due to an incorrect handling of reducers, fixed in commit 5de8c9.

So updating the code should fix hte issue (v9.1 was released Dec 30, so this is a good option).

Best regards,

Yvan
by Yvan Fournier
Sat Dec 27, 2025 2:04 am
Forum: code_saturne usage
Topic: Running the model on HPC
Replies: 3
Views: 1480

Re: Running the model on HPC

Hello,

The iprofc array was removed in commit 8edbd699(2023-03-29), with the following message:

[Atmo] Chemistry, remove iprofc array.

It was use to specify that we want to use chemistry profile for inlets.
This can already be done by specifying another value in
cs_user_boundary_conditions ...
by Yvan Fournier
Fri Dec 19, 2025 11:11 pm
Forum: code_saturne usage
Topic: Running the model on HPC
Replies: 3
Views: 1480

Re: Running the model on HPC

Hello,

Do you use a specific tool or setting to obtain backtraces in the SLURM output ? By default, code_saturne installs its own exception handler, which logs backtraces (with less details) to error* files, but some libraries (at least PT-Scotch and ParaView, possibly others) can force their own ...
by Yvan Fournier
Fri Dec 19, 2025 11:00 pm
Forum: code_saturne usage
Topic: T-Junction CHT Internal Coupling Simulation not working with Fillet
Replies: 4
Views: 1878

Re: T-Junction CHT Internal Coupling Simulation not working with Fillet

@Antech I am not sure I understand your remark for the SST model being required for CHT.
CHT can be used with any turbulence model, as well as for laminar flows. Quality of heat exchange modeling will depend on the chosen model, and research is still ongoing to improve the state of th art in this ...
by Yvan Fournier
Sat Dec 13, 2025 4:54 am
Forum: code_saturne usage
Topic: Code_Saturne and Code_Aster coupling workflow
Replies: 1
Views: 1481

Re: Code_Saturne and Code_Aster coupling workflow

Hello,

Since the fluid and solid domains do not overlay, the boundary mesh data should be sufficient.
I do not know how you can define code_aster boundary conditions based on data in the MED file. I am not sure whether code_aster can read both face or vertex data (here we have face data), or ...
by Yvan Fournier
Sat Dec 13, 2025 4:40 am
Forum: code_saturne usage
Topic: T-Junction CHT Internal Coupling Simulation not working with Fillet
Replies: 4
Views: 1878

Re: T-Junction CHT Internal Coupling Simulation not working with Fillet

Hello,

There may be several issues here. Looking at the mesh, it seems that only the fluid portion is extruded, not the solid portion. Is this desired ? In any case, the code separates the fluid and solid parts before extrusion, which explains why y have more auto:internal_coupling_0_fluid than ...
by Yvan Fournier
Thu Oct 30, 2025 2:12 am
Forum: code_saturne usage
Topic: Reading of chemistry profiles file
Replies: 8
Views: 30396

Re: Reading of chemistry profiles file

Hello,

The issue is due to a change in v9.0. In dimensions.f90, replacing

subroutine ssh_dimensions ( &
Ns, Nr, Nr_photolysis)

by:

subroutine ssh_dimensions(Ns, Nr, Nr_photolysis) &
bind(C, name='cs_f_ssh_dimensions')

Should fix the issue.

As this broke compatibility and consistency, the ...