Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
tecwrap.C File Reference
#include <string>
#include "TECIO.h"
Include dependency graph for tecwrap.C:

Go to the source code of this file.

Functions

int TECINI100 (char *Title, char *Variables, char *FName, char *ScratchDir, int *Debug, int *VIsDouble, int TitleLen, int VariablesLen, int FNameLen, int ScratchDirLen)
 
int TECINI100_ (char *Title, char *Variables, char *FName, char *ScratchDir, int *Debug, int *VIsDouble, int TitleLen, int VariablesLen, int FNameLen, int ScratchDirLen)
 
int TECZNE100 (char *ZoneTitle, int *ZoneType, int *IMxOrNumPts, int *JMxOrNumElements, int *KMx, int *ICellMx, int *JCellMx, int *KCellMx, int *IsBlock, int *NumFaceConnections, int *FaceNeighborMode, int *ValueLocation, int *ShareVarFromZone, int *ShareConnectivityFromZone, int ZoneTitleLen)
 
int TECZNE100_ (char *ZoneTitle, int *ZoneType, int *IMxOrNumPts, int *JMxOrNumElements, int *KMx, int *ICellMx, int *JCellMx, int *KCellMx, int *IsBlock, int *NumFaceConnections, int *FaceNeighborMode, int *ValueLocation, int *ShareVarFromZone, int *ShareConnectivityFromZone, int ZoneTitleLen)
 
int TECDAT100 (int *N, void *FieldData, int *IsDouble)
 
int TECDAT100_ (int *N, void *FieldData, int *IsDouble)
 
int TECNOD100 (int *NData)
 
int TECNOD100_ (int *NData)
 
int TECEND100 (void)
 
int TECEND100_ (void)
 
int TECFIL100 (int *F)
 
int TECFIL100_ (int *F)
 

Function Documentation

int TECDAT100 ( int *  N,
void *  FieldData,
int *  IsDouble 
)

Definition at line 243 of file tecwrap.C.

245  {
246 
247  return (tecdat100(N,
248  FieldData,
249  IsDouble));
250 }
int TECDAT100_ ( int *  N,
void *  FieldData,
int *  IsDouble 
)

Definition at line 252 of file tecwrap.C.

254  {
255 
256  return (tecdat100(N,
257  FieldData,
258  IsDouble));
259 }
int TECEND100 ( void  )

Definition at line 281 of file tecwrap.C.

281  {
282 
283  return(tecend100());
284 
285 }
int TECEND100_ ( void  )

Definition at line 287 of file tecwrap.C.

287  {
288 
289  return(tecend100());
290 
291 }
int TECFIL100 ( int *  F)

Definition at line 298 of file tecwrap.C.

298  {
299 
300  return(tecfil100(F));
301 
302 }
int TECFIL100_ ( int *  F)

Definition at line 304 of file tecwrap.C.

304  {
305 
306  return(tecfil100(F));
307 
308 }
int TECINI100 ( char *  Title,
char *  Variables,
char *  FName,
char *  ScratchDir,
int *  Debug,
int *  VIsDouble,
int  TitleLen,
int  VariablesLen,
int  FNameLen,
int  ScratchDirLen 
)

Definition at line 118 of file tecwrap.C.

127  {
128 
129  string TitleS(Title,TitleLen);
130  string VariablesS(Variables,VariablesLen);
131  string FNameS(FName,FNameLen);
132  string ScratchDirS(ScratchDir,ScratchDirLen);
133 
134  return (tecini100((char *)TitleS.c_str(),
135  (char *)VariablesS.c_str(),
136  (char *)FNameS.c_str(),
137  (char *)ScratchDirS.c_str(),
138  Debug,
139  VIsDouble));
140 }
int TECINI100_ ( char *  Title,
char *  Variables,
char *  FName,
char *  ScratchDir,
int *  Debug,
int *  VIsDouble,
int  TitleLen,
int  VariablesLen,
int  FNameLen,
int  ScratchDirLen 
)

Definition at line 142 of file tecwrap.C.

151  {
152 
153  string TitleS(Title,TitleLen);
154  string VariablesS(Variables,VariablesLen);
155  string FNameS(FName,FNameLen);
156  string ScratchDirS(ScratchDir,ScratchDirLen);
157 
158  return (tecini100((char *)TitleS.c_str(),
159  (char *)VariablesS.c_str(),
160  (char *)FNameS.c_str(),
161  (char *)ScratchDirS.c_str(),
162  Debug,
163  VIsDouble));
164 }
int TECNOD100 ( int *  NData)

Definition at line 265 of file tecwrap.C.

265  {
266 
267  return(tecnod100(NData));
268 
269 }
int TECNOD100_ ( int *  NData)

Definition at line 271 of file tecwrap.C.

271  {
272 
273  return(tecnod100(NData));
274 
275 }
int TECZNE100 ( char *  ZoneTitle,
int *  ZoneType,
int *  IMxOrNumPts,
int *  JMxOrNumElements,
int *  KMx,
int *  ICellMx,
int *  JCellMx,
int *  KCellMx,
int *  IsBlock,
int *  NumFaceConnections,
int *  FaceNeighborMode,
int *  ValueLocation,
int *  ShareVarFromZone,
int *  ShareConnectivityFromZone,
int  ZoneTitleLen 
)

Definition at line 170 of file tecwrap.C.

184  {
185 
186  string ZoneTitleS(ZoneTitle,ZoneTitleLen);
187 
188  return (teczne100((char *)ZoneTitle,
189  ZoneType,
190  IMxOrNumPts,
191  JMxOrNumElements,
192  KMx,
193  ICellMx,
194  JCellMx,
195  KCellMx,
196  IsBlock,
197  NumFaceConnections,
198  FaceNeighborMode,
199  ValueLocation,
200  ShareVarFromZone,
201  ShareConnectivityFromZone));
202 
203 }
int TECZNE100_ ( char *  ZoneTitle,
int *  ZoneType,
int *  IMxOrNumPts,
int *  JMxOrNumElements,
int *  KMx,
int *  ICellMx,
int *  JCellMx,
int *  KCellMx,
int *  IsBlock,
int *  NumFaceConnections,
int *  FaceNeighborMode,
int *  ValueLocation,
int *  ShareVarFromZone,
int *  ShareConnectivityFromZone,
int  ZoneTitleLen 
)

Definition at line 205 of file tecwrap.C.

219  {
220 
221  string ZoneTitleS(ZoneTitle,ZoneTitleLen);
222 
223  return (teczne100((char *)ZoneTitle,
224  ZoneType,
225  IMxOrNumPts,
226  JMxOrNumElements,
227  KMx,
228  ICellMx,
229  JCellMx,
230  KCellMx,
231  IsBlock,
232  NumFaceConnections,
233  FaceNeighborMode,
234  ValueLocation,
235  ShareVarFromZone,
236  ShareConnectivityFromZone));
237 }