Cantera  3.2.0a5
Loading...
Searching...
No Matches
ctrpath.h
Go to the documentation of this file.
1/**
2 * @file ctrpath.h
3 *
4 * @deprecated Deprecated in %Cantera 3.2 and to be removed thereafter.
5 * The legacy CLib is superseded by the generated CLib.
6 */
7
8// This file is part of Cantera. See License.txt in the top-level directory or
9// at https://cantera.org/license.txt for license and copyright information.
10
11#ifndef CTC_RXNPATH_H
12#define CTC_RXNPATH_H
13
14#pragma message("warning: The legacy CLib library ctrpath.h is deprecated and " \
15 "will be removed after Cantera 3.2. Use generated CLib instead.")
16
17#include "clib_defs.h"
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23 CANTERA_CAPI int rdiag_new();
24 CANTERA_CAPI int rdiag_del(int i);
25 CANTERA_CAPI int rdiag_detailed(int i);
26 CANTERA_CAPI int rdiag_brief(int i);
27 CANTERA_CAPI int rdiag_setThreshold(int i, double v);
28 CANTERA_CAPI int rdiag_setBoldColor(int i, const char* color);
29 CANTERA_CAPI int rdiag_setNormalColor(int i, const char* color);
30 CANTERA_CAPI int rdiag_setDashedColor(int i, const char* color);
31 CANTERA_CAPI int rdiag_setDotOptions(int i, const char* opt);
32 CANTERA_CAPI int rdiag_setBoldThreshold(int i, double v);
33 CANTERA_CAPI int rdiag_setNormalThreshold(int i, double v);
34 CANTERA_CAPI int rdiag_setLabelThreshold(int i, double v);
35 CANTERA_CAPI int rdiag_setScale(int i, double v);
36 CANTERA_CAPI int rdiag_setFlowType(int i, int iflow);
37 CANTERA_CAPI int rdiag_setArrowWidth(int i, double v);
38 CANTERA_CAPI int rdiag_setTitle(int i, const char* title);
39 CANTERA_CAPI int rdiag_write(int i, int fmt, const char* fname);
40 CANTERA_CAPI int rdiag_add(int i, int n);
41 CANTERA_CAPI int rdiag_findMajor(int i, double threshold, size_t lda, double* a);
42 CANTERA_CAPI int rdiag_setFont(int i, const char* font);
43 CANTERA_CAPI int rdiag_displayOnly(int i, int k);
44
45 CANTERA_CAPI int rbuild_new();
46 CANTERA_CAPI int rbuild_del(int i);
47 CANTERA_CAPI int rbuild_init(int i, const char* logfile, int k);
48 CANTERA_CAPI int rbuild_build(int i, int k, const char* el, const char* dotfile,
49 int idiag, int iquiet);
50
51 CANTERA_CAPI int ct_clearReactionPath();
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif