Search found 4212 matches

by Yvan Fournier
Fri May 16, 2025 5:49 pm
Forum: code_saturne usage
Topic: Help with Groundwater Module (Richards Equation) – Unable to Run Simple Example
Replies: 1
Views: 1282

Re: Help with Groundwater Module (Richards Equation) – Unable to Run Simple Example

Hello,

Could you provide more specific info on the errors encountered (i.e. logs, as detailed in the forum user recommendations) ?

Regards,

Yvan
by Yvan Fournier
Thu May 15, 2025 1:44 pm
Forum: code_saturne usage
Topic: Mass fraction conversion with combustion module
Replies: 1
Views: 1836

Re: Mass fraction conversion with combustion module

Hello, I am not sure this is in the documentation. From converting some combustion routines from Fortran to C a few months ago, I recall some conversions which may be similar to your needs, at various levels in the code itself. You might find what you need when reading thermochemistry data (cs_combu...
by Yvan Fournier
Fri May 09, 2025 12:25 am
Forum: code_saturne usage
Topic: MPI-OpenMP hybrid support
Replies: 2
Views: 10303

Re: MPI-OpenMP hybrid support

Hello, Yes, the code should work fine in hybrid MPI/OPenMP mode, and even though in most cases performance is slightly better in pure MPI mode, hybrid mode often requires a bit less memory so can be useful, and may be improved in the future (current work on GPU performance should also improve OpenMP...
by Yvan Fournier
Thu May 08, 2025 1:39 am
Forum: code_saturne usage
Topic: Run Code_Saturne on GPU
Replies: 4
Views: 15099

Re: Run Code_Saturne on GPU

Hello, This is still very much work in progress, so performance is still in flux, and we will update some benchmarks soon. Solvers such as simple iterative linear solvers and gradient reconstructions can run faster on a GPU than on a CPU, but we still lose performance over memory transfers due to so...
by Yvan Fournier
Thu May 01, 2025 9:28 pm
Forum: code_saturne usage
Topic: Oxydant temperature with combustion module
Replies: 4
Views: 20211

Re: Oxydant temperature with combustion module

Hello, I ran your case, and happened on a crash related to CoolProp usage, which was incompatible with an enthalpy-based thermal model. I fixed the issue in the master, v9.0, and v8.0 branches, but do not recommend using a variable viscosity with combustion models, as I am not sure this is handled c...
by Yvan Fournier
Thu May 01, 2025 11:19 am
Forum: code_saturne usage
Topic: mesh helix surface
Replies: 2
Views: 24682

Re: mesh helix surface

Hello, This is certainly a mesh quality issue, even though the classical quality "bad cell indicators" seem mostly OK. The fact that computing the wall distance needs disabling the reconstruction (see log) is a giveaway. Some cells might be too "flat" near the boundary. Extruding...
by Yvan Fournier
Wed Apr 30, 2025 4:07 pm
Forum: code_saturne usage
Topic: Restarting calculation
Replies: 1
Views: 9636

Re: Restarting calculation

Hello, How many additional time steps did you require ? Note that the number of time steps you specify in the code is by default an absolute number of time steps (same for the physical time), so if you have already reached that number, the restart simply checks values and rebuilds a postprocessing o...
by Yvan Fournier
Mon Apr 28, 2025 11:38 pm
Forum: Installation issues
Topic: File format "MED" not available
Replies: 4
Views: 44338

Re: File format "MED" not available

Hello, In the 2nd image, I do not see the 1st 3 lines, containing the install paths, but I see the build dates are not exactly the same (3 minutes difference) in the 2 cases, so I suspect that either : - You have 2 different installs, one with MED support, the other without. - You overwrote the fixe...
by Yvan Fournier
Wed Apr 16, 2025 11:47 pm
Forum: code_saturne usage
Topic: Oxydant temperature with combustion module
Replies: 4
Views: 20211

Re: Oxydant temperature with combustion module

Hello, Looking at the code, it seems that it is only possible to define multiple temperatures for premixed flames (Libby-Williams and EBU). For 3-point chemistry, the hinfue value is global to the model (which seems to be an unnecessary limitation, probably due to the initial coding rather that a re...
by Yvan Fournier
Tue Apr 08, 2025 1:56 pm
Forum: code_saturne usage
Topic: Fix for Intel Systems in CS8.3 (Git Commit 7342705)
Replies: 3
Views: 20204

Re: Fix for Intel Systems in CS8.3 (Git Commit 7342705)

Hello, In this case, I would recommend either of 2 options : - Apply a revert of that patch on the sources for your build - Or use the gfortran Fortran compiler instead of the Intel compiler (that should be compatible with the Intel C/C++ compilers). Since very little Fortran code is left, performan...