123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
-
-
-
-
-
-
- #ifndef __INSTRUMENTFEM_H
- #define __INSTRUMENTFEM_H
-
- #include "instrument.h"
- #include "emearth1d.h"
- #include "WireAntenna.h"
- #include "PolygonalWireAntenna.h"
- #include "receiverpoints.h"
- #include "dipolesource.h"
- #include "layeredearthem.h"
- #include "datafem.h"
-
- namespace Lemma {
-
-
-
-
-
-
- class InstrumentFem : public Instrument {
- friend std::ostream &operator<<(std::ostream &stream,
- const InstrumentFem &ob);
-
-
- public:
-
-
-
- static InstrumentFem* New();
-
- void Delete();
-
-
-
-
-
-
- void MakeCalculation();
-
-
- void ForwardModelProfile();
-
-
-
-
- void EMEarthModel(LayeredEarthEM* Earth);
-
-
- void SetDipoleSource(DipoleSource* dipolesource);
-
-
- void SetReceiverPoints(ReceiverPoints* receiver);
-
-
- void AlignWithData(DataFEM* inpdata);
-
-
- void SetOutputData(DataFEM* outputdata);
-
-
-
-
-
-
- protected:
-
-
-
-
- InstrumentFem (const std::string &name);
-
-
- ~InstrumentFem ();
-
- void Release();
-
-
-
- LayeredEarthEM* EarthModel;
-
- DipoleSource* Dipole;
-
- ReceiverPoints* Receiver;
-
- DataFEM* InputData;
-
- DataFEM* OutputData;
-
-
- std::vector<DipoleSource*> Transmitters;
-
-
-
-
- std::vector<ReceiverPoints*> Receivers;
-
-
-
-
-
- int nFreq;
-
-
- int nObs;
-
-
- VectorXr freq;
-
-
- Vector3Xr xyz;
-
-
- Eigen::Matrix<ORIENTATION,Eigen::Dynamic,1> TxOrientation;
-
-
- Eigen::Matrix<ORIENTATION,Eigen::Dynamic,1> RxOrientation;
-
-
- VectorXr TxMom;
-
-
- Vector3Xr TxRxSep;
-
-
- VectorXr ScaleFac;
-
- private:
-
- };
- }
- #endif
|