123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
-
-
-
-
-
-
-
- #ifndef DATAFEM_H
- #define DATAFEM_H
-
- #include "data.h"
-
- namespace Lemma {
-
-
-
-
-
-
- class DataFEM : public Data {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const DataFEM &ob);
-
- public:
-
-
-
- static DataFEM* New();
-
- DataFEM* Clone();
-
- void Delete();
-
-
-
-
-
-
- void Zero();
-
- Real Norm(Data* Data2);
-
-
-
-
-
- void SetSize(const int &nobs,const int &nfreq);
-
-
- void SetData(const MatrixXr &inputdata);
-
-
- void SetUncertainties(const MatrixXr &uncertain);
-
-
- void SetPositions(const Vector3Xr &positions);
-
-
- void SetFreq(const VectorXr &freqs);
-
-
- void SetTxOrientation(const Eigen::Matrix<ORIENTATION, Eigen::Dynamic, 1> &txorientation);
-
-
- void SetRxOrientation(const Eigen::Matrix<ORIENTATION, Eigen::Dynamic, 1> &rxorientation);
-
-
- void SetTxMom(const VectorXr &txmom);
-
-
- void SetTxRxSep(const Vector3Xr &txrxsep);
-
-
- void SetScaleFac(const VectorXr &scalefac);
-
-
-
-
- int GetnFreq();
-
-
- int GetnObs();
-
-
- MatrixXr GetFEMDataCube();
-
-
- MatrixXr GetFEMUncertainCube();
-
-
- Real GetDataCoeff(const int &x, const int &y);
-
-
- VectorXr GetFreqs();
-
-
- Vector3Xr GetXYZ();
-
-
- VectorXr GetSingleXYZ(const int &x);
-
-
- Eigen::Matrix<ORIENTATION, Eigen::Dynamic, 1> GetTxOrien();
-
-
- Eigen::Matrix<ORIENTATION, Eigen::Dynamic, 1> GetRxOrien();
-
-
- VectorXr GetTxMom();
-
-
- Vector3Xr GetTxRxSep();
-
-
- VectorXr GetScaleFac();
-
- protected:
-
-
-
-
- DataFEM (const std::string &name);
-
-
- ~DataFEM ();
-
- void Release();
-
-
-
-
- int nFreq;
-
-
- int nObs;
-
-
- MatrixXr FEMDataCube;
-
-
- MatrixXr FEMUncertainCube;
-
-
- 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
-
-
-
|