Isis Developer Reference
Isotropic2.h
Go to the documentation of this file.
1 #ifndef Isotropic2_h
2 #define Isotropic2_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "AtmosModel.h"
11 
12 namespace Isis {
13  class Pvl;
14 
40  class Isotropic2 : public AtmosModel {
41  public:
42  Isotropic2(Pvl &pvl, PhotoModel &pmodel);
43  virtual ~Isotropic2() {};
44 
45  protected:
46  virtual void AtmosModelAlgorithm(double phase, double incidence, double emission);
47 
48  private:
49  double p_delta;
50  double p_fixcon;
51  double p_gammax, p_gammay;
52  double p_wha2;
53  double p_e1, p_e1_2, p_e2, p_e3, p_e4, p_e5;
54  double p_em;
55  double p_f1m, p_f2m, p_f3m, p_f4m;
56  double p_g12, p_g13, p_g14;
57  double p_e;
58  double p_f1, p_f2, p_f3, p_f4;
59  double p_g11p, p_g12p, p_g13p, p_g14p;
60  double p_x0, p_y0;
61  double p_alpha0, p_alpha1, p_alpha2;
62  double p_beta0, p_beta1, p_beta2;
63  };
64 };
65 
66 #endif
Isis::Isotropic2
Definition: Isotropic2.h:40
Isis::AtmosModel::TauOrWhaChanged
bool TauOrWhaChanged() const
Checks whether tau or wha have changed.
Definition: AtmosModel.cpp:954
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::PI
const double PI
The mathematical constant PI.
Definition: Constants.h:40
Isis::AtmosModel::p_pstd
double p_pstd
Pure atmospheric-scattering term.
Definition: AtmosModel.h:258
AtmosModel.h
Isis::AtmosModel::En
static double En(unsigned int n, double x)
This routine evaluates the generalized exponential integral, En(x).
Definition: AtmosModel.cpp:370
Isis::IException::Unknown
@ Unknown
A type of error that cannot be classified as any of the other error types.
Definition: IException.h:118
PvlGroup.h
Isotropic2.h
Isis::AtmosModel::Eulgam
double Eulgam() const
Definition: AtmosModel.h:244
Isis::AtmosModel
Isotropic atmos scattering model.
Definition: AtmosModel.h:60
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
IString.h
Isis::AtmosModel::p_trans
double p_trans
Transmission of surface reflected light through the atmosphere overall.
Definition: AtmosModel.h:259
Isis::Isotropic2::Isotropic2
Isotropic2(Pvl &pvl, PhotoModel &pmodel)
Definition: Isotropic2.cpp:19
Pvl.h
_FILEINFO_
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
Isis::AtmosModel::p_transs
double p_transs
Transmission of light that must be subtracted from the flat surface model to get the shadow model.
Definition: AtmosModel.h:261
Isis::IException
Isis exception class.
Definition: IException.h:91
Isis::AtmosModel::p_atmosTau
double p_atmosTau
Definition: AtmosModel.h:264
Isis::AtmosModel::p_atmosHnorm
double p_atmosHnorm
Atmospheric shell thickness normalized to planet radius.
Definition: AtmosModel.h:267
IException.h
Isis::Isotropic2::AtmosModelAlgorithm
virtual void AtmosModelAlgorithm(double phase, double incidence, double emission)
Isotropic atmospheric scattering in the first approximation The model for scattering for a general,...
Definition: Isotropic2.cpp:63
Isis::AtmosModel::SetOldTau
void SetOldTau(double tau)
Definition: AtmosModel.h:230
Isis::AtmosModel::SetOldWha
void SetOldWha(double wha)
Definition: AtmosModel.h:233
Isis::Isotropic2::~Isotropic2
virtual ~Isotropic2()
Definition: Isotropic2.h:43
Isis::AtmosModel::Ei
static double Ei(double x)
This routine computes the exponential integral, Ei(x).
Definition: AtmosModel.cpp:229
Isis::AtmosModel::G11Prime
static double G11Prime(double tau)
Perform Chandra and Van de Hulst's series approximation for the g'11 function needed in second order ...
Definition: AtmosModel.cpp:153
Isis::AtmosModel::p_sbar
double p_sbar
Illumination of the ground by the sky.
Definition: AtmosModel.h:262
Isis::AtmosModel::p_atmosWha
double p_atmosWha
Definition: AtmosModel.h:265
Isis::AtmosModel::p_trans0
double p_trans0
Transmission of surface reflected light through the atmosphere with no scatterings in the atmosphere.
Definition: AtmosModel.h:260
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isotropic2Plugin
Isis::AtmosModel * Isotropic2Plugin(Isis::Pvl &pvl, Isis::PhotoModel &pmodel)
Definition: Isotropic2.cpp:267