19 lines
563 B
C
19 lines
563 B
C
/**
|
|
* @file transport.h
|
|
*
|
|
* Support for transport property calculation from C++ application programs.
|
|
* This header file includes several headers from the Cantera kernel needed
|
|
* to evaluate transport properties.
|
|
*/
|
|
|
|
#ifndef CT_TRANSPORT_INCL
|
|
#define CT_TRANSPORT_INCL
|
|
|
|
#include "transport/TransportFactory.h"
|
|
#include "transport/DustyGasTransport.h"
|
|
#include "transport/MultiTransport.h"
|
|
#include "transport/MixTransport.h"
|
|
#include "transport/PecosTransport.h"
|
|
#include "transport/LiquidTransport.h"
|
|
#include "transport/HighPressureGasTransport.h"
|
|
#endif
|