123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
-
-
-
-
-
-
- #ifndef __DATAREADERFEMUBC_H
- #define __DATAREADERFEMUBC_H
-
- #include "datareader.h"
- #include "datafem.h"
-
- namespace Lemma {
-
-
-
-
-
-
-
-
-
- class DataReaderFemUBC : DataReader {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const DataReaderFemUBC &ob);
-
-
- public:
-
-
-
- static DataReaderFemUBC* New();
-
- void Delete();
-
-
-
-
-
- void ReadData(const std::string &datafile,int vbs = 0);
-
-
-
-
- void SetDataFEM(DataFEM* inputtemp);
-
-
-
-
- DataFEM* GetData();
-
- protected:
-
-
-
-
- DataReaderFemUBC (const std::string &name);
-
-
- ~DataReaderFemUBC ();
-
- void Release();
-
-
- void SendData();
-
-
-
- DataFEM* InputData;
-
- int nObs;
- int nFreq;
- MatrixXr DataMatrix;
- MatrixXr Uncertainties;
- Vector3Xr PositionVec;
- VectorXr Freqs;
- VectorXr TxMom;
- Vector3Xr TxRxSep;
- Eigen::Matrix<ORIENTATION,Eigen::Dynamic,1> TxOrientation;
- Eigen::Matrix<ORIENTATION,Eigen::Dynamic,1> RxOrientation;
- VectorXr ScaleFac;
-
-
-
- private:
-
- };
- }
- #endif
-
-
|