Cantera  3.1.0b1
Loading...
Searching...
No Matches
ctrpath.h
Go to the documentation of this file.
1/**
2 * @file ctrpath.h
3 *
4 * @warning This module is an experimental part of the %Cantera API and
5 * may be changed or removed without notice.
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#include "clib_defs.h"
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20 CANTERA_CAPI int rdiag_new();
21 CANTERA_CAPI int rdiag_del(int i);
22 CANTERA_CAPI int rdiag_detailed(int i);
23 CANTERA_CAPI int rdiag_brief(int i);
24 CANTERA_CAPI int rdiag_setThreshold(int i, double v);
25 CANTERA_CAPI int rdiag_setBoldColor(int i, const char* color);
26 CANTERA_CAPI int rdiag_setNormalColor(int i, const char* color);
27 CANTERA_CAPI int rdiag_setDashedColor(int i, const char* color);
28 CANTERA_CAPI int rdiag_setDotOptions(int i, const char* opt);
29 CANTERA_CAPI int rdiag_setBoldThreshold(int i, double v);
30 CANTERA_CAPI int rdiag_setNormalThreshold(int i, double v);
31 CANTERA_CAPI int rdiag_setLabelThreshold(int i, double v);
32 CANTERA_CAPI int rdiag_setScale(int i, double v);
33 CANTERA_CAPI int rdiag_setFlowType(int i, int iflow);
34 CANTERA_CAPI int rdiag_setArrowWidth(int i, double v);
35 CANTERA_CAPI int rdiag_setTitle(int i, const char* title);
36 CANTERA_CAPI int rdiag_write(int i, int fmt, const char* fname);
37 CANTERA_CAPI int rdiag_add(int i, int n);
38 CANTERA_CAPI int rdiag_findMajor(int i, double threshold, size_t lda, double* a);
39 CANTERA_CAPI int rdiag_setFont(int i, const char* font);
40 CANTERA_CAPI int rdiag_displayOnly(int i, int k);
41
42 CANTERA_CAPI int rbuild_new();
43 CANTERA_CAPI int rbuild_del(int i);
44 CANTERA_CAPI int rbuild_init(int i, const char* logfile, int k);
45 CANTERA_CAPI int rbuild_build(int i, int k, const char* el, const char* dotfile,
46 int idiag, int iquiet);
47
48 CANTERA_CAPI int ct_clearReactionPath();
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif