#include "cs_defs.h"
#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include "bft_mem.h"
#include "bft_error.h"
#include "bft_printf.h"
#include "cs_base.h"
#include "cs_field.h"
#include "cs_field_default.h"
#include "cs_field_pointer.h"
#include "cs_math.h"
#include "cs_mesh.h"
#include "cs_parall.h"
#include "cs_equation_param.h"
#include "cs_turbulence_bc.h"
#include "cs_turbulence_model.h"
#include "cs_turbulence_inflow.h"
Functions | |
void | cs_turbulence_inflow_volume_mass_injection_k_eps (const char *zone_name, double k, double eps) |
Define mass injection for turbulent quantities based on k and epsilon values. More... | |
void | cs_turbulence_inflow_volume_mass_injection_ke_hyd_diam (const char *zone_name, double uref2, double dh, double rho, double mu) |
Define mass injection for turbulent quantities based on a hydraulic diameter and reference velocity. More... | |
void cs_turbulence_inflow_volume_mass_injection_k_eps | ( | const char * | zone_name, |
double | k, | ||
double | eps | ||
) |
Define mass injection for turbulent quantities based on k and epsilon values.
[in] | zone_name | name of zone to which injection should be added |
[in] | k | turbulent kinetic energy |
[in] | eps | turbulent dissipation |
void cs_turbulence_inflow_volume_mass_injection_ke_hyd_diam | ( | const char * | zone_name, |
double | uref2, | ||
double | dh, | ||
double | rho, | ||
double | mu | ||
) |
Define mass injection for turbulent quantities based on a hydraulic diameter and reference velocity.
[in] | zone_name | name of zone to which injection should be added |
[in] | uref2 | square of the reference flow velocity |
[in] | dh | hydraulic diameter ![]() |
[in] | rho | mass density ![]() |
[in] | mu | dynamic viscosity ![]() |