#include "base/cs_defs.h"
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#include <float.h>
#include "bft/bft_error.h"
#include "bft/bft_printf.h"
#include "base/cs_array.h"
#include "alge/cs_balance.h"
#include "alge/cs_blas.h"
#include "alge/cs_convection_diffusion.h"
#include "base/cs_dispatch.h"
#include "cdo/cs_equation.h"
#include "base/cs_equation_iterative_solve.h"
#include "alge/cs_face_viscosity.h"
#include "base/cs_field.h"
#include "base/cs_field_default.h"
#include "base/cs_field_pointer.h"
#include "base/cs_field_operator.h"
#include "base/cs_mem.h"
#include "alge/cs_gradient.h"
#include "lagr/cs_lagr.h"
#include "base/cs_log.h"
#include "base/cs_log_iteration.h"
#include "base/cs_mass_source_terms.h"
#include "base/cs_math.h"
#include "mesh/cs_mesh.h"
#include "mesh/cs_mesh_quantities.h"
#include "base/cs_parall.h"
#include "base/cs_physical_constants.h"
#include "pprt/cs_physical_model.h"
#include "base/cs_porous_model.h"
#include "base/cs_prototypes.h"
#include "base/cs_rotation.h"
#include "base/cs_solid_zone.h"
#include "base/cs_thermal_model.h"
#include "base/cs_time_step.h"
#include "turb/cs_turbulence_model.h"
#include "turb/cs_turbulence_rotation.h"
#include "base/cs_volume_mass_injection.h"
#include "base/cs_velocity_pressure.h"
#include "base/cs_wall_functions.h"
#include "atmo/cs_at_data_assim.h"
#include "atmo/cs_atprke.h"
#include "turb/cs_turbulence_ke.h"
Functions | |
void | cs_turbulence_ke (int phase_id, cs_real_t *prdv2f) |
Solve the k-epsilon equations. | |
void | cs_turbulence_ke_clip (int phase_id, cs_lnum_t n_cells, int iclip) |
Clipping of the turbulent kinetic energy and turbulent dissipation. | |
void | cs_turbulence_ke_mu_t (int phase_id) |
Calculation of turbulent viscosity for the K-epsilon model. | |
void | cs_turbulence_ke_q_mu_t (int phase_id) |
Calculation of turbulent viscosity for the non-linear quadratic K-epsilon from Baglietto et al. (2005) | |
void | cs_turbulence_ke_q (int phase_id, cs_real_6_t rij[]) |
Calculation of non linear terms of the quadratic k-epsilon model (Baglietto et al.) |
Solve the
void cs_turbulence_ke | ( | int | phase_id, |
cs_real_t * | prdv2f ) |
Solve the k-epsilon equations.
Solve the
[in] | phase_id | turbulent phase id (-1 for single phase flow) |
[out] | prdv2f | v2f production term |
void cs_turbulence_ke_clip | ( | int | phase_id, |
cs_lnum_t | n_cells, | ||
int | iclip ) |
Clipping of the turbulent kinetic energy and turbulent dissipation.
[in] | phase_id | turbulent phase id (-1 for single phase flow) |
[in] | n_cells | number of cells |
[in] | iclip | indicator = 0 if viscl0 is used otherwise viscl is used. |
void cs_turbulence_ke_mu_t | ( | int | phase_id | ) |
Calculation of turbulent viscosity for the K-epsilon model.
[in] | phase_id | turbulent phase id (-1 for single phase flow) |
void cs_turbulence_ke_q | ( | int | phase_id, |
cs_real_6_t | rij[] ) |
Calculation of non linear terms of the quadratic k-epsilon model (Baglietto et al.)
[in] | phase_id | turbulent phase id (-1 for single phase flow) |
[out] | rij | non linear terms of quadratic Boussinesq approximation |
void cs_turbulence_ke_q_mu_t | ( | int | phase_id | ) |
Calculation of turbulent viscosity for the non-linear quadratic K-epsilon from Baglietto et al. (2005)
[in] | phase_id | turbulent phase id (-1 for single phase flow) |