cantera/include/cantera/clib/ctsurf.h

29 lines
768 B
C

/**
* @file ctsurf.h
*/
// This file is part of Cantera. See License.txt in the top-level directory or
// at http://www.cantera.org/license.txt for license and copyright information.
#ifndef CTC_SURF_H
#define CTC_SURF_H
#include "clib_defs.h"
#ifdef __cplusplus
extern "C" {
#endif
CANTERA_CAPI int surf_setCoverages(int i, const double* c, int norm);
CANTERA_CAPI int surf_getCoverages(int i, double* c);
CANTERA_CAPI int surf_setConcentrations(int i, const double* c);
CANTERA_CAPI int surf_getConcentrations(int i, double* c);
CANTERA_CAPI int surf_setSiteDensity(int i, double s0);
CANTERA_CAPI double surf_siteDensity(int i);
CANTERA_CAPI int surf_setCoveragesByName(int i, const char* c);
#ifdef __cplusplus
}
#endif
#endif