9.2
general documentation
cs_gui_specific_physics.h
Go to the documentation of this file.
1#ifndef CS_GUI_SPECIFIC_PHYSICS_H
2#define CS_GUI_SPECIFIC_PHYSICS_H
3
4/*============================================================================
5 * Management of the GUI parameters file: specific physics
6 *============================================================================*/
7
8/*
9 This file is part of code_saturne, a general-purpose CFD tool.
10
11 Copyright (C) 1998-2026 EDF S.A.
12
13 This program is free software; you can redistribute it and/or modify it under
14 the terms of the GNU General Public License as published by the Free Software
15 Foundation; either version 2 of the License, or (at your option) any later
16 version.
17
18 This program is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
21 details.
22
23 You should have received a copy of the GNU General Public License along with
24 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
25 Street, Fifth Floor, Boston, MA 02110-1301, USA.
26*/
27
28/*----------------------------------------------------------------------------*/
29
30/*----------------------------------------------------------------------------
31 * Local headers
32 *----------------------------------------------------------------------------*/
33
34#include "base/cs_base.h"
35
36/*============================================================================
37 * Type definitions
38 *============================================================================*/
39
40/*=============================================================================
41 * Public function prototypes
42 *============================================================================*/
43
44/*-----------------------------------------------------------------------------
45 * Activate specific physical models based on XML settings.
46 *----------------------------------------------------------------------------*/
47
48void
50
51/*----------------------------------------------------------------------------
52 * Indirection between the solver numbering and the XML one
53 * for physical properties of the activated specific physics
54 * (pulverized solid fuels)
55 *----------------------------------------------------------------------------*/
56
57void
59
60/*----------------------------------------------------------------------------
61 * Gas combustion model parameters
62 *----------------------------------------------------------------------------*/
63
64void
66
67/*----------------------------------------------------------------------------
68 * Temperatures for D3P Gas Combustion
69 *----------------------------------------------------------------------------*/
70
71void
73
74/*----------------------------------------------------------------------------
75 * Electrical model: read parameters
76 *----------------------------------------------------------------------------*/
77
78void
80
81/*----------------------------------------------------------------------------
82 * Electrical model: define plane for elreca
83 *----------------------------------------------------------------------------*/
84
85void
87
88/*-----------------------------------------------------------------------------
89 * Return the name of a thermophysical model.
90 *
91 * parameter:
92 * model_thermo --> thermophysical model category
93 *----------------------------------------------------------------------------*/
94
95const char *
96cs_gui_get_thermophysical_model(const char *model_thermo);
97
98/*----------------------------------------------------------------------------
99 * groundwater model : read parameters
100 *
101 * parameters:
102 * permeability <-- permeability type
103 * unsteady <-- steady flow
104 * unsaturated <-- take into account unsaturated zone
105 *----------------------------------------------------------------------------*/
106
107void
108cs_gui_gwf_model(int *permeability,
109 int *unsteady,
110 int *unsaturated);
111
112/*----------------------------------------------------------------------------*/
113
114#endif /* CS_GUI_SPECIFIC_PHYSICS_H */
const char * cs_gui_get_thermophysical_model(const char *model_thermo)
Definition: cs_gui_specific_physics.cpp:1522
void cs_gui_elec_model(void)
Definition: cs_gui_specific_physics.cpp:1402
void cs_gui_physical_model_select(void)
Definition: cs_gui_specific_physics.cpp:729
void cs_gui_gwf_model(int *permeability, int *unsteady, int *unsaturated)
Definition: cs_gui_specific_physics.cpp:1549
void cs_gui_elec_model_rec(void)
Definition: cs_gui_specific_physics.cpp:1483
void cs_gui_combustion_gas_model_temperatures(void)
Definition: cs_gui_specific_physics.cpp:1377
void cs_gui_coal_model(void)
Definition: cs_gui_specific_physics.cpp:948
void cs_gui_combustion_gas_model(void)
Definition: cs_gui_specific_physics.cpp:1349