3D EM based on Schur decomposition
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

EMSchur3DBase.h 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. // ===========================================================================
  2. //
  3. // Filename: EMSchur3DBase.h
  4. //
  5. // Created: 09/20/2013 04:35:57 PM
  6. // Compiler: Tested with g++, icpc, and MSVC 2010
  7. //
  8. // Author: Trevor Irons (ti)
  9. //
  10. // Organisation: University of Utah,
  11. // Colorado School of Mines
  12. // US Geological Survey
  13. //
  14. // Email: tirons@egi.utah.edu
  15. //
  16. // ===========================================================================
  17. /**
  18. @file
  19. @author Trevor Irons
  20. @date 09/20/2013
  21. @version $Id$
  22. **/
  23. #pragma once
  24. #ifndef EMSCHUR3DBASE_INC
  25. #define EMSCHUR3DBASE_INC
  26. #include <LemmaCore>
  27. #include "EMSchur3DConfig.h"
  28. #include <FDEM1D>
  29. //#include "LemmaObject.h"
  30. //#include "rectilineargrid.h"
  31. //#include "RectilinearGridVTKExporter.h"
  32. //#include "ASCIIParser.h"
  33. //#include "AEMSurvey.h"
  34. //#include "receiverpoints.h"
  35. //#include "layeredearthem.h"
  36. //#include "emearth1d.h"
  37. #include "timer.h"
  38. #include <Eigen/Sparse>
  39. //#include "bicgstab.h"
  40. // Solvers
  41. #ifdef HAVE_PASTIX
  42. #include <Eigen/PaStiXSupport>
  43. #endif
  44. #ifdef HAVE_METIS
  45. #include <Eigen/MetisSupport>
  46. #endif
  47. #ifdef HAVE_SUPERLU
  48. #include <Eigen/SuperLUSupport>
  49. #endif
  50. #ifdef HAVE_SUPERLUMT
  51. #include <Eigen/SuperLUMTSupport>
  52. #endif
  53. #ifdef HAVE_SPQR
  54. #include <Eigen/SPQRSupport>
  55. #endif
  56. // Cholmod Support won't compile typedef issue
  57. // #ifdef HAVE_CHOLMOD
  58. // #include <Eigen/CholmodSupport>
  59. // #endif
  60. //
  61. // // Cholmod Support won't compile
  62. // #ifdef HAVE_UMFPACK
  63. // #include <Eigen/UmfPackSupport>
  64. // #endif
  65. namespace Lemma {
  66. /**
  67. \defgroup EMSchur3DBase EMSchur3DBase
  68. Provides 3D solution to Maxwell's equations.
  69. */
  70. enum SOLVER{ SPARSELU, SimplicialLLT, SimplicialLDLT, BiCGStab, SparseQR };
  71. /**
  72. @class EMSchur3DBase
  73. \ingroup EMSchur3DBase
  74. \brief Provides a 3D solution to Maxwell's equations.
  75. \details 3D finite difference solution to maxwells equations
  76. using a SCHUR decomposition on a staggered grid.
  77. Performs a Schur decomposition on the vector scalar formulation of
  78. Maxwell's equations.
  79. \f[
  80. -\nabla^2 (\mathbf{A}) - \jmath \omega \mu \sigma \mathbf{A} - \mu \sigma \nabla (\phi) = - \mu \mathbf{J}_s
  81. \f]
  82. Which can be written in the functional form
  83. \f[ \begin{pmatrix}
  84. -\nabla^2 + \jmath \omega \mu \sigma & \mu \sigma \nabla \\
  85. \nabla \cdot & 0
  86. \end{pmatrix}
  87. \begin{pmatrix} \mathbf{A} \\ \phi \end{pmatrix}
  88. = \begin{pmatrix} \mathbf{s}_E \\ 0 \end{pmatrix}
  89. \f]
  90. Using the notation
  91. \f[ \begin{pmatrix}
  92. \mathbf{C} & \mathbf{B} \\
  93. \mathbf{D} & \mathbf{0}
  94. \end{pmatrix} \begin{pmatrix} \mathbf{A} \\ \phi \end{pmatrix} =
  95. \begin{pmatrix} \mathbf{s}_E \\ 0 \end{pmatrix}
  96. \f]
  97. Which is decomposed for seperate solutions to \f$ \mathbf{A}, \phi \f$ using a Schur decomposition
  98. \f[ \begin{matrix}
  99. \mathbf{D}\mathbf{C}^{-1}\mathbf{B} \phi & = \mathbf{D} \mathbf{C}^{-1} \mathbf{s}_E \\
  100. \mathbf{C}\mathbf{A} & = \mathbf{s}_E - \mathbf{G} \phi
  101. \end{matrix}
  102. \f]
  103. Where \f$ \mathbf{B} = \mu \sigma \mathbf{D}^T \f$. Additional algorithmic details may be found at
  104. @verbatim
  105. @inproceedings{doi:10.1190/segam2012-0896.1,
  106. author = {Trevor Irons and Yaoguo Li and Jason R. McKenna},
  107. title = {3D frequency-domain electromagnetics modeling using decoupled scalar and vector potentials},
  108. booktitle = {SEG Technical Program Expanded Abstracts 2012},
  109. chapter = {112},
  110. year = {2012},
  111. pages = {1-6},
  112. doi = {10.1190/segam2012-0896.1},
  113. URL = {http://library.seg.org/doi/abs/10.1190/segam2012-0896.1},
  114. eprint = {http://library.seg.org/doi/pdf/10.1190/segam2012-0896.1}
  115. }
  116. @endverbatim
  117. */
  118. //template< class Solver >
  119. class EMSchur3DBase : public LemmaObject {
  120. friend std::ostream &operator<<(std::ostream &stream,
  121. const EMSchur3DBase &ob);
  122. protected:
  123. //template<typename U>
  124. //friend class EMSchur3D;
  125. public:
  126. // ==================== LIFECYCLE =======================
  127. /** Default protected constructor, use New */
  128. explicit EMSchur3DBase ( const ctor_key& );
  129. /** Default protected constructor, use New */
  130. explicit EMSchur3DBase ( const YAML::Node& node, const ctor_key& );
  131. /** Default protected destructor, use Delete */
  132. virtual ~EMSchur3DBase ( );
  133. /**
  134. * Initialises antenna to contain no points, with no current
  135. * and no frequency. NumberOfTurns set to 1
  136. */
  137. static std::shared_ptr<EMSchur3DBase> NewSP();
  138. /*
  139. * Provides deep copy
  140. */
  141. //virtual std::shared_ptr<EMSchur3DBase> Clone() const ;
  142. /**
  143. * Uses YAML to serialize this object.
  144. * @return a YAML::Node
  145. */
  146. YAML::Node Serialize() const;
  147. /**
  148. * Constructs an object from a YAML::Node.
  149. */
  150. static std::shared_ptr<EMSchur3DBase> DeSerialize( const YAML::Node& node );
  151. // ==================== OPERATORS =======================
  152. // ==================== OPERATIONS =======================
  153. /* Performs the solution
  154. * This is thread safe. TODO, but where should the results go? Just to file?
  155. * Who does the parsing? Actually I think this method is the wrong place to talk
  156. * about that. This is just a big red button. The details should be worked out in private
  157. * methods, that this could well call. Still though, where should the damn results go. What if
  158. * someone wants to use them *right now*, and not go through file IO. This is a good cause for
  159. * fixing the model class. So the result will be a final RectGrid (or Model) where the results live.
  160. * THEN users can call a seperate WriteToVTK or whatever based on that.
  161. */
  162. void Solve( );
  163. // ==================== ACCESS =======================
  164. /** Sets the RectilinearGrid to use
  165. * @param[in] Grid is a pointer to the Grid to be used.
  166. */
  167. void SetRectilinearGrid( std::shared_ptr<RectilinearGrid> Grid);
  168. /** Sets the RectilinearGrid to use
  169. * @param[in] Grid is a pointer to the Grid to be used.
  170. */
  171. void SetAEMSurvey( std::shared_ptr<AEMSurvey> Survey);
  172. /** Sets the prefix for results files (.log and .vtr) the source fiducial is added as well
  173. */
  174. void SetResFileName(const std::string& filename);
  175. /** Sets the solver to use to invert the C matrix. This is done many times. If you are reusing the same matrix
  176. for numerous simulations, it may be benefitial to use the direct (SPARSELU) solver. For one off calculations the BiCGSTAB
  177. is a good choice. Default is SPARSELU.
  178. */
  179. void SetCSolver(const SOLVER& CSOLVER);
  180. /**
  181. * Sets the LayredEarthEM model that will be used for the primary field calculation as well as deterimining the
  182. * bacground conductivity file.
  183. @ @param[in] LayModel is a pointer to the LayeredEarthEM model to use.
  184. */
  185. void SetLayeredEarthEM( std::shared_ptr<LayeredEarthEM> LayModel );
  186. /**
  187. * Loads a MeshTools conductivity model.
  188. * @param[in] fname is the file to load.
  189. */
  190. void LoadMeshToolsConductivityModel( const std::string& fname );
  191. /**
  192. * Writes out results to into a vtkRectilinearGrid file
  193. * @param[in] fname is the file name that is created, the .vtr suffix is added.
  194. */
  195. void WriteVTKResults( const std::string& fname, Eigen::Ref<VectorXcr> A,
  196. Eigen::Ref<VectorXcr> Se, Eigen::Ref<VectorXcr> E0, Eigen::Ref<VectorXcr> E,
  197. Eigen::Ref<VectorXcr> Phi, Eigen::Ref<VectorXcr> ADiv, Eigen::Ref<VectorXcr> ADiv2,
  198. Eigen::Ref<VectorXcr> B
  199. );
  200. // ==================== INQUIRY =======================
  201. /** Returns the name of the underlying class, similiar to Python's type */
  202. virtual std::string GetName() const {
  203. return this->CName;
  204. }
  205. protected:
  206. // ==================== LIFECYCLE =======================
  207. //private:
  208. /** Builds the C matrix */
  209. void BuildC( Real*** sigmax, Real*** sigmay, Real*** sigmaz, const int& iw);
  210. /* Builds the C matrix as a block real system. Benefits of this are the availability of an
  211. * LDL^T decomposition. Also, as complex number in C++ are templates and will necessarily have
  212. * real and imaginary parts, this formulation will have a reduced cost, due to less computations
  213. * with the zero valued imaginary parts (off-diagonals)
  214. * The \f$C \in I^3\f$ matrix is instead written as
  215. * [ C_r C_i ] [ x_r ] = [ b_r ]
  216. * [ C_i -C_r ] [ x_i ] [ b_i ]
  217. */
  218. //void BuildCReal( Real*** sigmax, Real*** sigmay, Real*** sigmaz, const int& iw);
  219. /** Builds the C matrix */
  220. void BuildCPreconditioner( const int& iw);
  221. /** Builds the C matrix */
  222. virtual void BuildCDirectSolver( )=0;
  223. /** Fills the actual points on the grid that 1D primary field calculations need to be made.
  224. @todo This is a little stupid as all threads share the same points. Stupid in that right now
  225. this is done for every calculation. Not a huge amount of time is spent here, I suppose some extra memory
  226. though. We need to extend
  227. EmEARTH to be able to input a grid so that points are not explicitly needed like
  228. this. This requires some care as calcs are made on faces.
  229. Alternatively, the bins function of FieldPoints could be extended quite easily.
  230. This may be the way to do this.
  231. */
  232. void FillPoints( std::shared_ptr<FieldPoints> Points );
  233. /** Builds D/G
  234. */
  235. void BuildD( );
  236. /** Used to manage tradititional C 3D array */
  237. template <typename T>
  238. void Allocate3DScalar(T ***&Array, T init) {
  239. Array = new T**[nx];
  240. for (int ix=0; ix<nx; ix++){
  241. Array[ix] = new T*[ny];
  242. for (int iy=0; iy<ny; iy++){
  243. Array[ix][iy] = new T[nz];
  244. for (int iz=0; iz<nz; iz++) Array[ix][iy][iz] = init;
  245. }
  246. }
  247. return;
  248. }
  249. /** Used to manage tradititional C 3D array */
  250. template <typename T>
  251. void Delete3DScalar(T ***&Array) {
  252. for (int ix=0; ix<nx; ix++){
  253. for (int iy=0; iy<ny; iy++){
  254. delete [] Array[ix][iy];
  255. }
  256. delete [] Array[ix];
  257. }
  258. delete [] Array;
  259. Array = NULL;
  260. return;
  261. }
  262. /**
  263. * This is called just before solve and gets all shared objects ready to go
  264. */
  265. void Setup( );
  266. /** Solves a single source problem. This method is thread safe.
  267. * @param[in] Source is the source term for generating primary fields
  268. * @param[in] isource is the source index
  269. */
  270. virtual void SolveSource( std::shared_ptr< DipoleSource > Source , const int& isource)=0;
  271. /** Computes the primary field
  272. */
  273. void PrimaryField( std::shared_ptr<DipoleSource> Source, std::shared_ptr<FieldPoints> dpoint);
  274. /**
  275. * Fills the vectors that are called in
  276. */
  277. void FillSourceTerms( Eigen::Ref<VectorXcr> ms,
  278. Eigen::Ref<VectorXcr> Se, Eigen::Ref<VectorXcr> E0,
  279. std::shared_ptr<FieldPoints> dpoint, const Real& omega );
  280. /** Computes the curl of A on the staggered grid
  281. */
  282. VectorXcr StaggeredGridCurl(Eigen::Ref<VectorXcr> A);
  283. // ==================== DATA MEMBERS =========================
  284. /** Grid over which operators are active */
  285. std::shared_ptr<RectilinearGrid> Grid;
  286. /* Used to help dump results */
  287. //std::shared_ptr<RectilinearGridVTKExporter> VTKGridExporter;
  288. /** Class containing information about the AEM survey */
  289. std::shared_ptr<AEMSurvey> Survey;
  290. std::shared_ptr<LayeredEarthEM> LayModel;
  291. /** Matrix objects representing discrete operators
  292. */
  293. Eigen::SparseMatrix<Complex, Eigen::RowMajor>* Cvec;
  294. Eigen::SparseMatrix<Complex, Eigen::RowMajor> D;
  295. /** Squeezed matrices for reduced phi grid
  296. */
  297. Eigen::SparseMatrix<Complex, Eigen::RowMajor>* Cvec_s;
  298. Eigen::SparseMatrix<Complex, Eigen::RowMajor> D_s;
  299. /** number of cells in x, set when RectilinearGrid is attached */
  300. int nx;
  301. /** number of cells in y, set when RectilinearGrid is attached */
  302. int ny;
  303. /** number of cells in z, set when RectilinearGrid is attached */
  304. int nz;
  305. /** number of fields/faces in x, unwrapped x */
  306. int unx;
  307. /** number of fields/faces in y, unwrapped y */
  308. int uny;
  309. /** number of fields/faces in z, unwrapped z */
  310. int unz;
  311. /** number of cell centres, unwrapped scalars */
  312. int uns;
  313. /** name for log files and VTK files */
  314. std::string ResFile;
  315. /** frequency of source */
  316. VectorXr Omegas;
  317. /** Conductivity model */
  318. //Complex ***sigma_jwe;
  319. Real ***sigma;
  320. /** Conductivity model minus reference model */
  321. //Complex ***sigmap;
  322. Real ***sigmap;
  323. /** rectilinear grid spacing in x */
  324. VectorXr hx;
  325. /** rectilinear grid spacing in y */
  326. VectorXr hy;
  327. /** rectilinear grid spacing in z */
  328. VectorXr hz;
  329. /** inverse of hx */
  330. VectorXr ihx;
  331. /** inverse of hx squared */
  332. VectorXr ihx2;
  333. /** inverse of hy */
  334. VectorXr ihy;
  335. /** inverse of hy squared */
  336. VectorXr ihy2;
  337. /** inverse of hz */
  338. VectorXr ihz;
  339. /** inverse of hz squared */
  340. VectorXr ihz2;
  341. /** Marker for air cells */
  342. VectorXi MAC;
  343. /** Marker for air cells */
  344. std::vector<int> idx;
  345. private:
  346. static constexpr auto CName = "EMSchur3DBase";
  347. }; // ----- end of class EMSchur3DBase -----
  348. }
  349. #endif // ----- #ifndef EMSCHUR3BASE_INC -----