Cantera  3.0.0
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1//! @file utils.h
2#ifndef TPX_UTILS_H
3#define TPX_UTILS_H
4
5#include "cantera/tpx/Sub.h"
6
7namespace tpx
8{
9//! @deprecated To be removed after %Cantera 3.0
10Substance* GetSub(int isub);
11
12//! Create a new Substance object corresponding to the specified name.
13/**
14 * Currently valid substances are:
15 *
16 * - water
17 * - nitrogen
18 * - methane
19 * - hydrogen
20 * - oxygen
21 * - HFC-134a
22 * - carbon-dioxide
23 * - heptane
24 */
25Substance* newSubstance(const std::string& name);
26
27}
28
29#endif
Substance * GetSub(int isub)
Definition utils.cpp:46
Substance * newSubstance(const std::string &name)
Create a new Substance object corresponding to the specified name.
Definition utils.cpp:21