diff --git a/Solver/linearSystemPETSc.cpp b/Solver/linearSystemPETSc.cpp
index 56fc1a453be065cdceda3bd16c1ec093612f7e5f..0bba26d01357dc87f5f43e6cde7cb2d859c1c7d3 100644
--- a/Solver/linearSystemPETSc.cpp
+++ b/Solver/linearSystemPETSc.cpp
@@ -177,6 +177,24 @@ void linearSystemPETScBlockDouble::clear()
   _isAllocated = false;
 }
 
+void linearSystemPETScBlockDouble::print()
+{
+  _try(MatAssemblyBegin(_a, MAT_FINAL_ASSEMBLY));
+  _try(MatAssemblyEnd(_a, MAT_FINAL_ASSEMBLY));
+  _try(VecAssemblyBegin(_b));
+  _try(VecAssemblyEnd(_b));
+  if(Msg::GetCommRank()==0)
+    printf("a :\n");
+  MatView(_a, PETSC_VIEWER_STDOUT_WORLD);
+  if(Msg::GetCommRank()==0)
+    printf("b :\n");
+  VecView(_b, PETSC_VIEWER_STDOUT_WORLD);
+  if(Msg::GetCommRank()==0)
+    printf("x :\n");
+  VecView(_x, PETSC_VIEWER_STDOUT_WORLD);
+}
+
+
 int linearSystemPETScBlockDouble::systemSolve()
 {
   if (!_kspAllocated)
diff --git a/Solver/linearSystemPETSc.h b/Solver/linearSystemPETSc.h
index 176d8c539004a97fd40a4f536c6d49b1309330c2..1cd061baff0e4e2d6a5b059e05a7e9a972a234b4 100644
--- a/Solver/linearSystemPETSc.h
+++ b/Solver/linearSystemPETSc.h
@@ -91,6 +91,7 @@ class linearSystemPETScBlockDouble : public linearSystem<fullMatrix<double> > {
   bool _sequential;
   public:
   void _kspCreate();
+  void print();
   virtual void addToMatrix(int row, int col, const fullMatrix<double> &val);
   virtual void addToRightHandSide(int row, const fullMatrix<double> &val);
   virtual void addToSolution(int row,  const fullMatrix<double> &val);