Search found 4274 matches

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: 365

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: 1
Views: 231

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: 26176

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 ...
by Yvan Fournier
Sun Oct 19, 2025 12:33 pm
Forum: code_saturne usage
Topic: Reading of chemistry profiles file
Replies: 8
Views: 26176

Re: Reading of chemistry profiles file

Hello,

I think you forgot to post the files.

Regards,

Yvan
by Yvan Fournier
Fri Oct 17, 2025 5:03 pm
Forum: code_saturne usage
Topic: Reading of chemistry profiles file
Replies: 8
Views: 26176

Re: Reading of chemistry profiles file

Hello,

The code complains it is missing some spack file. Coul you post species.spack.dat ?

Regards,

Yvan
by Yvan Fournier
Tue Oct 14, 2025 11:24 pm
Forum: code_saturne usage
Topic: Particle statistics crash
Replies: 4
Views: 6973

Re: Particle statistics crash

Hello,

I checked very briefly with Martin, and it seems using a local tile step for the tracking and SDE integration should be possible (though a bit of extra validation when we do enable that would be strongly recommended).

So we'll keep that in mind, but i can't give you an exact timeline for ...
by Yvan Fournier
Tue Oct 14, 2025 12:52 pm
Forum: code_saturne usage
Topic: Particle statistics crash
Replies: 4
Views: 6973

Re: Particle statistics crash

Hello,

Which version are you using ? I tried on a different case in v9.0 and it works fine.

Though beware, in the Lagrangien model, the space-varying time step only seems to apply to the carrier flow and statistics, but the Lagrangien tracking and integration of SDE's use the reference time step ...
by Yvan Fournier
Mon Oct 13, 2025 1:44 am
Forum: code_saturne usage
Topic: Reading of chemistry profiles file
Replies: 8
Views: 26176

Re: Reading of chemistry profiles file

Hello,

I am not aware of any voluntary change in the settings. So this may be a bug. Could you post a setup.xml file so we can compare the behavior between versions here an check this ?

Best regards,

Yvan
by Yvan Fournier
Fri Oct 10, 2025 12:10 pm
Forum: code_saturne usage
Topic: Question about atmospheric module
Replies: 2
Views: 7774

Re: Question about atmospheric module

Hello,

I am not sure, but you could try placing the setting in a function called a bit later, such as cs_user_finalize_setup.

Also, be careful to remove the "#pragma weak" lines. They are removed from the user files copied in the installation directories (also used when you select user-defined ...
by Yvan Fournier
Thu Oct 09, 2025 8:24 am
Forum: code_saturne usage
Topic: MESH of complex geometry
Replies: 9
Views: 74837

Re: MESH of complex geometry

Hello,

The MESH_00.case and IB_MESH.case should help you visualize whether the immersed boundary is where you expect it. Actually, in the master branch (since revision fa9358ab, last friday), you can also visualize the faces where cells are cut, by calling;
cs_porous_model_enable_post();
in cs ...