Aether  0.0
Ionosphere-Thermosphere model
arm_vars.h
1 // (c) 2020, the Aether Development Team (see doc/dev_team.md for members)
2 // Full license can be found in License.md
3 
4 #ifndef AETHER_EDU_ARM_VARS_H_
5 #define AETHER_EDU_ARM_VARS_H_
6 
7 #include <armadillo>
8 
9 using namespace arma;
10 
11 class Grid {
12 
13  public:
14 
15  Grid(int nX, int nY, int nZ);
16 
17  void set_radius(float planet_radius, fcube alts3d);
18  fcube get_radius();
19 
20  private:
21 
22  fcube radius3d;
23  std::vector<fcube> gravity3dv;
24 
25 };
26 
27 #endif // AETHER_EDU_ARM_VARS_H_
28 
Grid
Definition: arm_vars.h:11