17 lines
462 B
C
Executable file
17 lines
462 B
C
Executable file
/**
|
|
* @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 "kernel/TransportFactory.h"
|
|
#include "kernel/DustyGasTransport.h"
|
|
#include "kernel/MultiTransport.h"
|
|
#include "kernel/MixTransport.h"
|
|
#include "kernel/LiquidTransport.h"
|
|
#endif
|