Hello,
I was reading your last listing file and note the following things. Issue has been detected during the mesh quality check, also you have a message that all your cells have a mass source term, it is correct?
At the outlet you are using a free inlet/outlet BC without a external head loss ...
Search found 284 matches
- Thu May 04, 2017 10:07 am
- Forum: code_saturne usage
- Topic: k omega model converge problem
- Replies: 8
- Views: 8375
- Tue May 02, 2017 8:40 am
- Forum: code_saturne usage
- Topic: k omega model converge problem
- Replies: 8
- Views: 8375
Re: k omega model converge problem
Hello,
You can find information about the turbulence model and wall functions in both, the theory and users guide of CS. Also, you can check the files(cs_wall_functions.c and cs_wall_functions.h) about the implementation of this laws.
Additionally, you are solving a heat transfer problem so you ...
You can find information about the turbulence model and wall functions in both, the theory and users guide of CS. Also, you can check the files(cs_wall_functions.c and cs_wall_functions.h) about the implementation of this laws.
Additionally, you are solving a heat transfer problem so you ...
- Tue Apr 11, 2017 11:07 am
- Forum: code_saturne usage
- Topic: How to couple two fluid domain
- Replies: 5
- Views: 5105
Re: How to couple two fluid domain
Hello,
May be this old post could help you http://code-saturne.org/forum/viewtopic.php?f=2&t=67.
I think that you should try first to couple the two fluid domains and then these with syrthes,
Regards
Luciano
May be this old post could help you http://code-saturne.org/forum/viewtopic.php?f=2&t=67.
I think that you should try first to couple the two fluid domains and then these with syrthes,
Regards
Luciano
- Mon Apr 10, 2017 6:43 pm
- Forum: code_saturne usage
- Topic: How to couple two fluid domain
- Replies: 5
- Views: 5105
Re: How to couple two fluid domain
Hello,
What data/information do you need to exchange through the interfaces solid-fluid and fluid-fluid?
Regards
Luciano
What data/information do you need to exchange through the interfaces solid-fluid and fluid-fluid?
Regards
Luciano
- Thu Mar 23, 2017 9:22 pm
- Forum: code_saturne usage
- Topic: Equation convergence tolerance in Code Saturne
- Replies: 1
- Views: 3597
Re: Equation convergence tolerance in Code Saturne
Hello,
I really don't know in detail where the convergence it is verified but you can check the the file /base/cs_equation_iterative_solve.c and the documentation in http://code-saturne.org/doxygen/src/cs__equation__iterative__solve_8c.html .
Also, in the theory guide there are information about ...
I really don't know in detail where the convergence it is verified but you can check the the file /base/cs_equation_iterative_solve.c and the documentation in http://code-saturne.org/doxygen/src/cs__equation__iterative__solve_8c.html .
Also, in the theory guide there are information about ...
- Thu Mar 23, 2017 8:51 pm
- Forum: code_saturne usage
- Topic: Thermal conductivity/diffusivity in C
- Replies: 3
- Views: 4061
Re: Thermal conductivity/diffusivity in C
Hello,
You can check it in the user manual (search for kivisl, diffusivity or conductivity)
Also check the cs_user_parameters.f90 file in the SRC/EXAMPLE directory in order to view how to access.
Regards,
Luciano
EDIT: Sorry..you ask for the C function and I have wrote about the fortran ...
You can check it in the user manual (search for kivisl, diffusivity or conductivity)
Also check the cs_user_parameters.f90 file in the SRC/EXAMPLE directory in order to view how to access.
Regards,
Luciano
EDIT: Sorry..you ask for the C function and I have wrote about the fortran ...
- Fri Mar 10, 2017 11:43 pm
- Forum: code_saturne usage
- Topic: Quick question about Paraview
- Replies: 2
- Views: 3341
Re: Quick question about Paraview
Hello,
I think that you want to scale the geometry in the "z" direction. You can use the filter "Transform" for that.
http://www.paraview.org/Wiki/ParaView/U ... #Transform
Regards
Luciano
I think that you want to scale the geometry in the "z" direction. You can use the filter "Transform" for that.
http://www.paraview.org/Wiki/ParaView/U ... #Transform
Regards
Luciano
- Tue Feb 21, 2017 4:48 pm
- Forum: code_saturne usage
- Topic: reduce number of cells being flagged as offset
- Replies: 5
- Views: 4473
Re: reduce number of cells being flagged as offset
Hello,
I was checking the source code (cs_mesh_bad_cells.c) of the offset criterion in CS 4.0.0 and CS 4.0.6. This criteria has changed from
CS 4.0.0
of_n = fabs(_DOT_PRODUCT_3D(v_of, v_n));
to
CS 4.0.6
of_n = _MODULE_3D(v_of) * _MODULE_3D(v_n);
Also, you can view the change in the ...
I was checking the source code (cs_mesh_bad_cells.c) of the offset criterion in CS 4.0.0 and CS 4.0.6. This criteria has changed from
CS 4.0.0
of_n = fabs(_DOT_PRODUCT_3D(v_of, v_n));
to
CS 4.0.6
of_n = _MODULE_3D(v_of) * _MODULE_3D(v_n);
Also, you can view the change in the ...
- Tue Feb 21, 2017 3:27 pm
- Forum: code_saturne usage
- Topic: reduce number of cells being flagged as offset
- Replies: 5
- Views: 4473
Re: reduce number of cells being flagged as offset
Hello,
I run your script and did the check mesh in CS 4.0.2 and get 0% of bad cells with the offset criterion and 2% (21000 cells) of bad cells with Least-Squares Gradient criterion over 1.33 Mcells. But, if you change Netgen 3D by 3D Extrusion in the solid meshes you will get a mesh of 650 Kcell ...
I run your script and did the check mesh in CS 4.0.2 and get 0% of bad cells with the offset criterion and 2% (21000 cells) of bad cells with Least-Squares Gradient criterion over 1.33 Mcells. But, if you change Netgen 3D by 3D Extrusion in the solid meshes you will get a mesh of 650 Kcell ...
- Mon Feb 20, 2017 3:33 pm
- Forum: code_saturne usage
- Topic: reduce number of cells being flagged as offset
- Replies: 5
- Views: 4473
Re: reduce number of cells being flagged as offset
Hello,
In the theory guide of CS you can find de definition of the Cell Offset quality criteria and the geometrical parameters involved.
http://code-saturne.org/cms/sites/default/files/docs/4.3/theory.pdf
Are you sure that your internal mesh is fully tetrahedral? Because it appears to be an 3D ...
In the theory guide of CS you can find de definition of the Cell Offset quality criteria and the geometrical parameters involved.
http://code-saturne.org/cms/sites/default/files/docs/4.3/theory.pdf
Are you sure that your internal mesh is fully tetrahedral? Because it appears to be an 3D ...