mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
20 lines
514 B
C
20 lines
514 B
C
#ifndef FEADAPTOR_HEADER
|
|
#define FEADAPTOR_HEADER
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
void CatalystInitialize(int numScripts, char* scripts[]);
|
|
|
|
void CatalystFinalize();
|
|
|
|
void CatalystCoProcess(unsigned int numberOfPoints, double* pointsData,
|
|
unsigned int numberOfCells, unsigned int* cellsDAta,
|
|
double* velocityData, float* pressureData, double time,
|
|
unsigned int timeStep, int lastTimeStep);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|