123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- /* This file is part of Lemma, a geophysical modelling and inversion API.
- * More information is available at http://lemmasoftware.org
- */
-
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
- /**
- * @file
- * @date 10/08/2014 03:04:56 PM
- * @version $Id$
- * @author Trevor Irons (ti)
- * @email Trevor.Irons@xri-geo.com
- * @copyright Copyright (c) 2014, XRI Geophysics, LLC
- * @copyright Copyright (c) 2014, Trevor Irons
- */
-
- #include "TEMReceiver.h"
-
- namespace Lemma {
-
-
- // ==================== FRIEND METHODS =====================
- #ifdef HAVE_YAMLCPP
- std::ostream &operator << (std::ostream &stream, const TEMReceiver &ob) {
- stream << ob.Serialize() << "\n---\n"; // End of doc --- as a direct stream should encapulste thingy
- return stream;
- }
- #else
- std::ostream &operator<<(std::ostream &stream, const TEMReceiver& ob) {
- stream << *(ReceiverPoints*)(&ob);
- return stream;
- }
- #endif
-
- // ==================== LIFECYCLE =======================
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: TEMReceiver
- // Description: constructor (protected)
- //--------------------------------------------------------------------------------------
- TEMReceiver::TEMReceiver (const std::string& name) : ReceiverPoints(name), moment(1), referenceTime(0) {
-
- } // ----- end of method TEMReceiver::TEMReceiver (constructor) -----
-
- #ifdef HAVE_YAMLCPP
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: TEMReceiver
- // Description: constructor (protected)
- //--------------------------------------------------------------------------------------
- TEMReceiver::TEMReceiver (const YAML::Node& node) : ReceiverPoints(node) {
-
- moment = node["moment"].as<Real>();
- referenceTime = node["referenceTime"].as<Real>();
- component = string2Enum<FIELDCOMPONENT>( node["component"].as<std::string>() );
-
- windowCentres = node["windowCentres"].as<VectorXr>();
- windowWidths = node["windowWidths"].as<VectorXr>();
- noiseSTD = node["noiseSTD"].as<VectorXr>();
- //location = node["location"].as<Vector3r>();
- } // ----- end of method TEMReceiver::TEMReceiver (constructor) -----
- #endif
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: New()
- // Description: public constructor
- //--------------------------------------------------------------------------------------
- TEMReceiver* TEMReceiver::New() {
- TEMReceiver* Obj = new TEMReceiver("TEMReceiver");
- Obj->AttachTo(Obj);
- return Obj;
- }
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: Clone
- //--------------------------------------------------------------------------------------
- TEMReceiver* TEMReceiver::Clone() {
- TEMReceiver* Copy = TEMReceiver::New();
- Copy->SetNumberOfReceivers( this->NumberOfReceivers );
- Copy->Mask = this->Mask;
- Copy->Locations = this->Locations;
- // TEM stuff
- Copy->moment = this->moment;
- Copy->referenceTime = this->referenceTime;
- Copy->nHat = this->nHat;
- Copy->component = this->component;
- Copy->windowCentres = this->windowCentres;
- Copy->windowWidths = this->windowWidths;
- Copy->noiseSTD = this->noiseSTD;
- return Copy;
- } // ----- end of method TEMReceiver::Clone -----
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: ~TEMReceiver
- // Description: destructor (protected)
- //--------------------------------------------------------------------------------------
- TEMReceiver::~TEMReceiver () {
-
- } // ----- end of method TEMReceiver::~TEMReceiver (destructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: Delete
- // Description: public destructor
- //--------------------------------------------------------------------------------------
- void TEMReceiver::Delete() {
- this->DetachFrom(this);
- }
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: Release
- // Description: destructor (protected)
- //--------------------------------------------------------------------------------------
- void TEMReceiver::Release() {
- delete this;
- }
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SetWindows
- //--------------------------------------------------------------------------------------
- void TEMReceiver::SetWindows ( const VectorXr& centres, const VectorXr& widths, const TIMEUNITS& Units ) {
-
- Real sc(0);
- switch (Units) {
- case SEC:
- sc = 1;
- break;
- case MILLISEC:
- sc = 1e-3;
- break;
- case MICROSEC:
- sc = 1e-6;
- break;
- case NANOSEC:
- sc = 1e-9;
- break;
- case PICOSEC:
- sc = 1e-12;
- break;
- };
- windowCentres = sc*centres;
- windowWidths = sc*widths;
- noiseSTD = VectorXr::Zero(windowCentres.size());
- return ;
- } // ----- end of method TEMReceiver::SetWindows -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SetNoiseSTD
- //--------------------------------------------------------------------------------------
- void TEMReceiver::SetNoiseSTD ( const VectorXr& noiseIn ) {
- if ( noiseIn.size() == windowCentres.size() ) {
- noiseSTD = noiseIn;
- } else {
- throw std::runtime_error("TEMReceiver::SetNoiseSTD not aligned");
- }
- return ;
-
- } // ----- end of method TEMReceiver::SetNoiseSTD -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: GetNoiseSTD
- //--------------------------------------------------------------------------------------
- VectorXr TEMReceiver::GetNoiseSTD ( ) {
- return noiseSTD ;
- } // ----- end of method TEMReceiver::GetNoiseSTD -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SampleNoise
- //--------------------------------------------------------------------------------------
- VectorXr TEMReceiver::SampleNoise ( ) {
-
- /* we have C++-11 now! No Boost!
- boost::mt19937 rng(time(0));
- boost::normal_distribution<> nd(0.0, 1.0);
- boost::variate_generator<boost::mt19937&, boost::normal_distribution<> > var_nor(rng, nd);
- */
-
- std::random_device rd;
- std::mt19937 gen(rd());
- std::normal_distribution<> d(0.0, 1.00);
-
- VectorXr noise = VectorXr::Zero( windowCentres.size() );
- for (int ii=0; ii<windowCentres.size(); ++ii) {
- //noise(ii) = var_nor(); // old boost way
- noise(ii) = d(gen);
- }
- return noise.array() * noiseSTD.array();
- } // ----- end of method TEMReceiver::SampleNoise -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SetReferenceTime
- //--------------------------------------------------------------------------------------
- void TEMReceiver::SetReferenceTime ( const Real& refTime, const TIMEUNITS& units ) {
- Real sc(0);
- switch (units) {
- case SEC:
- sc = 1;
- break;
- case MILLISEC:
- sc = 1e-3;
- break;
- case MICROSEC:
- sc = 1e-6;
- break;
- case NANOSEC:
- sc = 1e-9;
- break;
- case PICOSEC:
- sc = 1e-12;
- break;
- };
- referenceTime = sc*refTime;
-
- return ;
- } // ----- end of method TEMReceiver::SetReferenceTime -----
-
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SetMoment
- //--------------------------------------------------------------------------------------
- void TEMReceiver::SetMoment ( const Real& mom ) {
- moment = mom;
- return ;
- } // ----- end of method TEMReceiver::SetMoment -----
-
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SetLocation
- //--------------------------------------------------------------------------------------
- void TEMReceiver::SetRxLocation ( const Vector3r& loc ) {
- this->SetNumberOfReceivers(1); // Valgrind doesn't like??
- this->SetLocation(0, loc);
- //location = loc;
- return ;
- } // ----- end of method TEMReceiver::SetLocation -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: SetComponent
- //--------------------------------------------------------------------------------------
- void TEMReceiver::SetComponent ( const FIELDCOMPONENT& comp ) {
- component = comp;
- return ;
- } // ----- end of method TEMReceiver::SetComponent -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: get_WindowWidths
- //--------------------------------------------------------------------------------------
- VectorXr TEMReceiver::GetWindowWidths ( ) {
- return windowWidths;
- } // ----- end of method TEMReceiver::get_WindowWidths -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: get_WindowCentres
- //--------------------------------------------------------------------------------------
- VectorXr TEMReceiver::GetWindowCentres ( ) {
- return windowCentres;
- } // ----- end of method TEMReceiver::get_WindowCentres -----
-
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: GetReferenceTime
- //--------------------------------------------------------------------------------------
- Real TEMReceiver::GetReferenceTime ( ) {
- return referenceTime;
- } // ----- end of method TEMReceiver::GetReferenceTime -----
-
-
- #ifdef HAVE_YAMLCPP
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: Serialize
- //--------------------------------------------------------------------------------------
- YAML::Node TEMReceiver::Serialize ( ) const {
- YAML::Node node = ReceiverPoints::Serialize();
- node.SetTag( this->Name );
- node["moment"] = moment;
- node["referenceTime"] = referenceTime;
- node["component"] = enum2String(component);
-
- node["windowCentres"] = windowCentres;
- node["windowWidths"] = windowWidths;
- node["noiseSTD"] = noiseSTD;
- //node["location"] = location;
- return node;
- } // ----- end of method TEMReceiver::Serialize -----
-
-
- //--------------------------------------------------------------------------------------
- // Class: TEMReceiver
- // Method: DeSerialize
- //--------------------------------------------------------------------------------------
- TEMReceiver* TEMReceiver::DeSerialize ( const YAML::Node& node ) {
- TEMReceiver* Object = new TEMReceiver(node);
- Object->AttachTo(Object);
- DESERIALIZECHECK( node, Object )
- return Object ;
-
- } // ----- end of method TEMReceiver::DeSerialize -----
- #endif
-
- } // ----- end of Lemma name -----
|