Peka2D_v5  v5.0
writeInOut.h
Go to the documentation of this file.
1 #include "define.h"
2 #include "structs.h"
3 #include "utilities.h"
4 
5 EXPORT_DLL void Notify(char *msg, int type, t_message *e);
6 
7 EXPORT_DLL int write_vtk_mesh(char *filename, t_mesh *mesh, t_message *msg);
8 
10 
11 EXPORT_DLL int write_massBalance(char *path, t_arrays *arrays, t_message *msg);
12 
13 EXPORT_DLL int write_timers(char *path, t_timers timers, t_message *msg);
14 
16 
17 EXPORT_DLL int write_vtk_state(char *filename, t_mesh *mesh, t_arrays *arrays, t_message *msg);
18 
20 
22 
23 EXPORT_DLL void write_Dscalar_in_vtk(FILE *fp, double val);
24 
25 EXPORT_DLL void write_Iscalar_in_vtk(FILE *fp, int val);
26 
27 EXPORT_DLL void write_Dvector_in_vtk(FILE *fp, double val1, double val2);
#define EXPORT_DLL
Definition: define.h:80
t_message * msg
Definition: peka2d.cpp:41
t_mesh * mesh
Definition: peka2d.cpp:42
Arrange all the domain parameters, run controls and data arrays required for computation.
Definition: structs.h:336
Geometrical mesh and flow data.
Definition: structs.h:82
Compilation and execution messages.
Definition: structs.h:41
Timers for accounting computational time.
Definition: structs.h:564
EXPORT_DLL int write_vtk_mesh(char *filename, t_mesh *mesh, t_message *msg)
Definition: writeInOut.cpp:92
EXPORT_DLL int write_timers(char *path, t_timers timers, t_message *msg)
Definition: writeInOut.cpp:236
EXPORT_DLL void dump_screen_info(t_arrays *arrays, t_message *msg)
Definition: writeInOut.cpp:270
EXPORT_DLL void Notify(char *msg, int type, t_message *e)
Definition: writeInOut.cpp:4
EXPORT_DLL int write_mesh_structure_in_vtk_ascii(FILE *fp, t_mesh *mesh)
Definition: writeInOut.cpp:435
EXPORT_DLL int create_computation_files(char *path, t_message *msg)
Definition: writeInOut.cpp:196
EXPORT_DLL void write_Dvector_in_vtk(FILE *fp, double val1, double val2)
Definition: writeInOut.cpp:504
EXPORT_DLL int write_massBalance(char *path, t_arrays *arrays, t_message *msg)
Definition: writeInOut.cpp:210
EXPORT_DLL void write_Iscalar_in_vtk(FILE *fp, int val)
Definition: writeInOut.cpp:489
EXPORT_DLL int write_vtk_state(char *filename, t_mesh *mesh, t_arrays *arrays, t_message *msg)
Definition: writeInOut.cpp:292
EXPORT_DLL int write_mesh_structure_in_vtk_binary(FILE *fp, t_mesh *mesh)
Definition: writeInOut.cpp:374
EXPORT_DLL void write_Dscalar_in_vtk(FILE *fp, double val)
Definition: writeInOut.cpp:475