cantera/include/cantera/onedim.h
Ray Speth 14b9454819 [C++] Clean up of top-level headers
These headers should only include general functionality, i.e. base classes and
factory methods. Users working directly with derived types can include the
relevant headers directly.

Deprecate some top-level headers which are not really useful.
2016-05-14 16:10:10 -04:00

19 lines
459 B
C

//! @file onedim.h
/*!
* @defgroup onedim One-Dimensional Reacting Flows
*
* These classes comprise Cantera's ability to solve steady-state one-
* dimensional reacting flow problems, such as laminar flames, opposed flow
* diffusion flames, and stagnation flow chemical vapor deposition.
*/
#ifndef CT_INCL_ONEDIM_H
#define CT_INCL_ONEDIM_H
#include "oneD/Sim1D.h"
#include "oneD/Domain1D.h"
#include "oneD/Inlet1D.h"
#include "oneD/StFlow.h"
#endif