Search found 4080 matches

by Yvan Fournier
Sun Jan 24, 2016 11:53 pm
Forum: code_saturne usage
Topic: About restart calculation
Replies: 1
Views: 1925

Re: About restart calculation

Hello,

For low-level access, did you check the cs_user_solver.c examples ? All the cs_restart_* elements are for checkpoint/restart, and work in parallel.

Regards,

Yvan
by Yvan Fournier
Sun Jan 24, 2016 11:49 pm
Forum: code_saturne usage
Topic: getfbr with Syrthes coupling
Replies: 5
Views: 2797

Re: getfbr with Syrthes coupling

Hello, There is no reason getfbr should not work when coupling with Syrthes. But using findpt in a loop on elements or faces is a bad idea, as it will cause a failure most of the time when running in parallel (it is a collective call, and must be called the same number of times by each rank). There ...
by Yvan Fournier
Tue Jan 19, 2016 4:18 pm
Forum: code_saturne usage
Topic: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT
Replies: 30
Views: 21089

Re: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT

Hello, This is strange, as there does not seem to be any logging or backtrace of the cause of the crash. If your meshes are not too large and not confidential, you can post them here (along with the setup) so that I can check if I reproduce the issue. Otherwise, I could try to walk you through using...
by Yvan Fournier
Mon Jan 18, 2016 2:19 am
Forum: code_saturne usage
Topic: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT
Replies: 30
Views: 21089

Re: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT

Hello,

Do you have a backtrace for this crash ?

As before, even if the cause of the crash is different, both "listing" and "syrthes.log" might contain useful info, so please post them here.

Regards,

Yvan
by Yvan Fournier
Fri Jan 15, 2016 1:10 am
Forum: code_saturne usage
Topic: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT
Replies: 30
Views: 21089

Re: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT

Hello, Possibly, the meshes match, but the the selection criteria do not select all faces ? How many faces of each code are on each interface ? If most faces, but not all, are found, increasing the search tolerance (for curved areas) might help (but you need user subroutines to set this). Both codes...
by Yvan Fournier
Thu Jan 14, 2016 11:21 am
Forum: code_saturne usage
Topic: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT
Replies: 30
Views: 21089

Re: CS_4.0.2 and syrthes4.3.0 coupling MPI ABORT

Hello, Did you check the (fluid) "listing" and (solid) "syrthes.log" files as indicated in the script's error message ? The problem is probably a mesh location/interface problem, not an MPI problem. You do not need to change the files I posted last time, as they should work both ...
by Yvan Fournier
Wed Jan 13, 2016 11:28 pm
Forum: code_saturne usage
Topic: import meshes from OpenFOAM
Replies: 24
Views: 16147

Re: import meshes from OpenFOAM

Hello, Does the foamToEnsightParts tool have any options ? When reading an EnSight file, the Code_Saturne preprocessor will generate boundary information if the EnSight file contains the " node id given " option (in the .case file), so if the converter can generate such a file, you should ...
by Yvan Fournier
Sat Jan 09, 2016 3:37 pm
Forum: code_saturne usage
Topic: Example files on CS 4.0 on Windows
Replies: 4
Views: 4087

Re: Example files on CS 4.0 on Windows

Hello, Not all tutorials are in the source code repository, as several of them were added by various users of the code, but are not maintained by the dev team. Also, the tutorials are now updated less frequently than code releases, as 2 releases per year is difficult to follow, and a slightly out-of...
by Yvan Fournier
Thu Jan 07, 2016 1:04 pm
Forum: code_saturne usage
Topic: Example files on CS 4.0 on Windows
Replies: 4
Views: 4087

Re: Example files on CS 4.0 on Windows

Hello, The tutorial examples are in the source code, but not in the installation. It would be a good idea to move them, but in the meantime, you can download them separately from the Subversion mirror: http://code-saturne.org/viewvc/saturne/branches/Version4_0/examples/ (for other versions than 4.0,...
by Yvan Fournier
Thu Jan 07, 2016 11:08 am
Forum: code_saturne usage
Topic: parrsm question
Replies: 2
Views: 2471

Re: parrsm question

Hello,

I'm not sure the problem is due to parrsm:

When you initialize hauteurfx:
hauteurfx = hauteurfx*0.d0 ! initialisation for security
you multiply something that might contain NaN's by zero.

Simply using:
hauteurfx = 0.d0 ! initialisation for security
would seem safer.

Regards,

Yvan