Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef ensightOutputFunctions_H
00033 #define ensightOutputFunctions_H
00034
00035 #include <conversion/ensightFile.H>
00036 #include <lagrangian/Cloud.H>
00037 #include <OpenFOAM/polyMesh.H>
00038 #include <OpenFOAM/IOobject.H>
00039
00040 namespace Foam
00041 {
00042
00043
00044
00045 void ensightCaseEntry
00046 (
00047 OFstream& caseFile,
00048 const string& ensightType,
00049 const word& fieldName,
00050 const fileName& dataMask,
00051 const fileName& local=fileName::null,
00052 const label cloudNo=-1,
00053 const label timeSet=1
00054 );
00055
00056
00057 void ensightParticlePositions
00058 (
00059 const polyMesh& mesh,
00060 const fileName& dataDir,
00061 const fileName& subDir,
00062 const word& cloudName,
00063 IOstream::streamFormat format
00064 );
00065
00066
00067
00068 template<class Type>
00069 void ensightLagrangianField
00070 (
00071 const IOobject& fieldObject,
00072 const fileName& dataDir,
00073 const fileName& subDir,
00074 const word& cloudName,
00075 IOstream::streamFormat format
00076 );
00077
00078
00079 template<class Type>
00080 void ensightVolField
00081 (
00082 const ensightParts& partsList,
00083 const IOobject& fieldObject,
00084 const fvMesh& mesh,
00085 const fileName& dataDir,
00086 const fileName& subDir,
00087 IOstream::streamFormat format
00088 );
00089
00090
00091
00092 }
00093
00094 #ifdef NoRepository
00095 # include "ensightOutputFunctions.C"
00096 #endif
00097
00098
00099
00100 #endif
00101
00102