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.
rkMaxwell.h
1 //
2 // Created by milinda on 1/30/17.
3 //
4 
21 #ifndef SFCSORTBENCH_RKMAXWELL_H
22 #define SFCSORTBENCH_RKMAXWELL_H
23 
24 #include "rk.h"
25 
26 namespace ode
27 {
28  namespace solver
29  {
30 
31  class RK45Maxwell : public RK
32  {
33 
34  private :
36 
37  double * m_uiA_x;
39  double * m_uiA_y;
41  double * m_uiA_z;
42 
43 
45  double * m_uiE_x;
47  double * m_uiE_y;
49  double * m_uiE_z;
50 
52  double * m_uiGamma;
53 
55  double * m_uiPhi;
56 
57 
58  public :
60  RK45Maxwell(ot::Mesh * pMesh,double pTBegin,double pTEnd,double pTh);
61 
63  ~RK45Maxwell();
64 
67 
70 
71 
72 
73  };
74 
75 
76  } // end of namespace solver
77 
78 }//end of namespace ode
79 
80 
81 #endif //SFCSORTBENCH_RKMAXWELL_H
void applyBoundaryConditions()
Definition: rkMaxwell.cpp:58
Definition: rkMaxwell.h:31
Definition: rk.h:21
~RK45Maxwell()
Definition: rkMaxwell.cpp:66
Definition: mesh.h:179
This file contains the base class for the Rungge-Kutta 45 Method.
Definition: rk4nlsm.h:33
RK45Maxwell(ot::Mesh *pMesh, double pTBegin, double pTEnd, double pTh)
Definition: rkMaxwell.cpp:28
void performSingleInteration()
Definition: rkMaxwell.cpp:45