Generated CLib API for Cantera's Reaction class. More...
Generated CLib API for Cantera's Reaction class.
Functions | |
| int32_t | rxn_new () |
| Instantiate Reaction object using default constructor. | |
| int32_t | rxn_equation (int32_t handle, int32_t bufLen, char *buf) |
| The chemical equation for this reaction. | |
| int32_t | rxn_type (int32_t handle, int32_t bufLen, char *buf) |
| The type of reaction, including reaction rate information. | |
| int32_t | rxn_usesThirdBody (int32_t handle) |
| Check whether reaction involves third body collider. | |
| int32_t | rxn_valid (int32_t handle) |
| Get validity flag of reaction. | |
| int32_t | rxn_id (int32_t handle, int32_t bufLen, char *buf) |
| An identification string for the reaction, used in some filtering operations. | |
| int32_t | rxn_setId (int32_t handle, const char *id) |
| An identification string for the reaction, used in some filtering operations. | |
| int32_t | rxn_allowNonreactantOrders (int32_t handle) |
| True if reaction orders can be specified for non-reactant species. | |
| int32_t | rxn_setAllowNonreactantOrders (int32_t handle, int32_t allow_nonreactant_orders) |
| True if reaction orders can be specified for non-reactant species. | |
| int32_t | rxn_del (int32_t handle) |
| Delete Reaction object. | |
| int32_t | rxn_cabinetSize () |
| Return size of Reaction storage. | |
| int32_t rxn_new | ( | ) |
| int32_t rxn_equation | ( | int32_t | handle, |
| int32_t | bufLen, | ||
| char * | buf ) |
The chemical equation for this reaction.
Wraps C++ getter: string Reaction::equation()
| handle | Handle to queried Reaction object. | |
| [in] | bufLen | Length of reserved array. |
| [out] | buf | Returned string value. |
| int32_t rxn_type | ( | int32_t | handle, |
| int32_t | bufLen, | ||
| char * | buf ) |
The type of reaction, including reaction rate information.
Wraps C++ getter: string Reaction::type()
| handle | Handle to queried Reaction object. | |
| [in] | bufLen | Length of reserved array. |
| [out] | buf | Returned string value. |
| int32_t rxn_usesThirdBody | ( | int32_t | handle | ) |
| int32_t rxn_valid | ( | int32_t | handle | ) |
| int32_t rxn_id | ( | int32_t | handle, |
| int32_t | bufLen, | ||
| char * | buf ) |
An identification string for the reaction, used in some filtering operations.
Wraps C++ variable-getter: string Reaction::id
| handle | Handle to queried Reaction object. | |
| [in] | bufLen | Length of reserved array. |
| [out] | buf | Returned string value. |
| int32_t rxn_setId | ( | int32_t | handle, |
| const char * | id ) |
An identification string for the reaction, used in some filtering operations.
Wraps C++ variable-setter: string Reaction::id
| handle | Handle to queried Reaction object. | |
| [in] | id | An identification string for the reaction, used in some filtering operations. |
| int32_t rxn_allowNonreactantOrders | ( | int32_t | handle | ) |
| int32_t rxn_setAllowNonreactantOrders | ( | int32_t | handle, |
| int32_t | allow_nonreactant_orders ) |
True if reaction orders can be specified for non-reactant species.
Wraps C++ variable-setter: bool Reaction::allow_nonreactant_orders
| handle | Handle to queried Reaction object. | |
| [in] | allow_nonreactant_orders | True if reaction orders can be specified for non-reactant species. |
| int32_t rxn_del | ( | int32_t | handle | ) |