123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
-
-
-
-
-
-
- #include "LayeredEarthEMReader.h"
-
- namespace Lemma {
-
-
-
- std::ostream &operator << (std::ostream &stream, const LayeredEarthEMReader &ob) {
- stream << ob.Serialize() << "\n---\n";
- return stream;
- }
-
-
-
-
-
-
-
-
-
- LayeredEarthEMReader::LayeredEarthEMReader ( const ctor_key& key ) : LemmaObject(),
- LayEarth(nullptr) {
-
- }
-
-
-
-
-
-
-
- LayeredEarthEMReader* LayeredEarthEMReader::New() {
- LayeredEarthEMReader* Obj = new LayeredEarthEMReader("LayeredEarthEMReader");
- Obj->AttachTo(Obj);
- return Obj;
- }
-
-
-
-
-
-
- LayeredEarthEMReader::~LayeredEarthEMReader () {
- if (LayEarth) LayEarth->Delete();
- }
-
-
-
-
-
-
- void LayeredEarthEMReader::Delete() {
- this->DetachFrom(this);
- }
-
-
-
-
-
-
- void LayeredEarthEMReader::Release() {
- delete this;
- }
-
-
-
-
-
-
- LayeredEarthEM* LayeredEarthEMReader::GetLayeredEarth ( ) {
- return LayEarth;
- }
-
-
-
-
-
-
- void LayeredEarthEMReader::ReadASCIIInputFile ( const std::string& name ) {
- if (LayEarth) LayEarth->Delete();
- ASCIIParser* Parser = ASCIIParser::New();
- LayEarth = LayeredEarthEM::New();
-
- Parser->SetCommentString("//");
- Parser->Open(name);
-
- int nlay = Parser->ReadInts( 1 )[0];
- LayEarth->SetNumberOfLayers(nlay+1);
-
- VectorXcr sigma = VectorXcr::Zero(nlay+1);
- VectorXr thick(nlay-1);
- for (int ilay=1; ilay<nlay; ++ilay) {
- std::vector<Real> rval = Parser->ReadReals(2);
- sigma(ilay) = 1./rval[0];
- thick(ilay-1) = rval[1];
- }
- sigma(nlay) = 1./Parser->ReadReals(1)[0];
- LayEarth->SetLayerConductivity(sigma);
- if (thick.size() > 0) LayEarth->SetLayerThickness(thick);
- Parser->Delete();
- return ;
- }
-
-
- }
|