mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
[samples] Introduce cantera/core.h header
This commit is contained in:
committed by
Bryan Weber
parent
7de930701a
commit
b228a517e7
18
include/cantera/core.h
Normal file
18
include/cantera/core.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @file core.h
|
||||
*
|
||||
* Support for Cantera core calculations from C++ application programs. This
|
||||
* header file includes a minimal set of headers needed to create and use objects
|
||||
* that evaluate thermo properties, chemical kinetics and transport properties.
|
||||
*/
|
||||
|
||||
#ifndef CT_INCL_CORE_H
|
||||
#define CT_INCL_CORE_H
|
||||
|
||||
// #include "cantera/base/global.h"
|
||||
#include "cantera/base/Solution.h"
|
||||
#include "cantera/thermo/ThermoPhase.h"
|
||||
#include "cantera/kinetics/Kinetics.h"
|
||||
#include "cantera/transport/TransportBase.h"
|
||||
|
||||
#endif
|
||||
@@ -11,6 +11,9 @@
|
||||
#ifndef CT_INCL_ONEDIM_H
|
||||
#define CT_INCL_ONEDIM_H
|
||||
|
||||
// Cantera core
|
||||
#include "cantera/core.h"
|
||||
|
||||
#include "oneD/Sim1D.h"
|
||||
#include "oneD/Domain1D.h"
|
||||
#include "oneD/Boundary1D.h"
|
||||
|
||||
@@ -6,6 +6,9 @@
|
||||
#ifndef CT_INCL_ZERODIM_H
|
||||
#define CT_INCL_ZERODIM_H
|
||||
|
||||
// Cantera core
|
||||
#include "cantera/core.h"
|
||||
|
||||
// reactor network
|
||||
#include "cantera/zeroD/ReactorNet.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user