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.
19 lines
459 B
C
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
|