9.0
general documentation
Loading...
Searching...
No Matches
cs_steady_laminar_flamelet_source_terms.h
Go to the documentation of this file.
1#ifndef __CS_STEADY_LAMINAR_FLAMELET_SOURCE_TERMS__
2#define __CS_STEADY_LAMINAR_FLAMELET_SOURCE_TERMS__
3
4/*============================================================================
5 * Defines the source terms for the soot mass fraction and the precursor
6 * number for soot model of Moss et al for one time step.
7 *============================================================================*/
8
9/*
10 This file is part of code_saturne, a general-purpose CFD tool.
11
12 Copyright (C) 1998-2025 EDF S.A.
13
14 This program is free software; you can redistribute it and/or modify it under
15 the terms of the GNU General Public License as published by the Free Software
16 Foundation; either version 2 of the License, or (at your option) any later
17 version.
18
19 This program is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
22 details.
23
24 You should have received a copy of the GNU General Public License along with
25 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
26 Street, Fifth Floor, Boston, MA 02110-1301, USA.
27*/
28
29/*----------------------------------------------------------------------------*/
30
31/*----------------------------------------------------------------------------
32 * Standard C library headers
33 *----------------------------------------------------------------------------*/
34
35/*----------------------------------------------------------------------------
36 * Local headers
37 *----------------------------------------------------------------------------*/
38
39#include "base/cs_defs.h"
40
41/*----------------------------------------------------------------------------*/
42
44
45/*=============================================================================
46 * Public function prototypes
47 *============================================================================*/
48
49/*----------------------------------------------------------------------------*/
50/*
51 * \param[in] f_sc pointer to scalar field
52 * \param[in,out] smbrs explicit right hand side
53 * \param[in,out] rovsdt implicit terms
54 */
55/*----------------------------------------------------------------------------*/
56
57void
59 cs_real_t smbrs[],
60 cs_real_t rovsdt[]);
61
62/*----------------------------------------------------------------------------*/
63
65
66#endif /* __CS_STEADY_LAMINAR_FLAMELET_SOURCE_TERMS__ */
#define BEGIN_C_DECLS
Definition cs_defs.h:542
double cs_real_t
Floating-point value.
Definition cs_defs.h:342
#define END_C_DECLS
Definition cs_defs.h:543
void cs_steady_laminar_flamelet_source_terms(cs_field_t *f_sc, cs_real_t smbrs[], cs_real_t rovsdt[])
Defines the source terms for the soot mass fraction and the precursor number for soot model of Moss e...
Definition cs_steady_laminar_flamelet_source_terms.cpp:133
Field descriptor.
Definition cs_field.h:158