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.
heatVec.h
1 //
2 // Created by milinda on 11/22/18.
3 //
4 
5 #ifndef DENDRO_5_0_HEATVEC_H
6 #define DENDRO_5_0_HEATVEC_H
7 
8 #include "oda.h"
9 #include "feVector.h"
10 
11 namespace HeatEq
12 {
13  class HeatVec : public feVector<HeatVec>{
14 
15  private:
16 
17  double * imV1;
18  double * imV2;
19 
20  public:
21  HeatVec(ot::DA* da,unsigned int dof=1);
22  ~HeatVec();
23 
25  virtual void elementalComputVec(const VECType* in,VECType* out, double*coords=NULL,double scale=1.0);
26 
27 
28  bool preComputeVec(const VECType* in,VECType* out, double scale=1.0);
29 
30  bool postComputeVec(const VECType* in,VECType* out, double scale=1.0);
31 
33  double gridX_to_X(double x);
35  double gridY_to_Y(double y);
37  double gridZ_to_Z(double z);
38 
39 
40 
41  };
42 }
43 
44 
45 
46 #endif //DENDRO_5_0_HEATVEC_H
Definition: heatMat.h:11
class that derived from abstract class feMat RHS computation of the weak formulation ...
Definition: feVector.h:16
virtual void elementalComputVec(const VECType *in, VECType *out, double *coords=NULL, double scale=1.0)
Definition: heatVec.cpp:26
double gridX_to_X(double x)
octree grid x to domin x
Definition: heatVec.cpp:113
double gridZ_to_Z(double z)
octree grid z to domin z
Definition: heatVec.cpp:126
Definition: oda.h:125
Definition: heatVec.h:13
The class that manages the octree mesh that support FEM computations. Note that this file is a refact...
double gridY_to_Y(double y)
octree grid y to domin y
Definition: heatVec.cpp:119