9.2
general documentation
cs_walldistance.h
Go to the documentation of this file.
1#ifndef CS_WALLDISTANCE_H
2#define CS_WALLDISTANCE_H
3
4/*============================================================================
5 * Compute the wall distance using the CDO framework
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#include "cdo/cs_equation.h"
36
37/*============================================================================
38 * Macro definitions
39 *============================================================================*/
40
41/*============================================================================
42 * Type definitions
43 *============================================================================*/
44
45/*============================================================================
46 * Public function prototypes
47 *============================================================================*/
48
49/*----------------------------------------------------------------------------*/
53/*----------------------------------------------------------------------------*/
54
55bool
57
58/*----------------------------------------------------------------------------*/
62/*----------------------------------------------------------------------------*/
63
64void
66
67/*----------------------------------------------------------------------------*/
71/*----------------------------------------------------------------------------*/
72
73void
75
76/*----------------------------------------------------------------------------*/
85/*----------------------------------------------------------------------------*/
86
87void
89 const cs_time_step_t *time_step,
90 const cs_cdo_connect_t *connect,
91 const cs_cdo_quantities_t *cdoq);
92
93#endif /* CS_WALLDISTANCE_H */
time step descriptor
Definition: cs_time_step.h:60
bool cs_walldistance_is_activated(void)
Test if the computation of the wall distance is activated.
Definition: cs_walldistance.cpp:394
void cs_walldistance_compute(const cs_mesh_t *mesh, const cs_time_step_t *time_step, const cs_cdo_connect_t *connect, const cs_cdo_quantities_t *cdoq)
Compute the wall distance.
Definition: cs_walldistance.cpp:496
void cs_walldistance_activate(void)
Activate the future computation of the wall distance.
Definition: cs_walldistance.cpp:409
void cs_walldistance_setup(void)
Setup the equation related to the wall distance.
Definition: cs_walldistance.cpp:445
Definition: mesh.f90:26
Definition: cs_cdo_connect.h:57
Definition: cs_cdo_quantities.h:142
Definition: cs_mesh.h:85