@@ -216,6 +216,7 @@ subroutine create_operator(self, n)
216
216
class(petsc_poisson_cg_t) :: self
217
217
integer , intent (in ) :: n
218
218
219
+ type (tMatNullSpace) :: nsp
219
220
integer :: ierr
220
221
221
222
call MatCreateShell(PETSC_COMM_WORLD, n, n, PETSC_DETERMINE, &
@@ -227,13 +228,18 @@ subroutine create_operator(self, n)
227
228
call MatAssemblyBegin(self% Amat, MAT_FINAL_ASSEMBLY, ierr)
228
229
call MatAssemblyEnd(self% Amat, MAT_FINAL_ASSEMBLY, ierr)
229
230
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
+
230
235
end subroutine create_operator
231
236
232
237
subroutine create_preconditioner (self , mesh , n )
233
238
class(petsc_poisson_cg_t) :: self
234
239
type (mesh_t), intent (in ) :: mesh
235
240
integer , intent (in ) :: n
236
241
242
+ type (tMatNullSpace) :: nsp
237
243
integer :: ierr
238
244
239
245
integer , parameter :: nnb = 6 ! Number of neighbours (7-point star has 6 neighbours)
@@ -324,6 +330,10 @@ subroutine create_preconditioner(self, mesh, n)
324
330
call MatAssemblyBegin(self% Pmat, MAT_FINAL_ASSEMBLY, ierr)
325
331
call MatAssemblyEnd(self% Pmat, MAT_FINAL_ASSEMBLY, ierr)
326
332
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
+
327
337
end subroutine create_preconditioner
328
338
329
339
subroutine create_vectors (self , n )
@@ -356,7 +366,7 @@ subroutine create_solver(self)
356
366
integer :: ierr
357
367
358
368
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)
360
370
call KSPSetFromOptions(self% ksp, ierr)
361
371
362
372
end subroutine create_solver
0 commit comments