123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
-
-
-
-
-
-
- #ifndef EARTHMODEL_INC
- #define EARTHMODEL_INC
-
- #include "LemmaObject.h"
-
- namespace Lemma {
-
-
-
-
-
-
- class EarthModel : public LemmaObject {
-
-
- friend std::ostream &operator<<(std::ostream &stream,
- const EarthModel &ob);
-
- public:
-
-
-
-
- YAML::Node Serialize() const;
-
-
-
-
-
-
-
-
-
-
- void SetMagneticFieldComponents(const Vector3r &bfield,
- const MAGUNITS &unit);
-
-
-
-
-
-
-
-
-
-
-
-
- void SetMagneticFieldIncDecMag(const Real& inc, const Real&dec,
- const Real& Mag, const MAGUNITS &unit);
-
-
-
-
- Vector3r GetMagneticField( );
-
-
- Vector3r GetMagneticFieldInGauss( );
-
-
- Vector3r GetMagneticFieldUnitVector( );
-
-
-
- Real GetMagneticFieldMagnitude();
-
-
-
- Real GetMagneticFieldMagnitudeInGauss( );
-
-
- virtual inline std::string GetName() const {
- return this->CName;
- }
-
- protected:
-
-
-
-
- EarthModel ( );
-
-
- EarthModel (const YAML::Node& node);
-
-
- ~EarthModel ();
-
-
-
- private:
-
-
- static constexpr auto CName = "EarthModel";
-
-
- Vector3r BField;
-
-
- Vector3r BFieldUnit;
-
-
- Real BInc;
-
-
- Real BDec;
-
-
- Real BMag;
-
- };
-
-
-
-
-
-
- class NullEarth : public std::runtime_error {
-
-
- public: NullEarth ();
- };
-
- }
-
- #endif
|