123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
-
-
-
-
-
-
- #ifndef _INVERSESOLVERTEM1D__H
- #define _INVERSESOLVERTEM1D__H
-
- #include "inversesolver.h"
- #include "layeredearthem.h"
- #include "WireAntenna.h"
- #include "dipolesource.h"
- #include "receiverpoints.h"
- #include "instrumenttem.h"
- #include "cg.h"
-
- namespace Lemma {
-
-
-
-
-
- class InverseSolverTEM1D : public InverseSolver {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const InverseSolverTEM1D &ob);
-
- public:
-
-
-
- static InverseSolverTEM1D* New();
-
- void Delete();
-
-
-
-
-
-
- void Calculate();
-
-
-
-
- void AttachStartMod(LayeredEarthEM* inpstartmod);
-
-
- void AttachRecMod(LayeredEarthEM* inprecmod);
-
-
- void AttachWireAntenna(WireAntenna* inpwireantenna);
-
-
- void AttachDipoleSource(DipoleSource* inpdipsource);
-
-
- void AttachReceiver(ReceiverPoints* inpreceiver);
-
-
- void SetTimes(VectorXr &inptimes);
-
-
- void ShowSoln();
-
-
- void WriteSoln(const std::string &filename);
-
-
- void SetFreeParams(const VectorXi &layers, const VectorXi &cond);
-
-
- void AttachMeasuredData(const MatrixXr &data);
-
-
-
- int NumberOfIterations();
-
-
- bool Success();
-
-
- VectorXr GetPhiMVector();
-
-
- VectorXr GetPhiDVector();
-
-
- protected:
-
-
- void FillInG(const Vector3r& pos, const Vector3r& step);
-
-
- MatrixXr CalcJac(LayeredEarthEM* m0);
-
-
-
-
- InverseSolverTEM1D (const std::string &name);
-
-
- ~InverseSolverTEM1D ();
-
- void Release();
-
-
-
- WireAntenna* Antenna;
-
- DipoleSource* Dipole;
-
- ReceiverPoints* Receiver;
-
- LayeredEarthEM* StartingMod;
-
- LayeredEarthEM* RecoveredMod;
-
- InstrumentTem *InstrumentFor;
-
- MatrixXr MeasuredData;
-
- VectorXr Times;
-
-
- VectorXi SCondIndex;
-
-
- VectorXi SThickIndex;
-
-
- VectorXr RecModStep;
-
- private:
-
- };
- }
- #endif
|