Search found 141 matches

by jgd23
Tue Dec 06, 2022 8:46 am
Forum: code_saturne usage
Topic: Conjugate heat transfert - 2D - Flow past cylinder
Replies: 18
Views: 10590

Re: Conjugate heat transfert - 2D - Flow past cylinder

I try to have 2 meshes and join them. The result is the same. I think that I don't know how to declare the interface again. In the joining sub-menu I choose the 2 BC defined in Salome named "interface_fs" and "interface_sf" respectively the fluid/solid interface (boundary of the ...
by jgd23
Tue Dec 06, 2022 8:18 am
Forum: code_saturne usage
Topic: Conjugate heat transfert - 2D - Flow past cylinder
Replies: 18
Views: 10590

Re: Conjugate heat transfert - 2D - Flow past cylinder

Hello Yvan,

I use the group name "interface_fs" which I have defined in Salome.
This interface is the internal fluid/solid interface of the original mesh.
I don't have files in the SRC folder.

I have attached MED file exported from Mesh.

Thank you for your help.

Best regards
by jgd23
Mon Dec 05, 2022 11:47 pm
Forum: code_saturne usage
Topic: Conjugate heat transfert - 2D - Flow past cylinder
Replies: 18
Views: 10590

Re: Conjugate heat transfert - 2D - Flow past cylinder

Hello, I have add manually the interface fluid/solid with a group name that CS is able to preprocess during mesh calculation, I add the BC directly with its name, not with the face number = 42. This group is not imported with the rest of the BC when importing preprocessor.log of CS. It seems to dete...
by jgd23
Mon Dec 05, 2022 4:54 pm
Forum: code_saturne usage
Topic: Conjugate heat transfert - 2D - Flow past cylinder
Replies: 18
Views: 10590

Re: Conjugate heat transfert - 2D - Flow past cylinder

I re-run the same 2D case without the solid domain part, only the fluid domain. The simulation runs without problem. My problem comes from the coupling definition in CS. The interface fluid/ solid is internal and after exporting the mesh in MED format I loose the group name of the interface. When I ...
by jgd23
Mon Dec 05, 2022 12:54 pm
Forum: code_saturne usage
Topic: Conjugate heat transfert - 2D - Flow past cylinder
Replies: 18
Views: 10590

Re: Conjugate heat transfert - 2D - Flow past cylinder

Hello, Thank you for your answers. I have seen before post that the face 42 was not recognize but I don't pay attention to this because in my 3D case it was the same. I was thinking that the coupling between fluid-solid works anyway. I triple check the name of the interface on Salome + paraview and ...
by jgd23
Sun Dec 04, 2022 2:23 pm
Forum: code_saturne usage
Topic: Conjugate heat transfert - 2D - Flow past cylinder
Replies: 18
Views: 10590

Conjugate heat transfert - 2D - Flow past cylinder

Hello, In order to find the right parameters for a 3D case, first I debug a more simple and well know 2D case "Flow past a cylinder". I use Code Saturne internal coupling for the conjugate heat transfert. My problem is that the simulation doesn't converge, the pressure diverges. See the er...
by jgd23
Sat Dec 03, 2022 11:53 am
Forum: code_saturne usage
Topic: Conjugate heat transfer of simple geometries - comparison with exp data
Replies: 32
Views: 15183

Re: Conjugate heat transfer of simple geometries - comparison with exp data

Hello, I found an example very close to my case to calculate the average scalar quantity on a mesh. void cs_user_extra_operations(cs_domain_t *domain) { /* Variables declaration */ /* Handle to the moy.dat file that will be filled with Tav; declared as static so as to keep its value between calls. *...
by jgd23
Thu Dec 01, 2022 4:20 pm
Forum: code_saturne usage
Topic: Conjugate heat transfer of simple geometries - comparison with exp data
Replies: 32
Views: 15183

Re: Conjugate heat transfer of simple geometries - comparison with exp data

Hello Yvan,

Thank you for your answer. I will look for user-functions to do averages on volumes.

Could you answer my question about adaptative time steps please?

Julien
by jgd23
Wed Nov 30, 2022 11:06 pm
Forum: code_saturne usage
Topic: Conjugate heat transfer of simple geometries - comparison with exp data
Replies: 32
Views: 15183

Re: Conjugate heat transfer of simple geometries - comparison with exp data

Hello, I use internal coupling for the conjugate heat transfer. I have follow your advice with the initialization with user-function and it works. void cs_user_initialization(cs_domain_t *domain) { const cs_mesh_t *m = domain->mesh; /* If this is restarted computation, do not reinitialize values */ ...
by jgd23
Sun Nov 27, 2022 9:51 am
Forum: code_saturne usage
Topic: Conjugate heat transfer of simple geometries - comparison with exp data
Replies: 32
Views: 15183

Re: Conjugate heat transfer of simple geometries - comparison with exp data

Hello Yvan, Sorry for the lack of information of my previous post The case: To resume, I want to simulation the heating time of a steel cylinder in air forced convection ambiance (at different velocities), the natural convection is neglected. I have already done simulations with CHT OpenFoam solver ...