Cantera  2.3.0
ctsurf.h
Go to the documentation of this file.
1 /**
2  * @file ctsurf.h
3  */
4 
5 // This file is part of Cantera. See License.txt in the top-level directory or
6 // at http://www.cantera.org/license.txt for license and copyright information.
7 
8 #ifndef CTC_SURF_H
9 #define CTC_SURF_H
10 
11 #include "clib_defs.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17  CANTERA_CAPI int surf_setCoverages(int i, const double* c, int norm);
18  CANTERA_CAPI int surf_getCoverages(int i, double* c);
19  CANTERA_CAPI int surf_setConcentrations(int i, const double* c);
20  CANTERA_CAPI int surf_getConcentrations(int i, double* c);
21  CANTERA_CAPI int surf_setSiteDensity(int i, double s0);
22  CANTERA_CAPI double surf_siteDensity(int i);
23  CANTERA_CAPI int surf_setCoveragesByName(int i, const char* c);
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif