Skip to content

Commit 60b2726

Browse files
Set Null space on Poisson matrices
1 parent fb84bc9 commit 60b2726

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/mesh.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module m_mesh
1313
type :: geo_t
1414
real(dp), dimension(3) :: d ! size of a cell in each direction (=edge length, distance between centers, distance between vertices)
1515
real(dp), dimension(3) :: L ! Global dimensions of the domain in each direction
16-
end type
16+
end type geo_t
1717

1818
! Stores parallel domain related information
1919
type :: parallel_t
@@ -26,7 +26,7 @@ module m_mesh
2626
integer, dimension(3) :: pprev ! rank ID of the next rank in each direction
2727
contains
2828
procedure :: is_root ! returns if the current rank is the root rank
29-
end type
29+
end type parallel_t
3030

3131
! The mesh class stores all the information about the global and local (due to domain decomposition) mesh
3232
! It also includes getter functions to access some of its parameters

src/petsc/poisson_cg.f90

+11-1
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ subroutine create_operator(self, n)
216216
class(petsc_poisson_cg_t) :: self
217217
integer, intent(in) :: n
218218

219+
type(tMatNullSpace) :: nsp
219220
integer :: ierr
220221

221222
call MatCreateShell(PETSC_COMM_WORLD, n, n, PETSC_DETERMINE, &
@@ -227,13 +228,18 @@ subroutine create_operator(self, n)
227228
call MatAssemblyBegin(self%Amat, MAT_FINAL_ASSEMBLY, ierr)
228229
call MatAssemblyEnd(self%Amat, MAT_FINAL_ASSEMBLY, ierr)
229230

231+
call MatNullSpaceCreate(PETSC_COMM_WORLD, PETSC_TRUE, 0, PETSC_NULL_VEC, nsp, ierr)
232+
call MatSetnullSpace(self%Amat, nsp, ierr)
233+
call MatNullSpaceDestroy(nsp, ierr)
234+
230235
end subroutine create_operator
231236

232237
subroutine create_preconditioner(self, mesh, n)
233238
class(petsc_poisson_cg_t) :: self
234239
type(mesh_t), intent(in) :: mesh
235240
integer, intent(in) :: n
236241

242+
type(tMatNullSpace) :: nsp
237243
integer :: ierr
238244

239245
integer, parameter :: nnb = 6 ! Number of neighbours (7-point star has 6 neighbours)
@@ -324,6 +330,10 @@ subroutine create_preconditioner(self, mesh, n)
324330
call MatAssemblyBegin(self%Pmat, MAT_FINAL_ASSEMBLY, ierr)
325331
call MatAssemblyEnd(self%Pmat, MAT_FINAL_ASSEMBLY, ierr)
326332

333+
call MatNullSpaceCreate(PETSC_COMM_WORLD, PETSC_TRUE, 0, PETSC_NULL_VEC, nsp, ierr)
334+
call MatSetnullSpace(self%Pmat, nsp, ierr)
335+
call MatNullSpaceDestroy(nsp, ierr)
336+
327337
end subroutine create_preconditioner
328338

329339
subroutine create_vectors(self, n)
@@ -356,7 +366,7 @@ subroutine create_solver(self)
356366
integer :: ierr
357367

358368
call KSPCreate(PETSC_COMM_WORLD, self%ksp, ierr)
359-
call KSPSetOperators(self%ksp, self%Amat, self%Pmat, ierr)
369+
call KSPSetOperators(self%ksp, self%Pmat, self%Pmat, ierr)
360370
call KSPSetFromOptions(self%ksp, ierr)
361371

362372
end subroutine create_solver

0 commit comments

Comments
 (0)