3D EM based on Schur decomposition
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EMSchur3DBase.h 14KB

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