Dendro  5.01
Dendro in Greek language means tree. The Dendro library is a large scale (262K cores on ORNL's Titan) distributed memory adaptive octree framework. The main goal of Dendro is to perform large scale multiphysics simulations efficeiently in mordern supercomputers. Dendro consists of efficient parallel data structures and algorithms to perform variational ( finite element) methods and finite difference mthods on 2:1 balanced arbitary adaptive octrees which enables the users to perform simulations raning from black holes (binary black hole mergers) to blood flow in human body, where applications ranging from relativity, astrophysics to biomedical engineering.
rawIO.h
1 //
2 // Created by milinda on 12/12/18.
3 //
4 
10 #ifndef DENDRO_5_0_RAWIO_H
11 #define DENDRO_5_0_RAWIO_H
12 
13 #include <iostream>
14 #include "mesh.h"
15 #include <fstream>
16 #include <TreeNode.h>
17 
18 
19 namespace io
20 {
21  template <typename T>
22  void varToRawData(const ot::Mesh* pMesh, const T** vars, unsigned int numVars,const char** varNames=NULL,const char* fPrefix="dendro_raw");
23 }// end of namespace io
24 
25 
26 #include "rawIO.tcc"
27 
28 
29 #endif //DENDRO_5_0_RAWIO_H
Definition: mesh.h:179
contains functions to dump out raw data asci/binary. Can be useful for debugging purposes.
Definition: rawIO.h:19