<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Thanks to all of you.<BR>
&nbsp;<BR>
&nbsp;&nbsp; Yes, Ethan is correct. I just changed the code as shown as below, and the result is correct:<BR>
!========================<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; do i=1,Iend-Istart<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; write(6,*)'check xx_v',i,xx_v(i),myid<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; enddo&nbsp; <BR>
!========================<BR>
&nbsp;Now, I got the main concept of the pointer to the array, it is locally and begin with 1.&nbsp; If&nbsp;I want to use them globally,&nbsp;I should convert the&nbsp;local index to the global.<BR>
&nbsp;<BR>
Thanks again for&nbsp;all the considerate responses. Your&nbsp;advices&nbsp;always clear the trouble on&nbsp;the way to the&nbsp;final goal. I appreciate very much.<BR>&nbsp;<BR>
&gt; From: ecoon@lanl.gov<BR>&gt; To: petsc-users@mcs.anl.gov<BR>&gt; Date: Wed, 5 Jan 2011 12:52:20 -0700<BR>&gt; Subject: Re: [petsc-users] error in calling VecGetArrayf90()<BR>&gt; <BR>&gt; See the below program and output (done with dev, but I don't think this<BR>&gt; has changed). In F90, the local arrays, gotten by VecGetArrayF90, are<BR>&gt; all indexed:<BR>&gt; <BR>&gt; xx_v(1:(Iend-Istart)). <BR>&gt; <BR>&gt; This should really be moot -- It's way easier to follow the example code<BR>&gt; for ex50f90.F and pass their arrays into a subroutine which casts the<BR>&gt; shape in the "PETSc way", indexed from (Istart:Iend-1). <BR>&gt; <BR>&gt; Ethan<BR>&gt; <BR>&gt; <BR>&gt; ---<BR>&gt; <BR>&gt; <BR>&gt; #define PETSC_USE_FORTRAN_MODULES 1<BR>&gt; #include "finclude/petscsysdef.h"<BR>&gt; #include "finclude/petscvecdef.h"<BR>&gt; <BR>&gt; program test<BR>&gt; use petsc<BR>&gt; implicit none<BR>&gt; <BR>&gt; Vec x<BR>&gt; PetscInt Istart, Iend<BR>&gt; PetscScalar, pointer:: xx_v(:)<BR>&gt; PetscInt i<BR>&gt; PetscErrorCode ierr<BR>&gt; PetscInt twenty<BR>&gt; PetscInt rank<BR>&gt; <BR>&gt; twenty = 20<BR>&gt; <BR>&gt; call PetscInitialize(PETSC_NULL_CHARACTER, ierr)<BR>&gt; call mpi_comm_rank(PETSC_COMM_WORLD,rank,ierr)<BR>&gt; call VecCreateMPI(PETSC_COMM_WORLD, PETSC_DECIDE, twenty, x, ierr)<BR>&gt; <BR>&gt; call VecGetArrayF90(x, xx_v, ierr)<BR>&gt; xx_v = rank+1<BR>&gt; call VecRestoreArrayF90(x, xx_v, ierr)<BR>&gt; <BR>&gt; call VecView(x, PETSC_VIEWER_STDOUT_WORLD, ierr)<BR>&gt; <BR>&gt; call VecGetOwnershipRange(x, Istart, Iend)<BR>&gt; write (*,*) 'range on rank', rank, ':', Istart, Iend<BR>&gt; <BR>&gt; call VecGetArrayF90(x, xx_v, ierr)<BR>&gt; CHKMEMQ<BR>&gt; do i = 1,(Iend-Istart)<BR>&gt; write (*,*) i, xx_v(i), rank<BR>&gt; enddo<BR>&gt; CHKMEMQ<BR>&gt; call VecRestoreArrayF90(x, xx_v, ierr)<BR>&gt; <BR>&gt; call VecDestroy(x, ierr)<BR>&gt; call PetscFinalize(ierr)<BR>&gt; end program test<BR>&gt; <BR>&gt; -----<BR>&gt; <BR>&gt; $&gt; ${PETSC_DIR}/${PETSC_ARCH}/bin/mpiexec -n 2 ./test<BR>&gt; Vector Object:<BR>&gt; type: mpi<BR>&gt; Process [0]<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; 1<BR>&gt; Process [1]<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; 2<BR>&gt; range on rank 1 : 10 20<BR>&gt; 1 2.0000000000000000 1<BR>&gt; 2 2.0000000000000000 1<BR>&gt; 3 2.0000000000000000 1<BR>&gt; 4 2.0000000000000000 1<BR>&gt; 5 2.0000000000000000 1<BR>&gt; 6 2.0000000000000000 1<BR>&gt; 7 2.0000000000000000 1<BR>&gt; 8 2.0000000000000000 1<BR>&gt; 9 2.0000000000000000 1<BR>&gt; 10 2.0000000000000000 1<BR>&gt; range on rank 0 : 0 10<BR>&gt; 1 1.00000000000000000 0<BR>&gt; 2 1.00000000000000000 0<BR>&gt; 3 1.00000000000000000 0<BR>&gt; 4 1.00000000000000000 0<BR>&gt; 5 1.00000000000000000 0<BR>&gt; 6 1.00000000000000000 0<BR>&gt; 7 1.00000000000000000 0<BR>&gt; 8 1.00000000000000000 0<BR>&gt; 9 1.00000000000000000 0<BR>&gt; 10 1.00000000000000000 0<BR>&gt; <BR>&gt; ---<BR>&gt; <BR>&gt; <BR>&gt; On Wed, 2011-01-05 at 13:21 -0600, Barry Smith wrote:<BR>&gt; &gt; I don't think this is correct. You are suppose to use the local indexing for each process. With the strange index starting at 1 instead of 0.<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Barry<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; On Jan 5, 2011, at 1:03 PM, Ethan Coon wrote:<BR>&gt; &gt; <BR>&gt; &gt; &gt; On all processors, the array you get is indexed:<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; xx_v(1:(Iend-Istart))<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; while the Istart and Iend are global indices into the global Vec.<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; It's only by luck that the values on proc 3 are correct (this code<BR>&gt; &gt; &gt; should probably seg fault as it is accessing memory outside of the<BR>&gt; &gt; &gt; bounds of xx_v).<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; To access the array, you'll want:<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; do i=1, (Iend-Istart)<BR>&gt; &gt; &gt; write(6,*)'check xx_v',i,xx_v(i),myid<BR>&gt; &gt; &gt; enddo<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; or (better yet) pass it into a subroutine to get the array indexed<BR>&gt; &gt; &gt; correctly, like demonstrated in the example.<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; Ethan<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; On Wed, 2011-01-05 at 11:23 -0600, Peter Wang wrote:<BR>&gt; &gt; &gt;&gt; Thanks, Satish,<BR>&gt; &gt; &gt;&gt; <BR>&gt; &gt; &gt;&gt; The index of the array is modified to i+1:<BR>&gt; &gt; &gt;&gt; !===================<BR>&gt; &gt; &gt;&gt; do i=Istart,Iend-1<BR>&gt; &gt; &gt;&gt; write(6,*)'check xx_v',i+1,xx_v(i+1),myid<BR>&gt; &gt; &gt;&gt; enddo <BR>&gt; &gt; &gt;&gt; !===================<BR>&gt; &gt; &gt;&gt; <BR>&gt; &gt; &gt;&gt; However, only the elements on root process (process 0) and the<BR>&gt; &gt; &gt;&gt; last process (process 3) are corrent, is there any ohter logical<BR>&gt; &gt; &gt;&gt; error?<BR>&gt; &gt; &gt;&gt; <BR>&gt; &gt; &gt;&gt; check xx_v 1 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt; check xx_v 2 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt; check xx_v 3 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt; check xx_v 4 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt; check xx_v 5 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt; check xx_v 6 3000.0000000000005 0<BR>&gt; &gt; &gt;&gt; check xx_v 7 3000.0000000000005 0<BR>&gt; &gt; &gt;&gt; check xx_v 8 2.61360726650019422E-321 1 <BR>&gt; &gt; &gt;&gt; check xx_v 9 7.90505033345994471E-323 1<BR>&gt; &gt; &gt;&gt; check xx_v 10 1.69759663277221785E-312 1<BR>&gt; &gt; &gt;&gt; check xx_v 11 6.16840020108069212E-317 1<BR>&gt; &gt; &gt;&gt; check xx_v 12 6.16840316547456717E-317 1<BR>&gt; &gt; &gt;&gt; check xx_v 13 6.16832658529946177E-317 1<BR>&gt; &gt; &gt;&gt; check xx_v 14 1.99665037664579820E-314 2<BR>&gt; &gt; &gt;&gt; check xx_v 15 6.19784009071943448E-317 2<BR>&gt; &gt; &gt;&gt; check xx_v 16 6.20249221284067566E-317 2<BR>&gt; &gt; &gt;&gt; check xx_v 17 6.20218737433719161E-317 2<BR>&gt; &gt; &gt;&gt; check xx_v 18 6.18236051996958238E-317 2<BR>&gt; &gt; &gt;&gt; check xx_v 19 6.16840316547456717E-317 2<BR>&gt; &gt; &gt;&gt; check xx_v 20 6.18107199676522841E-317 3<BR>&gt; &gt; &gt;&gt; check xx_v 21 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt; check xx_v 22 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt; check xx_v 23 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt; check xx_v 24 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt; check xx_v 25 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt; <BR>&gt; &gt; &gt;&gt; <BR>&gt; &gt; &gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt; Date: Tue, 4 Jan 2011 22:49:50 -0600<BR>&gt; &gt; &gt;&gt;&gt; From: balay@mcs.anl.gov<BR>&gt; &gt; &gt;&gt;&gt; To: petsc-users@mcs.anl.gov<BR>&gt; &gt; &gt;&gt;&gt; Subject: Re: [petsc-users] error in calling VecGetArrayf90()<BR>&gt; &gt; &gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt; The global index starts at Istart - but the array index starts at 1<BR>&gt; &gt; &gt;&gt; [for fortran array]<BR>&gt; &gt; &gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt; Satish<BR>&gt; &gt; &gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt; On Tue, 4 Jan 2011, Peter Wang wrote:<BR>&gt; &gt; &gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; In last question, the pointer xx_v is local data. However, if<BR>&gt; &gt; &gt;&gt; write them to the monitor or assign them to another array, the value<BR>&gt; &gt; &gt;&gt; is incorrect.<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; The protion of the code to display them on the monitor is like as<BR>&gt; &gt; &gt;&gt; following: <BR>&gt; &gt; &gt;&gt;&gt;&gt; call MatGetOwnershipRange(A,Istart,Iend,ierr)<BR>&gt; &gt; &gt;&gt;&gt;&gt; call VecGetArrayF90(x,xx_v,ierr) ! Vector x is matched with Matrix<BR>&gt; &gt; &gt;&gt; A in the same communicator<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; write(*,*)xx_v,myid ! write the poiner array together<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; do i=Istart,Iend-1<BR>&gt; &gt; &gt;&gt;&gt;&gt; write(6,*)'check xx_v',i,xx_v(i),myid !write the element of the<BR>&gt; &gt; &gt;&gt; array one by one with local range (Istart to Iend-1)<BR>&gt; &gt; &gt;&gt;&gt;&gt; enddo <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; =========The result is as following: ( the values of the elements<BR>&gt; &gt; &gt;&gt; from 7 to 20 are not correct !!)<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; 3999.9999999999982 3999.9999999999982 3999.9999999999982<BR>&gt; &gt; &gt;&gt; 3999.9999999999982 3999.9999999999982 3000.0000000000005<BR>&gt; &gt; &gt;&gt; 3000.0000000000005 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; 3000.0000000000009 3000.0000000000009 3000.0000000000009<BR>&gt; &gt; &gt;&gt; 2000.0000000000011 2000.0000000000011 2000.0000000000000 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; 2000.0000000000009 2000.0000000000009 1000.0000000000003<BR>&gt; &gt; &gt;&gt; 1000.0000000000003 1000.0000000000003 999.99999999999989 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; 1000.0000000000000 0.0000000000000000 0.0000000000000000<BR>&gt; &gt; &gt;&gt; 0.0000000000000000 0.0000000000000000 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 0 0.0000000000000000 0.0000000000000000 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 1 3999.9999999999982 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 2 3999.9999999999982 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 3 3999.9999999999982 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 4 3999.9999999999982 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 5 3999.9999999999982 3999.9999999999982 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 6 3000.0000000000005 3000.0000000000005 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 7 1.99665037664579820E-314 1.99665037664579820E-314 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 8 2.61360726650019422E-321 2.61360726650019422E-321 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 9 7.90505033345994471E-323 7.90505033345994471E-323 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 10 1.69759663277221785E-312 1.69759663277221785E-312 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 11 6.16846344148335980E-317 6.16846344148335980E-317 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 12 6.16846640587723485E-317 6.16846640587723485E-317 1<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 13 6.16838982570212945E-317 6.16838982570212945E-317 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 14 1.99665037664579820E-314 1.99665037664579820E-314 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 15 6.19790333112210216E-317 6.19790333112210216E-317 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 16 6.20255545324334334E-317 6.20255545324334334E-317 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 17 6.20225061473985929E-317 6.20225061473985929E-317 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 18 6.18242376037225006E-317 6.18242376037225006E-317 2<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 19 6.16846640587723485E-317 6.16846640587723485E-317 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 20 6.18113523716789609E-317 6.18113523716789609E-317 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 21 0.0000000000000000 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 22 0.0000000000000000 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 23 0.0000000000000000 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; check xx_v 24 0.0000000000000000 0.0000000000000000 3<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; ======The vector x is :<BR>&gt; &gt; &gt;&gt;&gt;&gt; Process [0]<BR>&gt; &gt; &gt;&gt;&gt;&gt; 4000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 4000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 4000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 4000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 4000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 3000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 3000<BR>&gt; &gt; &gt;&gt;&gt;&gt; Process [1]<BR>&gt; &gt; &gt;&gt;&gt;&gt; 3000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 3000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 3000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 2000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 2000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 2000<BR>&gt; &gt; &gt;&gt;&gt;&gt; Process [2]<BR>&gt; &gt; &gt;&gt;&gt;&gt; 2000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 2000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 1000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 1000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 1000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 1000<BR>&gt; &gt; &gt;&gt;&gt;&gt; Process [3]<BR>&gt; &gt; &gt;&gt;&gt;&gt; 1000<BR>&gt; &gt; &gt;&gt;&gt;&gt; 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; 0<BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; Date: Tue, 4 Jan 2011 17:50:11 -0600<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; From: balay@mcs.anl.gov<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; To: petsc-users@mcs.anl.gov<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; Subject: Re: [petsc-users] error in calling VecGetArrayf90()<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; Did you included "finclude/petscvec.h90" in your code - as the<BR>&gt; &gt; &gt;&gt; example did?<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; satish<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; On Tue, 4 Jan 2011, Peter Wang wrote:<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; I am trying to obtain the value of each element of a solution<BR>&gt; &gt; &gt;&gt; Vector by KSPsolve(). <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; The variables are defined according the example of ex4f90.F in<BR>&gt; &gt; &gt;&gt; \petsc-3.1-p5\src\snes\examples\tutorials\ as following,<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; PetscScalar, pointer :: xx_v(:)<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; ...<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; call KSPSolve(ksp,b,x,ierr)<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; call VecView(x,PETSC_VIEWER_STDOUT_WORLD,ierr)<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; call VecGetArrayF90(x,xx_v,ierr)<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; call VecRestoreArrayF90(x,xx_v,ierr)<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; ...<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; But, the error keeps coming out when call<BR>&gt; &gt; &gt;&gt; VecGetArrayF90(x,xx_v,ierr) and call VecRestoreArrayF90(x,xx_v,ierr)<BR>&gt; &gt; &gt;&gt; are not commented off.<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; The error information shows:<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Caught signal number 11 SEGV: Segmentation Violation, probably<BR>&gt; &gt; &gt;&gt; memory access out of range<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; [0]PETSC ERROR: --------------------- Stack Frames<BR>&gt; &gt; &gt;&gt; ------------------------------------<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; [0]PETSC ERROR: Note: The EXACT line numbers in the stack are<BR>&gt; &gt; &gt;&gt; not available,<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; [0]PETSC ERROR: INSTEAD the line number of the start of the<BR>&gt; &gt; &gt;&gt; function<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; [0]PETSC ERROR: is given.<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; [0]PETSC ERROR: [0] F90Array1dCreate line 52<BR>&gt; &gt; &gt;&gt; src/sys/f90-src/f90_cwrap.c<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; [0]PETSC ERROR: --------------------- Error Message<BR>&gt; &gt; &gt;&gt; ------------------------------------<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; I checked the code according the example, but cannot see any<BR>&gt; &gt; &gt;&gt; difference to that. Just don't know why the pointer array xx_v doesn't<BR>&gt; &gt; &gt;&gt; work here? Thanks.<BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt;&gt; <BR>&gt; &gt; &gt;&gt;&gt; <BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; -- <BR>&gt; &gt; &gt; -------------------------------------<BR>&gt; &gt; &gt; Ethan Coon<BR>&gt; &gt; &gt; Post-Doctoral Researcher<BR>&gt; &gt; &gt; Mathematical Modeling and Analysis<BR>&gt; &gt; &gt; Los Alamos National Laboratory<BR>&gt; &gt; &gt; 505-665-8289<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; http://www.ldeo.columbia.edu/~ecoon/<BR>&gt; &gt; &gt; -------------------------------------<BR>&gt; &gt; &gt; <BR>&gt; &gt; <BR>&gt; <BR>&gt; -- <BR>&gt; -------------------------------------<BR>&gt; Ethan Coon<BR>&gt; Post-Doctoral Researcher<BR>&gt; Mathematical Modeling and Analysis<BR>&gt; Los Alamos National Laboratory<BR>&gt; 505-665-8289<BR>&gt; <BR>&gt; http://www.ldeo.columbia.edu/~ecoon/<BR>&gt; -------------------------------------<BR>&gt; <BR>                                               </body>
</html>