00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef PCLDUFACTORISATION_HPP_
00031 #define PCLDUFACTORISATION_HPP_
00032
00033 #include <cassert>
00034 #include <petscvec.h>
00035 #include <petscmat.h>
00036 #include <petscksp.h>
00037 #include <petscpc.h>
00038 #include "PetscTools.hpp"
00039
00050 #if (PETSC_VERSION_MAJOR == 3 && PETSC_VERSION_MINOR == 1) //PETSc 3.1
00051 PetscErrorCode PCLDUFactorisationApply(PC pc_object, Vec x, Vec y);
00052 #else
00053 PetscErrorCode PCLDUFactorisationApply(void* pc_context, Vec x, Vec y);
00054 #endif
00055
00102 class PCLDUFactorisation
00103 {
00104 public:
00108 typedef struct{
00109 Mat A11_matrix_subblock;
00110 Mat A22_matrix_subblock;
00111 Mat B_matrix_subblock;
00112 PC PC_amg_A11;
00113 PC PC_amg_A22;
00114 Vec x1_subvector;
00115 Vec x2_subvector;
00116 Vec y1_subvector;
00117 Vec y2_subvector;
00118 Vec z;
00119 Vec temp;
00120 VecScatter A11_scatter_ctx;
00121 VecScatter A22_scatter_ctx;
00122 #ifdef TRACE_KSP
00123 double mScatterTime;
00124 double mA1PreconditionerTime;
00125 double mA2PreconditionerTime;
00126 double mExtraLAOperations;
00127 double mGatherTime;
00128 #endif
00129
00130 } PCLDUFactorisationContext;
00131
00132 PCLDUFactorisationContext mPCContext;
00133 PC mPetscPCObject;
00135 public:
00136
00142 PCLDUFactorisation(KSP& rKspObject);
00143
00144 ~PCLDUFactorisation();
00145
00146 private:
00152 void PCLDUFactorisationCreate(KSP& rKspObject);
00153
00157 void PCLDUFactorisationSetUp();
00158 };
00159 #endif