programmer's documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cs_lagr_clogging.h
Go to the documentation of this file.
1 #ifndef __CS_LAGR_CLOGGING_H__
2 #define __CS_LAGR_CLOGGING_H__
3 
4 /*============================================================================
5  * Clogging modeling.
6  *============================================================================*/
7 
8 /*
9  This file is part of Code_Saturne, a general-purpose CFD tool.
10 
11  Copyright (C) 1998-2014 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 "cs_defs.h"
35 #include "cs_lagr_tracking.h"
36 
37 /*----------------------------------------------------------------------------*/
38 
40 
41 /*============================================================================
42  * Type definitions
43  *============================================================================*/
44 
45 typedef struct {
46 
55 
62 
64 
65 /*============================================================================
66  * Public function definitions for Fortran API
67  *============================================================================*/
68 
69 /*----------------------------------------------------------------------------
70  * Clogging initialization.
71  *
72  * - Retrieve various parameters for storing in global structure.
73  * - Compute and store the Debye screening length
74  *----------------------------------------------------------------------------*/
75 
76 void
77 CS_PROCF (cloginit, CLOGINIT)(const cs_real_t *faraday_cst,
78  const cs_real_t *free_space_permit,
79  const cs_real_t *water_permit,
80  const cs_real_t *ionic_strength,
81  const cs_real_t *jamming_limit,
82  const cs_real_t *min_porosity,
83  const cs_real_t temperature[],
84  const cs_real_t *phi1,
85  const cs_real_t *phi2,
86  const cs_real_t *cstham,
87  const cs_real_t *dcutof,
88  const cs_real_t *lambwl,
89  const cs_real_t *kboltz
90 );
91 
92 /*============================================================================
93  * Public function definitions
94  *============================================================================*/
95 
96 /*----------------------------------------------------------------------------
97  * Clogging finalization.
98  *
99  * Deallocate the arrays storing temperature and Debye length.
100  *----------------------------------------------------------------------------*/
101 
102 void
104 
105 /*----------------------------------------------------------------------------
106  * Clogging:
107  *
108  * - Compute the number of deposited particles in contact with the depositing
109  * particle
110  * - Re-compute the energy barrier if this number is greater than zero
111  *
112  * parameters:
113  * particle <-- pointer to particle data
114  * attr_map <-- pointer to attribute map
115  * face_id <-- id of face neighboring particle
116  * face_area <-- area of face
117  * energy_barrier <-> energy barrier
118  * surface_coverage <-> surface coverage
119  * limit <-> jamming limit
120  * mporos <-> minimum porosity
121  *
122  * returns:
123  * number of deposited particles in contact with the depositing particle
124  *----------------------------------------------------------------------------*/
125 
126 int
127 cs_lagr_clogging_barrier(const void *particle,
128  const cs_lagr_attribute_map_t *attr_map,
129  cs_lnum_t face_id,
130  cs_real_t face_area,
131  cs_real_t *energy_barrier,
132  cs_real_t *surface_coverage,
133  cs_real_t *limit,
134  cs_real_t *mporos);
135 
136 /*----------------------------------------------------------------------------*/
137 
139 
140 #endif /* __CS_LAGR_CLOGGING_H__ */
141 
void cs_lagr_clogging_finalize(void)
Definition: cs_lagr_clogging.c:182
cs_real_t min_porosity
Definition: cs_lagr_clogging.h:52
cs_real_t kboltz
Definition: cs_lagr_clogging.h:61
void cloginit(const cs_real_t *faraday_cst, const cs_real_t *free_space_permit, const cs_real_t *water_permit, const cs_real_t *ionic_strength, const cs_real_t *jamming_limit, const cs_real_t *min_porosity, const cs_real_t temperature[], const cs_real_t *phi1, const cs_real_t *phi2, const cs_real_t *cstham, const cs_real_t *dcutof, const cs_real_t *lambwl, const cs_real_t *kboltz)
Definition: cs_lagr_clogging.c:98
#define BEGIN_C_DECLS
Definition: cs_defs.h:405
int cs_lagr_clogging_barrier(const void *particle, const cs_lagr_attribute_map_t *attr_map, cs_lnum_t face_id, cs_real_t face_area, cs_real_t *energy_barrier, cs_real_t *surface_coverage, cs_real_t *limit, cs_real_t *mporos)
Definition: cs_lagr_clogging.c:210
cs_real_t free_space_permit
Definition: cs_lagr_clogging.h:48
cs_real_t jamming_limit
Definition: cs_lagr_clogging.h:51
cs_real_t lambwl
Definition: cs_lagr_clogging.h:60
cs_real_t ionic_strength
Definition: cs_lagr_clogging.h:50
cs_real_t water_permit
Definition: cs_lagr_clogging.h:49
cs_real_t cstham
Definition: cs_lagr_clogging.h:58
Definition: cs_lagr_clogging.h:45
int cs_lnum_t
local mesh entity id
Definition: cs_defs.h:292
#define END_C_DECLS
Definition: cs_defs.h:406
cs_real_t dcutof
Definition: cs_lagr_clogging.h:59
double cs_real_t
Definition: cs_defs.h:296
cs_real_t phi2
Definition: cs_lagr_clogging.h:54
#define CS_PROCF(x, y)
Definition: cs_defs.h:419
cs_real_t phi1
Definition: cs_lagr_clogging.h:53
cs_real_t * temperature
Definition: cs_lagr_clogging.h:56
cs_real_t * debye_length
Definition: cs_lagr_clogging.h:57
Definition: cs_lagr_tracking.h:117
cs_real_t faraday_cst
Definition: cs_lagr_clogging.h:47