Isis 3 Programmer Reference
NumericalAtmosApprox.h
1 #ifndef NUMERICALATMOSAPPROX_H
2 #define NUMERICALATMOSAPPROX_H
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 #include <string>
10 #include <vector>
11 
12 #include "NumericalApproximation.h"
13 using namespace std;
14 namespace Isis {
15  class AtmosModel;
33  public:
37  virtual ~NumericalAtmosApprox() {};
38 
44  InnerFunction
45  };
46  double RombergsMethod(AtmosModel *am, IntegFunc sub, double a, double b);
47  double RefineExtendedTrap(AtmosModel *am, IntegFunc sub, double a, double b, double s, unsigned int n);
48 
49  static double OutrFunc2Bint(AtmosModel *am, double phi);
50  static double InrFunc2Bint(AtmosModel *am, double mu);
51 
52  };
53 };
54 #endif
55 
56 
Isis::NumericalAtmosApprox::IntegFunc
IntegFunc
This enum defines function to be integrated by Romberg's method.
Definition: NumericalAtmosApprox.h:43
Isis::NumericalAtmosApprox::NumericalAtmosApprox
NumericalAtmosApprox(const NumericalApproximation::InterpType &itype=CubicNatural)
Uses Isis::NumericalApproximation constructor.
Definition: NumericalAtmosApprox.h:35
Isis::NumericalAtmosApprox
This class extends Isis::NumericalApproximation.
Definition: NumericalAtmosApprox.h:32
Isis::AtmosModel
Isotropic atmos scattering model.
Definition: AtmosModel.h:60
Isis::NumericalAtmosApprox::~NumericalAtmosApprox
virtual ~NumericalAtmosApprox()
Empty destructor.
Definition: NumericalAtmosApprox.h:37
std
Namespace for the standard library.
Isis::NumericalApproximation::InterpType
InterpType
This enum defines the types of interpolation supported in this class.
Definition: NumericalApproximation.h:731
Isis::NumericalAtmosApprox::OuterFunction
@ OuterFunction
Indicates that Romberg's method will integrate the function OutrFunc2Bint()
Definition: NumericalAtmosApprox.h:43
Isis::NumericalApproximation
NumericalApproximation provides various numerical analysis methods of interpolation,...
Definition: NumericalApproximation.h:726
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16