Gas combustion model boundary conditions. More...
#include "base/cs_defs.h"
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bft/bft_mem.h"
#include "bft/bft_printf.h"
#include "base/cs_boundary.h"
#include "base/cs_boundary_conditions.h"
#include "base/cs_boundary_zone.h"
#include "base/cs_field.h"
#include "base/cs_field_pointer.h"
#include "base/cs_log.h"
#include "base/cs_math.h"
#include "base/cs_parameters.h"
#include "base/cs_parameters_check.h"
#include "base/cs_physical_constants.h"
#include "base/cs_prototypes.h"
#include "base/cs_time_step.h"
#include "mesh/cs_mesh.h"
#include "mesh/cs_mesh_quantities.h"
#include "cogz/cs_combustion_gas.h"
#include "cogz/cs_combustion_ht_convert.h"
#include "pprt/cs_combustion_model.h"
#include "pprt/cs_physical_model.h"
#include "cogz/cs_combustion_boundary_conditions.h"
Functions | |
int | cs_f_flamelet_rho_idx (void) |
cs_combustion_bc_inlet_t * | cs_combustion_boundary_conditions_get_inlet (const cs_zone_t *zone) |
Return pointer to coal boundary conditions inlet structure. | |
void | cs_combustion_boundary_conditions (int bc_type[]) |
Automatic boundary condition for gas combustion. | |
void | cs_combustion_boundary_conditions_ebu (int bc_type[]) |
Automatic boundary condition for gas combustion with EBU model. | |
void | cs_combustion_boundary_conditions_lw (int bc_type[]) |
Automatic boundary condition for gas combustion with Libby-Williams model. | |
void | cs_combustion_boundary_conditions_density (void) |
Compute density at boundary for gas combustion. | |
void | cs_combustion_boundary_conditions_density_ebu_lw (void) |
Compute density at boundary for gas combustion, using EBU or Libby-Williams models. | |
void | cs_combustion_boundary_conditions_mean_inlet_ebu_lw (cs_real_t *fmm, cs_real_t *tkm) |
Compute mean inlet enthalpy at boundary for EBU and Libby-Williams models. |
Gas combustion model boundary conditions.
void cs_combustion_boundary_conditions | ( | int | bc_type[] | ) |
Automatic boundary condition for gas combustion.
[in] | bc_type | type of boundary for each face |
void cs_combustion_boundary_conditions_density | ( | void | ) |
Compute density at boundary for gas combustion.
This is based on boundary condition definitions, but is called at an earlier stage in the time step.
void cs_combustion_boundary_conditions_density_ebu_lw | ( | void | ) |
Compute density at boundary for gas combustion, using EBU or Libby-Williams models.
This is based on boundary condition definitions, but is called at an earlier stage in the time step.
void cs_combustion_boundary_conditions_ebu | ( | int | bc_type[] | ) |
Automatic boundary condition for gas combustion with EBU model.
[in] | bc_type | type of boundary for each face |
cs_combustion_bc_inlet_t * cs_combustion_boundary_conditions_get_inlet | ( | const cs_zone_t * | zone | ) |
Return pointer to coal boundary conditions inlet structure.
Return pointer to combustion boundary conditions inlet structure.
If no such structure was previously present, it is created and linked to the matching open boundary condition inlet.
[in] | zone | pointer to associated zone |
void cs_combustion_boundary_conditions_lw | ( | int | bc_type[] | ) |
Automatic boundary condition for gas combustion with Libby-Williams model.
[in] | bc_type | type of boundary for each face |
Compute mean inlet enthalpy at boundary for EBU and Libby-Williams models.
[out] | fmm | mean inlet mixture fraction |
[out] | tkm | mean inlet mixture temperature |
int cs_f_flamelet_rho_idx | ( | void | ) |