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.
daUtils.h
1 //
2 // Created by milinda on 4/27/18.
3 //
10 #ifndef SFCSORTBENCH_DAUTILS_H
11 #define SFCSORTBENCH_DAUTILS_H
12 
13 #include "mesh.h"
14 #include <iostream>
15 
16 
17 namespace ot
18 {
19  namespace da
20  {
21 
32  template <typename T>
33  T lagrangeInterpElementToCoord(const ot::Mesh * mesh,const T* in,double * coord,unsigned int elementID,unsigned int interpOrder);
34 
35 
46  template<typename T, typename CoordT>
47  void interpolateToCoords(const ot::Mesh * mesh, const T* in, const CoordT* coords,unsigned int length,T* out,std::vector<unsigned int >& validIndices);
48 
49  } // end of namespace da
50 }// end of namespace ot
51 
52 
53 #include "daUtils.tcc"
54 
55 #endif //SFCSORTBENCH_DAUTILS_H
Simple class to manage async data transfer in the ODA class.
Definition: asyncExchangeContex.h:16
Definition: mesh.h:179