VERB_code_2.2  2
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
AdditionalSourcesAndLosses.h
Go to the documentation of this file.
1 /**
2  * \file SourcesAndLosses.h
3  * Sources and losses calculation
4  *
5  * \author Developed under supervision of the PI Yuri Shprits
6  */
7 
8 // Additional Sources or Losses (
9 /// \todo Move loss cone losses to the rest of the sources and losses
10 // Well... It needs to be 4D array, so it's 1d array of 3d arrays.
11 
12 #ifndef SourcesAndLosses_H
13 #define SourcesAndLosses_H
14 
15 #include "../Matrix/Matrix.h"
16 #include "../Parameters/Parameters.h"
17 #include "../Grid/Grid.h"
18 
19 class AdditionalSourcesAndLosses : public Matrix3D<double> {
20 public:
21 
22  void Update(){};
23  void Create_SL(Parameters_structure::SL_structure, Grid &grid, int numberOfIterations, double timeStep);
24 
25 };
26 
27 
28 #endif