SOLARPROP  1.0
 All Classes Functions Variables
potgieterMoraal.h
1 /*
2  * potgieterMoraal.h
3  *
4  * Author: kappl
5  */
6 
7 #ifndef POTGIETERMORAAL_H_
8 #define POTGIETERMORAAL_H_
9 
10 #include "particle.h"
11 
15 class PotgieterMoraal : public Particle
16 {
17  private:
18  double getf() const;
19  double getfprime() const;
20  double getalphaH() const;
21  double getKappaParallel() const;
22  double getKappaRR() const;
23 
24  double getDriftR() const;
25  double getDriftTheta() const;
26  double getDriftSheetR() const;
27 
28  double getDeltaR(Random&) const;
29  double getDeltaTheta(Random&) const;
30 
31  void calculate();
32 
33  public:
35  virtual ~PotgieterMoraal();
36 
37  double getISFlux(int) const;
38 };
39 
40 #endif /* POTGIETER_MORAAL_H_ */