9.0
general documentation
Loading...
Searching...
No Matches
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-2025 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
39
40/*============================================================================
41 * Type definitions
42 *============================================================================*/
43
44/*=============================================================================
45 * Public function prototypes
46 *============================================================================*/
47
48/*-----------------------------------------------------------------------------
49 * Activate specific physical models based on XML settings.
50 *----------------------------------------------------------------------------*/
51
52void
54
55/*----------------------------------------------------------------------------
56 * Indirection between the solver numbering and the XML one
57 * for physical properties of the activated specific physics
58 * (pulverized solid fuels)
59 *----------------------------------------------------------------------------*/
60
61void
63
64/*----------------------------------------------------------------------------
65 * Gas combustion model parameters
66 *----------------------------------------------------------------------------*/
67
68void
70
71/*----------------------------------------------------------------------------
72 * Temperatures for D3P Gas Combustion
73 *----------------------------------------------------------------------------*/
74
75void
77
78/*----------------------------------------------------------------------------
79 * Electrical model: read parameters
80 *----------------------------------------------------------------------------*/
81
82void
84
85/*----------------------------------------------------------------------------
86 * Electrical model: define plane for elreca
87 *----------------------------------------------------------------------------*/
88
89void
91
92/*-----------------------------------------------------------------------------
93 * Return the name of a thermophysical model.
94 *
95 * parameter:
96 * model_thermo --> thermophysical model category
97 *----------------------------------------------------------------------------*/
98
99const char *
100cs_gui_get_thermophysical_model(const char *model_thermo);
101
102/*----------------------------------------------------------------------------
103 * groundwater model : read parameters
104 *
105 * parameters:
106 * permeability <-- permeability type
107 * unsteady <-- steady flow
108 * unsaturated <-- take into account unsaturated zone
109 *----------------------------------------------------------------------------*/
110
111void
112cs_gui_gwf_model(int *permeability,
113 int *unsteady,
114 int *unsaturated);
115
116/*----------------------------------------------------------------------------*/
117
119
120#endif /* __CS_GUI_SPECIFIC_PHYSICS_H__ */
#define BEGIN_C_DECLS
Definition cs_defs.h:542
#define END_C_DECLS
Definition cs_defs.h:543
const char * cs_gui_get_thermophysical_model(const char *model_thermo)
Definition cs_gui_specific_physics.cpp:1509
void cs_gui_elec_model(void)
Definition cs_gui_specific_physics.cpp:1387
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:1536
void cs_gui_elec_model_rec(void)
Definition cs_gui_specific_physics.cpp:1470
void cs_gui_combustion_gas_model_temperatures(void)
Definition cs_gui_specific_physics.cpp:1362
void cs_gui_coal_model(void)
Definition cs_gui_specific_physics.cpp:933
void cs_gui_combustion_gas_model(void)
Definition cs_gui_specific_physics.cpp:1334