xref: /petsc/src/dm/impls/da/gr2.c (revision f3f0eb19a322e1923f66aeb6cc7ffacd1eb54b2a)
147c6ae99SBarry Smith 
247c6ae99SBarry Smith /*
3aa219208SBarry Smith    Plots vectors obtained with DMDACreate2d()
447c6ae99SBarry Smith */
547c6ae99SBarry Smith 
6b45d2f2cSJed Brown #include <petsc-private/daimpl.h>      /*I  "petscdmda.h"   I*/
7b45d2f2cSJed Brown #include <petsc-private/vecimpl.h>
847c6ae99SBarry Smith 
947c6ae99SBarry Smith /*
1047c6ae99SBarry Smith         The data that is passed into the graphics callback
1147c6ae99SBarry Smith */
1247c6ae99SBarry Smith typedef struct {
1347c6ae99SBarry Smith   PetscInt     m,n,step,k;
1447c6ae99SBarry Smith   PetscReal    min,max,scale;
1547c6ae99SBarry Smith   PetscScalar  *xy,*v;
1647c6ae99SBarry Smith   PetscBool    showgrid;
17109c9344SBarry Smith   const char   *name0,*name1;
1847c6ae99SBarry Smith } ZoomCtx;
1947c6ae99SBarry Smith 
20*f3f0eb19SBarry Smith #define RestrictBetween(x,min,max) ((PetscRealPart(x) > max) ? max ((PetscRealPart(x) < min) ? min : PetscRealPart(x)))
21*f3f0eb19SBarry Smith 
2247c6ae99SBarry Smith /*
2347c6ae99SBarry Smith        This does the drawing for one particular field
2447c6ae99SBarry Smith     in one particular set of coordinates. It is a callback
2547c6ae99SBarry Smith     called from PetscDrawZoom()
2647c6ae99SBarry Smith */
2747c6ae99SBarry Smith #undef __FUNCT__
2847c6ae99SBarry Smith #define __FUNCT__ "VecView_MPI_Draw_DA2d_Zoom"
2947c6ae99SBarry Smith PetscErrorCode VecView_MPI_Draw_DA2d_Zoom(PetscDraw draw,void *ctx)
3047c6ae99SBarry Smith {
3147c6ae99SBarry Smith   ZoomCtx        *zctx = (ZoomCtx*)ctx;
3247c6ae99SBarry Smith   PetscErrorCode ierr;
3347c6ae99SBarry Smith   PetscInt       m,n,i,j,k,step,id,c1,c2,c3,c4;
3447c6ae99SBarry Smith   PetscReal      s,min,x1,x2,x3,x4,y_1,y2,y3,y4;
3547c6ae99SBarry Smith   PetscScalar   *v,*xy;
3647c6ae99SBarry Smith 
3747c6ae99SBarry Smith   PetscFunctionBegin;
3847c6ae99SBarry Smith   m    = zctx->m;
3947c6ae99SBarry Smith   n    = zctx->n;
4047c6ae99SBarry Smith   step = zctx->step;
4147c6ae99SBarry Smith   k    = zctx->k;
4247c6ae99SBarry Smith   v    = zctx->v;
4347c6ae99SBarry Smith   xy   = zctx->xy;
4447c6ae99SBarry Smith   s    = zctx->scale;
4547c6ae99SBarry Smith   min  = zctx->min;
46*f3f0eb19SBarry Smith   max  = zctx->max;
4747c6ae99SBarry Smith 
4847c6ae99SBarry Smith   /* PetscDraw the contour plot patch */
4947c6ae99SBarry Smith   for (j=0; j<n-1; j++) {
5047c6ae99SBarry Smith     for (i=0; i<m-1; i++) {
51*f3f0eb19SBarry Smith       id = i+j*m;    x1 = PetscRealPart(xy[2*id]);y_1 = PetscRealPart(xy[2*id+1]);c1 = (int)(PETSC_DRAW_BASIC_COLORS+s*(RestrictBetween(v[k+step*id],min,max)-min));
52*f3f0eb19SBarry Smith       id = i+j*m+1;  x2 = PetscRealPart(xy[2*id]);y2  = y_1;                      c2 = (int)(PETSC_DRAW_BASIC_COLORS+s*(RestrictBetween(v[k+step*id],min,max)-min));
53*f3f0eb19SBarry Smith       id = i+j*m+1+m;x3 = x2;                     y3  = PetscRealPart(xy[2*id+1]);c3 = (int)(PETSC_DRAW_BASIC_COLORS+s*(RestrictBetween(v[k+step*id],min,max)-min));
54*f3f0eb19SBarry Smith       id = i+j*m+m;  x4 = x1;                     y4  = y3;                       c4 = (int)(PETSC_DRAW_BASIC_COLORS+s*(RestrictBetween(v[k+step*id],min,max)-min));
55*f3f0eb19SBarry Smith 
5647c6ae99SBarry Smith       ierr = PetscDrawTriangle(draw,x1,y_1,x2,y2,x3,y3,c1,c2,c3);CHKERRQ(ierr);
5747c6ae99SBarry Smith       ierr = PetscDrawTriangle(draw,x1,y_1,x3,y3,x4,y4,c1,c3,c4);CHKERRQ(ierr);
5847c6ae99SBarry Smith       if (zctx->showgrid) {
5947c6ae99SBarry Smith         ierr = PetscDrawLine(draw,x1,y_1,x2,y2,PETSC_DRAW_BLACK);CHKERRQ(ierr);
6047c6ae99SBarry Smith         ierr = PetscDrawLine(draw,x2,y2,x3,y3,PETSC_DRAW_BLACK);CHKERRQ(ierr);
6147c6ae99SBarry Smith         ierr = PetscDrawLine(draw,x3,y3,x4,y4,PETSC_DRAW_BLACK);CHKERRQ(ierr);
6247c6ae99SBarry Smith         ierr = PetscDrawLine(draw,x4,y4,x1,y_1,PETSC_DRAW_BLACK);CHKERRQ(ierr);
6347c6ae99SBarry Smith       }
6447c6ae99SBarry Smith     }
6547c6ae99SBarry Smith   }
66109c9344SBarry Smith   if (zctx->name0) {
67109c9344SBarry Smith     PetscReal xl,yl,xr,yr,x,y;
68109c9344SBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
69109c9344SBarry Smith     x  = xl + .3*(xr - xl);
70109c9344SBarry Smith     xl = xl + .01*(xr - xl);
71109c9344SBarry Smith     y  = yr - .3*(yr - yl);
72109c9344SBarry Smith     yl = yl + .01*(yr - yl);
73109c9344SBarry Smith     ierr = PetscDrawString(draw,x,yl,PETSC_DRAW_BLACK,zctx->name0);CHKERRQ(ierr);
74109c9344SBarry Smith     ierr = PetscDrawStringVertical(draw,xl,y,PETSC_DRAW_BLACK,zctx->name1);CHKERRQ(ierr);
75109c9344SBarry Smith   }
7647c6ae99SBarry Smith   PetscFunctionReturn(0);
7747c6ae99SBarry Smith }
7847c6ae99SBarry Smith 
7947c6ae99SBarry Smith #undef __FUNCT__
8047c6ae99SBarry Smith #define __FUNCT__ "VecView_MPI_Draw_DA2d"
8147c6ae99SBarry Smith PetscErrorCode VecView_MPI_Draw_DA2d(Vec xin,PetscViewer viewer)
8247c6ae99SBarry Smith {
839a42bb27SBarry Smith   DM                 da,dac,dag;
8447c6ae99SBarry Smith   PetscErrorCode     ierr;
8547c6ae99SBarry Smith   PetscMPIInt        rank;
86f7923d8aSBarry Smith   PetscInt           N,s,M,w;
8747c6ae99SBarry Smith   const PetscInt     *lx,*ly;
8847c6ae99SBarry Smith   PetscReal          coors[4],ymin,ymax,xmin,xmax;
8947c6ae99SBarry Smith   PetscDraw          draw,popup;
9047c6ae99SBarry Smith   PetscBool          isnull,useports = PETSC_FALSE;
9147c6ae99SBarry Smith   MPI_Comm           comm;
9247c6ae99SBarry Smith   Vec                xlocal,xcoor,xcoorl;
931321219cSEthan Coon   DMDABoundaryType   bx,by;
94aa219208SBarry Smith   DMDAStencilType    st;
9547c6ae99SBarry Smith   ZoomCtx            zctx;
96f8631f9bSBarry Smith   PetscDrawViewPorts *ports = PETSC_NULL;
9747c6ae99SBarry Smith   PetscViewerFormat  format;
9820d0051dSBarry Smith   PetscInt           *displayfields;
9967dd0837SBarry Smith   PetscInt           ndisplayfields,i,nbounds;
10067dd0837SBarry Smith   const PetscReal    *bounds;
10147c6ae99SBarry Smith 
10247c6ae99SBarry Smith   PetscFunctionBegin;
10347c6ae99SBarry Smith   zctx.showgrid = PETSC_FALSE;
10447c6ae99SBarry Smith   ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
10547c6ae99SBarry Smith   ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr); if (isnull) PetscFunctionReturn(0);
10603193ff8SBarry Smith   ierr = PetscViewerDrawGetBounds(viewer,&nbounds,&bounds);CHKERRQ(ierr);
10747c6ae99SBarry Smith 
108c688c046SMatthew G Knepley   ierr = VecGetDM(xin,&da);CHKERRQ(ierr);
109aa219208SBarry Smith   if (!da) SETERRQ(((PetscObject)xin)->comm,PETSC_ERR_ARG_WRONG,"Vector not generated from a DMDA");
11047c6ae99SBarry Smith 
11147c6ae99SBarry Smith   ierr = PetscObjectGetComm((PetscObject)xin,&comm);CHKERRQ(ierr);
11247c6ae99SBarry Smith   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
11347c6ae99SBarry Smith 
1141321219cSEthan Coon   ierr = DMDAGetInfo(da,0,&M,&N,0,&zctx.m,&zctx.n,0,&w,&s,&bx,&by,0,&st);CHKERRQ(ierr);
115aa219208SBarry Smith   ierr = DMDAGetOwnershipRanges(da,&lx,&ly,PETSC_NULL);CHKERRQ(ierr);
11647c6ae99SBarry Smith 
11747c6ae99SBarry Smith   /*
11847c6ae99SBarry Smith         Obtain a sequential vector that is going to contain the local values plus ONE layer of
119aa219208SBarry Smith      ghosted values to draw the graphics from. We also need its corresponding DMDA (dac) that will
12047c6ae99SBarry Smith      update the local values pluse ONE layer of ghost values.
12147c6ae99SBarry Smith   */
12247c6ae99SBarry Smith   ierr = PetscObjectQuery((PetscObject)da,"GraphicsGhosted",(PetscObject*)&xlocal);CHKERRQ(ierr);
12347c6ae99SBarry Smith   if (!xlocal) {
124f7923d8aSBarry Smith     if (bx !=  DMDA_BOUNDARY_NONE || by !=  DMDA_BOUNDARY_NONE || s != 1 || st != DMDA_STENCIL_BOX) {
12547c6ae99SBarry Smith       /*
12647c6ae99SBarry Smith          if original da is not of stencil width one, or periodic or not a box stencil then
127aa219208SBarry Smith          create a special DMDA to handle one level of ghost points for graphics
12847c6ae99SBarry Smith       */
1291321219cSEthan Coon       ierr = DMDACreate2d(comm,DMDA_BOUNDARY_NONE,DMDA_BOUNDARY_NONE,DMDA_STENCIL_BOX,M,N,zctx.m,zctx.n,w,1,lx,ly,&dac);CHKERRQ(ierr);
130aa219208SBarry Smith       ierr = PetscInfo(da,"Creating auxilary DMDA for managing graphics ghost points\n");CHKERRQ(ierr);
13147c6ae99SBarry Smith     } else {
13247c6ae99SBarry Smith       /* otherwise we can use the da we already have */
13347c6ae99SBarry Smith       dac = da;
13447c6ae99SBarry Smith     }
13547c6ae99SBarry Smith     /* create local vector for holding ghosted values used in graphics */
136564755cdSBarry Smith     ierr = DMCreateLocalVector(dac,&xlocal);CHKERRQ(ierr);
13747c6ae99SBarry Smith     if (dac != da) {
138aa219208SBarry Smith       /* don't keep any public reference of this DMDA, is is only available through xlocal */
139f7923d8aSBarry Smith       ierr = PetscObjectDereference((PetscObject)dac);CHKERRQ(ierr);
14047c6ae99SBarry Smith     } else {
14147c6ae99SBarry Smith       /* remove association between xlocal and da, because below we compose in the opposite
14247c6ae99SBarry Smith          direction and if we left this connect we'd get a loop, so the objects could
14347c6ae99SBarry Smith          never be destroyed */
144c688c046SMatthew G Knepley       ierr = PetscObjectRemoveReference((PetscObject)xlocal,"__PETSc_dm");CHKERRQ(ierr);
14547c6ae99SBarry Smith     }
14647c6ae99SBarry Smith     ierr = PetscObjectCompose((PetscObject)da,"GraphicsGhosted",(PetscObject)xlocal);CHKERRQ(ierr);
14747c6ae99SBarry Smith     ierr = PetscObjectDereference((PetscObject)xlocal);CHKERRQ(ierr);
14847c6ae99SBarry Smith   } else {
149f7923d8aSBarry Smith     if (bx !=  DMDA_BOUNDARY_NONE || by !=  DMDA_BOUNDARY_NONE || s != 1 || st != DMDA_STENCIL_BOX) {
150c688c046SMatthew G Knepley       ierr = VecGetDM(xlocal, &dac);CHKERRQ(ierr);
151f7923d8aSBarry Smith     } else {
152f7923d8aSBarry Smith       dac = da;
15347c6ae99SBarry Smith     }
15447c6ae99SBarry Smith   }
15547c6ae99SBarry Smith 
15647c6ae99SBarry Smith   /*
15747c6ae99SBarry Smith       Get local (ghosted) values of vector
15847c6ae99SBarry Smith   */
1599a42bb27SBarry Smith   ierr = DMGlobalToLocalBegin(dac,xin,INSERT_VALUES,xlocal);CHKERRQ(ierr);
1609a42bb27SBarry Smith   ierr = DMGlobalToLocalEnd(dac,xin,INSERT_VALUES,xlocal);CHKERRQ(ierr);
16147c6ae99SBarry Smith   ierr = VecGetArray(xlocal,&zctx.v);CHKERRQ(ierr);
16247c6ae99SBarry Smith 
16347c6ae99SBarry Smith   /* get coordinates of nodes */
1646636e97aSMatthew G Knepley   ierr = DMGetCoordinates(da,&xcoor);CHKERRQ(ierr);
16547c6ae99SBarry Smith   if (!xcoor) {
166aa219208SBarry Smith     ierr = DMDASetUniformCoordinates(da,0.0,1.0,0.0,1.0,0.0,0.0);CHKERRQ(ierr);
1676636e97aSMatthew G Knepley     ierr = DMGetCoordinates(da,&xcoor);CHKERRQ(ierr);
16847c6ae99SBarry Smith   }
16947c6ae99SBarry Smith 
17047c6ae99SBarry Smith   /*
17147c6ae99SBarry Smith       Determine the min and max  coordinates in plot
17247c6ae99SBarry Smith   */
17347c6ae99SBarry Smith   ierr = VecStrideMin(xcoor,0,PETSC_NULL,&xmin);CHKERRQ(ierr);
17447c6ae99SBarry Smith   ierr = VecStrideMax(xcoor,0,PETSC_NULL,&xmax);CHKERRQ(ierr);
17547c6ae99SBarry Smith   ierr = VecStrideMin(xcoor,1,PETSC_NULL,&ymin);CHKERRQ(ierr);
17647c6ae99SBarry Smith   ierr = VecStrideMax(xcoor,1,PETSC_NULL,&ymax);CHKERRQ(ierr);
17747c6ae99SBarry Smith   coors[0] = xmin - .05*(xmax- xmin); coors[2] = xmax + .05*(xmax - xmin);
17847c6ae99SBarry Smith   coors[1] = ymin - .05*(ymax- ymin); coors[3] = ymax + .05*(ymax - ymin);
179aa219208SBarry Smith   ierr = PetscInfo4(da,"Preparing DMDA 2d contour plot coordinates %G %G %G %G\n",coors[0],coors[1],coors[2],coors[3]);CHKERRQ(ierr);
18047c6ae99SBarry Smith 
18147c6ae99SBarry Smith   /*
18247c6ae99SBarry Smith        get local ghosted version of coordinates
18347c6ae99SBarry Smith   */
18447c6ae99SBarry Smith   ierr = PetscObjectQuery((PetscObject)da,"GraphicsCoordinateGhosted",(PetscObject*)&xcoorl);CHKERRQ(ierr);
18547c6ae99SBarry Smith   if (!xcoorl) {
186aa219208SBarry Smith     /* create DMDA to get local version of graphics */
1871321219cSEthan Coon     ierr = DMDACreate2d(comm,DMDA_BOUNDARY_NONE,DMDA_BOUNDARY_NONE,DMDA_STENCIL_BOX,M,N,zctx.m,zctx.n,2,1,lx,ly,&dag);CHKERRQ(ierr);
188aa219208SBarry Smith     ierr = PetscInfo(dag,"Creating auxilary DMDA for managing graphics coordinates ghost points\n");CHKERRQ(ierr);
189564755cdSBarry Smith     ierr = DMCreateLocalVector(dag,&xcoorl);CHKERRQ(ierr);
19047c6ae99SBarry Smith     ierr = PetscObjectCompose((PetscObject)da,"GraphicsCoordinateGhosted",(PetscObject)xcoorl);CHKERRQ(ierr);
191f7923d8aSBarry Smith     ierr = PetscObjectDereference((PetscObject)dag);CHKERRQ(ierr);
19247c6ae99SBarry Smith     ierr = PetscObjectDereference((PetscObject)xcoorl);CHKERRQ(ierr);
19347c6ae99SBarry Smith   } else {
194c688c046SMatthew G Knepley     ierr = VecGetDM(xcoorl,&dag);CHKERRQ(ierr);
19547c6ae99SBarry Smith   }
1969a42bb27SBarry Smith   ierr = DMGlobalToLocalBegin(dag,xcoor,INSERT_VALUES,xcoorl);CHKERRQ(ierr);
1979a42bb27SBarry Smith   ierr = DMGlobalToLocalEnd(dag,xcoor,INSERT_VALUES,xcoorl);CHKERRQ(ierr);
19847c6ae99SBarry Smith   ierr = VecGetArray(xcoorl,&zctx.xy);CHKERRQ(ierr);
19947c6ae99SBarry Smith 
20047c6ae99SBarry Smith   /*
20147c6ae99SBarry Smith         Get information about size of area each processor must do graphics for
20247c6ae99SBarry Smith   */
2031321219cSEthan Coon   ierr = DMDAGetInfo(dac,0,&M,&N,0,0,0,0,&zctx.step,0,&bx,&by,0,0);CHKERRQ(ierr);
204f7923d8aSBarry Smith   ierr = DMDAGetGhostCorners(dac,0,0,0,&zctx.m,&zctx.n,0);CHKERRQ(ierr);
20547c6ae99SBarry Smith 
206671f6225SBarry Smith   ierr = PetscOptionsGetBool(PETSC_NULL,"-draw_contour_grid",&zctx.showgrid,PETSC_NULL);CHKERRQ(ierr);
2074e6118eeSBarry Smith 
2084e6118eeSBarry Smith   ierr = DMDASelectFields(da,&ndisplayfields,&displayfields);CHKERRQ(ierr);
20947c6ae99SBarry Smith 
21047c6ae99SBarry Smith   ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
211671f6225SBarry Smith   ierr = PetscOptionsGetBool(PETSC_NULL,"-draw_ports",&useports,PETSC_NULL);CHKERRQ(ierr);
21247c6ae99SBarry Smith   if (useports || format == PETSC_VIEWER_DRAW_PORTS){
21347c6ae99SBarry Smith     ierr = PetscDrawSynchronizedClear(draw);CHKERRQ(ierr);
21420d0051dSBarry Smith     ierr = PetscDrawViewPortsCreate(draw,ndisplayfields,&ports);CHKERRQ(ierr);
215109c9344SBarry Smith     zctx.name0 = 0;
216109c9344SBarry Smith     zctx.name1 = 0;
217109c9344SBarry Smith   } else {
218109c9344SBarry Smith     ierr = DMDAGetCoordinateName(da,0,&zctx.name0);CHKERRQ(ierr);
219109c9344SBarry Smith     ierr = DMDAGetCoordinateName(da,1,&zctx.name1);CHKERRQ(ierr);
22047c6ae99SBarry Smith   }
22120d0051dSBarry Smith 
22247c6ae99SBarry Smith   /*
22347c6ae99SBarry Smith      Loop over each field; drawing each in a different window
22447c6ae99SBarry Smith   */
22520d0051dSBarry Smith   for (i=0; i<ndisplayfields; i++) {
22620d0051dSBarry Smith     zctx.k = displayfields[i];
22747c6ae99SBarry Smith     if (useports) {
22820d0051dSBarry Smith       ierr = PetscDrawViewPortsSet(ports,i);CHKERRQ(ierr);
2299332fd86SBarry Smith     } else {
2309332fd86SBarry Smith       ierr = PetscViewerDrawGetDraw(viewer,i,&draw);CHKERRQ(ierr);
23147c6ae99SBarry Smith     }
23247c6ae99SBarry Smith 
23347c6ae99SBarry Smith     /*
23447c6ae99SBarry Smith         Determine the min and max color in plot
23547c6ae99SBarry Smith     */
23647c6ae99SBarry Smith     ierr = VecStrideMin(xin,zctx.k,PETSC_NULL,&zctx.min);CHKERRQ(ierr);
23747c6ae99SBarry Smith     ierr = VecStrideMax(xin,zctx.k,PETSC_NULL,&zctx.max);CHKERRQ(ierr);
23867dd0837SBarry Smith     if (zctx.k < nbounds) {
239*f3f0eb19SBarry Smith       zctx.min = bounds[2*zctx.k];
240*f3f0eb19SBarry Smith       zctx.max = bounds[2*zctx.k+1];
24167dd0837SBarry Smith     }
24247c6ae99SBarry Smith     if (zctx.min == zctx.max) {
24347c6ae99SBarry Smith       zctx.min -= 1.e-12;
24447c6ae99SBarry Smith       zctx.max += 1.e-12;
24547c6ae99SBarry Smith     }
24647c6ae99SBarry Smith 
24747c6ae99SBarry Smith     if (!rank) {
24847c6ae99SBarry Smith       const char *title;
24947c6ae99SBarry Smith 
250aa219208SBarry Smith       ierr = DMDAGetFieldName(da,zctx.k,&title);CHKERRQ(ierr);
25147c6ae99SBarry Smith       if (title) {
25247c6ae99SBarry Smith         ierr = PetscDrawSetTitle(draw,title);CHKERRQ(ierr);
25347c6ae99SBarry Smith       }
25447c6ae99SBarry Smith     }
25547c6ae99SBarry Smith     ierr = PetscDrawSetCoordinates(draw,coors[0],coors[1],coors[2],coors[3]);CHKERRQ(ierr);
256aa219208SBarry Smith     ierr = PetscInfo2(da,"DMDA 2d contour plot min %G max %G\n",zctx.min,zctx.max);CHKERRQ(ierr);
25747c6ae99SBarry Smith 
25847c6ae99SBarry Smith     ierr = PetscDrawGetPopup(draw,&popup);CHKERRQ(ierr);
25947c6ae99SBarry Smith     if (popup) {ierr = PetscDrawScalePopup(popup,zctx.min,zctx.max);CHKERRQ(ierr);}
26047c6ae99SBarry Smith 
26147c6ae99SBarry Smith     zctx.scale = (245.0 - PETSC_DRAW_BASIC_COLORS)/(zctx.max - zctx.min);
26247c6ae99SBarry Smith 
26347c6ae99SBarry Smith     ierr = PetscDrawZoom(draw,VecView_MPI_Draw_DA2d_Zoom,&zctx);CHKERRQ(ierr);
26447c6ae99SBarry Smith   }
26520d0051dSBarry Smith   ierr = PetscFree(displayfields);CHKERRQ(ierr);
2666bf464f9SBarry Smith   ierr = PetscDrawViewPortsDestroy(ports);CHKERRQ(ierr);
26747c6ae99SBarry Smith 
26847c6ae99SBarry Smith   ierr = VecRestoreArray(xcoorl,&zctx.xy);CHKERRQ(ierr);
26947c6ae99SBarry Smith   ierr = VecRestoreArray(xlocal,&zctx.v);CHKERRQ(ierr);
27047c6ae99SBarry Smith   PetscFunctionReturn(0);
27147c6ae99SBarry Smith }
27247c6ae99SBarry Smith 
27347c6ae99SBarry Smith 
27447c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
27547c6ae99SBarry Smith #undef __FUNCT__
27647c6ae99SBarry Smith #define __FUNCT__ "VecView_MPI_HDF5_DA"
27747c6ae99SBarry Smith PetscErrorCode VecView_MPI_HDF5_DA(Vec xin,PetscViewer viewer)
27847c6ae99SBarry Smith {
2799b2a5a86SJed Brown   DM             dm;
2809b2a5a86SJed Brown   DM_DA          *da;
28147c6ae99SBarry Smith   hid_t          filespace;  /* file dataspace identifier */
2828e2ae6d7SMichael Kraus   hid_t          chunkspace; /* chunk dataset property identifier */
28347c6ae99SBarry Smith   hid_t	         plist_id;   /* property list identifier */
28447c6ae99SBarry Smith   hid_t          dset_id;    /* dataset identifier */
28547c6ae99SBarry Smith   hid_t          memspace;   /* memory dataspace identifier */
28647c6ae99SBarry Smith   hid_t          file_id;
28715214e8eSMatthew G Knepley   hid_t          group;
2888e2ae6d7SMichael Kraus   hid_t          scalartype; /* scalar type (H5T_NATIVE_FLOAT or H5T_NATIVE_DOUBLE) */
28947c6ae99SBarry Smith   herr_t         status;
2908e2ae6d7SMichael Kraus   hsize_t        i, dim;
2918e2ae6d7SMichael Kraus   hsize_t        maxDims[6], dims[6], chunkDims[6], count[6], offset[6];
29215214e8eSMatthew G Knepley   PetscInt       timestep;
2938e2ae6d7SMichael Kraus   PetscScalar    *x;
2948e2ae6d7SMichael Kraus   const char     *vecname;
29515214e8eSMatthew G Knepley   PetscErrorCode ierr;
29647c6ae99SBarry Smith 
29747c6ae99SBarry Smith   PetscFunctionBegin;
29815214e8eSMatthew G Knepley   ierr = PetscViewerHDF5OpenGroup(viewer, &file_id, &group);CHKERRQ(ierr);
2998e2ae6d7SMichael Kraus   ierr = PetscViewerHDF5GetTimestep(viewer, &timestep);CHKERRQ(ierr);
30015214e8eSMatthew G Knepley 
301c688c046SMatthew G Knepley   ierr = VecGetDM(xin,&dm);CHKERRQ(ierr);
3029b2a5a86SJed Brown   if (!dm) SETERRQ(((PetscObject)xin)->comm,PETSC_ERR_ARG_WRONG,"Vector not generated from a DMDA");
3039b2a5a86SJed Brown   da = (DM_DA*)dm->data;
30447c6ae99SBarry Smith 
3058e2ae6d7SMichael Kraus   /* Create the dataspace for the dataset.
3068e2ae6d7SMichael Kraus    *
3078e2ae6d7SMichael Kraus    * dims - holds the current dimensions of the dataset
3088e2ae6d7SMichael Kraus    *
3098e2ae6d7SMichael Kraus    * maxDims - holds the maximum dimensions of the dataset (unlimited
3108e2ae6d7SMichael Kraus    * for the number of time steps with the current dimensions for the
3118e2ae6d7SMichael Kraus    * other dimensions; so only additional time steps can be added).
3128e2ae6d7SMichael Kraus    *
3138e2ae6d7SMichael Kraus    * chunkDims - holds the size of a single time step (required to
3148e2ae6d7SMichael Kraus    * permit extending dataset).
3158e2ae6d7SMichael Kraus    */
3168e2ae6d7SMichael Kraus   dim = 0;
3178e2ae6d7SMichael Kraus   if (timestep >= 0) {
3188e2ae6d7SMichael Kraus     dims[dim]      = timestep+1;
3198e2ae6d7SMichael Kraus     maxDims[dim]   = H5S_UNLIMITED;
3208e2ae6d7SMichael Kraus     chunkDims[dim] = 1;
3218e2ae6d7SMichael Kraus     ++dim;
3228e2ae6d7SMichael Kraus   }
3238e2ae6d7SMichael Kraus   if (da->dim == 3) {
3248e2ae6d7SMichael Kraus     dims[dim]      = PetscHDF5IntCast(da->P);
3258e2ae6d7SMichael Kraus     maxDims[dim]   = dims[dim];
3268e2ae6d7SMichael Kraus     chunkDims[dim] = dims[dim];
3278e2ae6d7SMichael Kraus     ++dim;
3288e2ae6d7SMichael Kraus   }
3298e2ae6d7SMichael Kraus   if (da->dim > 1) {
3308e2ae6d7SMichael Kraus     dims[dim]      = PetscHDF5IntCast(da->N);
3318e2ae6d7SMichael Kraus     maxDims[dim]   = dims[dim];
3328e2ae6d7SMichael Kraus     chunkDims[dim] = dims[dim];
3338e2ae6d7SMichael Kraus     ++dim;
3348e2ae6d7SMichael Kraus   }
3358e2ae6d7SMichael Kraus   dims[dim]    = PetscHDF5IntCast(da->M);
3368e2ae6d7SMichael Kraus   maxDims[dim]   = dims[dim];
3378e2ae6d7SMichael Kraus   chunkDims[dim] = dims[dim];
3388e2ae6d7SMichael Kraus   ++dim;
3398e2ae6d7SMichael Kraus   if (da->w > 1) {
3408e2ae6d7SMichael Kraus     dims[dim]      = PetscHDF5IntCast(da->w);
3418e2ae6d7SMichael Kraus     maxDims[dim]   = dims[dim];
3428e2ae6d7SMichael Kraus     chunkDims[dim] = dims[dim];
3438e2ae6d7SMichael Kraus     ++dim;
3448e2ae6d7SMichael Kraus   }
34547c6ae99SBarry Smith #if defined(PETSC_USE_COMPLEX)
3468e2ae6d7SMichael Kraus     dims[dim]      = 2;
3478e2ae6d7SMichael Kraus     maxDims[dim]   = dims[dim];
3488e2ae6d7SMichael Kraus     chunkDims[dim] = dims[dim];
3498e2ae6d7SMichael Kraus     ++dim;
35047c6ae99SBarry Smith #endif
3518e2ae6d7SMichael Kraus   for (i=0; i < dim; ++i)
3528e2ae6d7SMichael Kraus   filespace = H5Screate_simple(dim, dims, maxDims);
35347c6ae99SBarry Smith   if (filespace == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Screate_simple()");
35447c6ae99SBarry Smith 
35515214e8eSMatthew G Knepley #if defined(PETSC_USE_REAL_SINGLE)
35615214e8eSMatthew G Knepley   scalartype = H5T_NATIVE_FLOAT;
35715214e8eSMatthew G Knepley #elif defined(PETSC_USE_REAL___FLOAT128)
35815214e8eSMatthew G Knepley #error "HDF5 output with 128 bit floats not supported."
35915214e8eSMatthew G Knepley #else
36015214e8eSMatthew G Knepley   scalartype = H5T_NATIVE_DOUBLE;
36115214e8eSMatthew G Knepley #endif
36215214e8eSMatthew G Knepley 
36347c6ae99SBarry Smith   /* Create the dataset with default properties and close filespace */
36447c6ae99SBarry Smith   ierr = PetscObjectGetName((PetscObject)xin,&vecname);CHKERRQ(ierr);
36515214e8eSMatthew G Knepley   if (!H5Lexists(group, vecname, H5P_DEFAULT)) {
3668e2ae6d7SMichael Kraus     /* Create chunk */
3678e2ae6d7SMichael Kraus     chunkspace = H5Pcreate(H5P_DATASET_CREATE);
3688e2ae6d7SMichael Kraus     if (chunkspace == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Pcreate()");
3698e2ae6d7SMichael Kraus     status = H5Pset_chunk(chunkspace, dim, chunkDims); CHKERRQ(status);
3708e2ae6d7SMichael Kraus 
37147c6ae99SBarry Smith #if (H5_VERS_MAJOR * 10000 + H5_VERS_MINOR * 100 + H5_VERS_RELEASE >= 10800)
3728e2ae6d7SMichael Kraus     dset_id = H5Dcreate2(group, vecname, scalartype, filespace, H5P_DEFAULT, chunkspace, H5P_DEFAULT);
37347c6ae99SBarry Smith #else
37415214e8eSMatthew G Knepley     dset_id = H5Dcreate(group, vecname, scalartype, filespace, H5P_DEFAULT);
37547c6ae99SBarry Smith #endif
37647c6ae99SBarry Smith     if (dset_id == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Dcreate2()");
37715214e8eSMatthew G Knepley   } else {
37815214e8eSMatthew G Knepley     dset_id = H5Dopen2(group, vecname, H5P_DEFAULT);
37915214e8eSMatthew G Knepley     status = H5Dset_extent(dset_id, dims);CHKERRQ(status);
38015214e8eSMatthew G Knepley   }
38147c6ae99SBarry Smith   status = H5Sclose(filespace);CHKERRQ(status);
38247c6ae99SBarry Smith 
38347c6ae99SBarry Smith   /* Each process defines a dataset and writes it to the hyperslab in the file */
3848e2ae6d7SMichael Kraus   dim = 0;
3858e2ae6d7SMichael Kraus   if (timestep >= 0) {
3868e2ae6d7SMichael Kraus     offset[dim] = timestep;
3878e2ae6d7SMichael Kraus     ++dim;
3888e2ae6d7SMichael Kraus   }
3898e2ae6d7SMichael Kraus   if (da->dim == 3) offset[dim++] = PetscHDF5IntCast(da->zs);
3908e2ae6d7SMichael Kraus   if (da->dim > 1)  offset[dim++] = PetscHDF5IntCast(da->ys);
3918e2ae6d7SMichael Kraus   offset[dim++] = PetscHDF5IntCast(da->xs/da->w);
3928e2ae6d7SMichael Kraus   if (da->w > 1) offset[dim++] = 0;
39347c6ae99SBarry Smith #if defined(PETSC_USE_COMPLEX)
3948e2ae6d7SMichael Kraus   offset[dim++] = 0;
39547c6ae99SBarry Smith #endif
3968e2ae6d7SMichael Kraus   dim = 0;
3978e2ae6d7SMichael Kraus   if (timestep >= 0) {
3988e2ae6d7SMichael Kraus     count[dim] = 1;
3998e2ae6d7SMichael Kraus     ++dim;
4008e2ae6d7SMichael Kraus   }
4018e2ae6d7SMichael Kraus   if (da->dim == 3) count[dim++] = PetscHDF5IntCast(da->ze - da->zs);
4028e2ae6d7SMichael Kraus   if (da->dim > 1)  count[dim++] = PetscHDF5IntCast(da->ye - da->ys);
4038e2ae6d7SMichael Kraus   count[dim++] = PetscHDF5IntCast((da->xe - da->xs)/da->w);
4048e2ae6d7SMichael Kraus   if (da->w > 1) count[dim++] = PetscHDF5IntCast(da->w);
40547c6ae99SBarry Smith #if defined(PETSC_USE_COMPLEX)
4068e2ae6d7SMichael Kraus   count[dim++] = 2;
40747c6ae99SBarry Smith #endif
40847c6ae99SBarry Smith   memspace = H5Screate_simple(dim, count, NULL);
40947c6ae99SBarry Smith   if (memspace == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Screate_simple()");
41047c6ae99SBarry Smith 
41147c6ae99SBarry Smith   filespace = H5Dget_space(dset_id);
41247c6ae99SBarry Smith   if (filespace == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Dget_space()");
41347c6ae99SBarry Smith   status = H5Sselect_hyperslab(filespace, H5S_SELECT_SET, offset, NULL, count, NULL);CHKERRQ(status);
41447c6ae99SBarry Smith 
41547c6ae99SBarry Smith   /* Create property list for collective dataset write */
41647c6ae99SBarry Smith   plist_id = H5Pcreate(H5P_DATASET_XFER);
41747c6ae99SBarry Smith   if (plist_id == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Pcreate()");
41847c6ae99SBarry Smith #if defined(PETSC_HAVE_H5PSET_FAPL_MPIO)
41947c6ae99SBarry Smith   status = H5Pset_dxpl_mpio(plist_id, H5FD_MPIO_COLLECTIVE);CHKERRQ(status);
42047c6ae99SBarry Smith #endif
42147c6ae99SBarry Smith   /* To write dataset independently use H5Pset_dxpl_mpio(plist_id, H5FD_MPIO_INDEPENDENT) */
42247c6ae99SBarry Smith 
42347c6ae99SBarry Smith   ierr = VecGetArray(xin, &x);CHKERRQ(ierr);
42415214e8eSMatthew G Knepley   status = H5Dwrite(dset_id, scalartype, memspace, filespace, plist_id, x);CHKERRQ(status);
42547c6ae99SBarry Smith   status = H5Fflush(file_id, H5F_SCOPE_GLOBAL);CHKERRQ(status);
42647c6ae99SBarry Smith   ierr = VecRestoreArray(xin, &x);CHKERRQ(ierr);
42747c6ae99SBarry Smith 
42847c6ae99SBarry Smith   /* Close/release resources */
42915214e8eSMatthew G Knepley   if (group != file_id) {
43015214e8eSMatthew G Knepley     status = H5Gclose(group);CHKERRQ(status);
43115214e8eSMatthew G Knepley   }
43247c6ae99SBarry Smith   status = H5Pclose(plist_id);CHKERRQ(status);
43347c6ae99SBarry Smith   status = H5Sclose(filespace);CHKERRQ(status);
43447c6ae99SBarry Smith   status = H5Sclose(memspace);CHKERRQ(status);
43547c6ae99SBarry Smith   status = H5Dclose(dset_id);CHKERRQ(status);
43647c6ae99SBarry Smith   ierr = PetscInfo1(xin,"Wrote Vec object with name %s\n",vecname);CHKERRQ(ierr);
43747c6ae99SBarry Smith   PetscFunctionReturn(0);
43847c6ae99SBarry Smith }
43947c6ae99SBarry Smith #endif
44047c6ae99SBarry Smith 
44109573ac7SBarry Smith extern PetscErrorCode VecView_MPI_Draw_DA1d(Vec,PetscViewer);
44247c6ae99SBarry Smith 
44347c6ae99SBarry Smith #if defined(PETSC_HAVE_MPIIO)
44447c6ae99SBarry Smith #undef __FUNCT__
445aa219208SBarry Smith #define __FUNCT__ "DMDAArrayMPIIO"
446aa219208SBarry Smith static PetscErrorCode DMDAArrayMPIIO(DM da,PetscViewer viewer,Vec xin,PetscBool  write)
44747c6ae99SBarry Smith {
44847c6ae99SBarry Smith   PetscErrorCode    ierr;
44947c6ae99SBarry Smith   MPI_File          mfdes;
45047c6ae99SBarry Smith   PetscMPIInt       gsizes[4],lsizes[4],lstarts[4],asiz,dof;
45147c6ae99SBarry Smith   MPI_Datatype      view;
45247c6ae99SBarry Smith   const PetscScalar *array;
45347c6ae99SBarry Smith   MPI_Offset        off;
45447c6ae99SBarry Smith   MPI_Aint          ub,ul;
45547c6ae99SBarry Smith   PetscInt          type,rows,vecrows,tr[2];
45647c6ae99SBarry Smith   DM_DA             *dd = (DM_DA*)da->data;
45747c6ae99SBarry Smith 
45847c6ae99SBarry Smith   PetscFunctionBegin;
45947c6ae99SBarry Smith   ierr = VecGetSize(xin,&vecrows);CHKERRQ(ierr);
46047c6ae99SBarry Smith   if (!write) {
46147c6ae99SBarry Smith     /* Read vector header. */
46247c6ae99SBarry Smith     ierr = PetscViewerBinaryRead(viewer,tr,2,PETSC_INT);CHKERRQ(ierr);
46347c6ae99SBarry Smith     type = tr[0];
46447c6ae99SBarry Smith     rows = tr[1];
46547c6ae99SBarry Smith     if (type != VEC_FILE_CLASSID) SETERRQ(((PetscObject)da)->comm,PETSC_ERR_ARG_WRONG,"Not vector next in file");
466aa219208SBarry Smith     if (rows != vecrows) SETERRQ(((PetscObject)da)->comm,PETSC_ERR_ARG_SIZ,"Vector in file not same size as DMDA vector");
46747c6ae99SBarry Smith   } else {
46847c6ae99SBarry Smith     tr[0] = VEC_FILE_CLASSID;
46947c6ae99SBarry Smith     tr[1] = vecrows;
47047c6ae99SBarry Smith     ierr = PetscViewerBinaryWrite(viewer,tr,2,PETSC_INT,PETSC_TRUE);CHKERRQ(ierr);
47147c6ae99SBarry Smith   }
47247c6ae99SBarry Smith 
47347c6ae99SBarry Smith   dof = PetscMPIIntCast(dd->w);
47447c6ae99SBarry Smith   gsizes[0]  = dof; gsizes[1] = PetscMPIIntCast(dd->M); gsizes[2] = PetscMPIIntCast(dd->N); gsizes[3] = PetscMPIIntCast(dd->P);
47547c6ae99SBarry Smith   lsizes[0]  = dof;lsizes[1] = PetscMPIIntCast((dd->xe-dd->xs)/dof); lsizes[2] = PetscMPIIntCast(dd->ye-dd->ys); lsizes[3] = PetscMPIIntCast(dd->ze-dd->zs);
47647c6ae99SBarry Smith   lstarts[0] = 0;  lstarts[1] = PetscMPIIntCast(dd->xs/dof); lstarts[2] = PetscMPIIntCast(dd->ys); lstarts[3] = PetscMPIIntCast(dd->zs);
47747c6ae99SBarry Smith   ierr = MPI_Type_create_subarray(dd->dim+1,gsizes,lsizes,lstarts,MPI_ORDER_FORTRAN,MPIU_SCALAR,&view);CHKERRQ(ierr);
47847c6ae99SBarry Smith   ierr = MPI_Type_commit(&view);CHKERRQ(ierr);
47947c6ae99SBarry Smith 
48047c6ae99SBarry Smith   ierr = PetscViewerBinaryGetMPIIODescriptor(viewer,&mfdes);CHKERRQ(ierr);
48147c6ae99SBarry Smith   ierr = PetscViewerBinaryGetMPIIOOffset(viewer,&off);CHKERRQ(ierr);
48247c6ae99SBarry Smith   ierr = MPI_File_set_view(mfdes,off,MPIU_SCALAR,view,(char *)"native",MPI_INFO_NULL);CHKERRQ(ierr);
48347c6ae99SBarry Smith   ierr = VecGetArrayRead(xin,&array);CHKERRQ(ierr);
48447c6ae99SBarry Smith   asiz = lsizes[1]*(lsizes[2] > 0 ? lsizes[2] : 1)*(lsizes[3] > 0 ? lsizes[3] : 1)*dof;
48547c6ae99SBarry Smith   if (write) {
48647c6ae99SBarry Smith     ierr = MPIU_File_write_all(mfdes,(PetscScalar*)array,asiz,MPIU_SCALAR,MPI_STATUS_IGNORE);CHKERRQ(ierr);
48747c6ae99SBarry Smith   } else {
48847c6ae99SBarry Smith     ierr = MPIU_File_read_all(mfdes,(PetscScalar*)array,asiz,MPIU_SCALAR,MPI_STATUS_IGNORE);CHKERRQ(ierr);
48947c6ae99SBarry Smith   }
49047c6ae99SBarry Smith   ierr = MPI_Type_get_extent(view,&ul,&ub);CHKERRQ(ierr);
49147c6ae99SBarry Smith   ierr = PetscViewerBinaryAddMPIIOOffset(viewer,ub);CHKERRQ(ierr);
49247c6ae99SBarry Smith   ierr = VecRestoreArrayRead(xin,&array);CHKERRQ(ierr);
49347c6ae99SBarry Smith   ierr = MPI_Type_free(&view);CHKERRQ(ierr);
49447c6ae99SBarry Smith   PetscFunctionReturn(0);
49547c6ae99SBarry Smith }
49647c6ae99SBarry Smith #endif
49747c6ae99SBarry Smith 
49847c6ae99SBarry Smith EXTERN_C_BEGIN
49947c6ae99SBarry Smith #undef __FUNCT__
50047c6ae99SBarry Smith #define __FUNCT__ "VecView_MPI_DA"
5017087cfbeSBarry Smith PetscErrorCode  VecView_MPI_DA(Vec xin,PetscViewer viewer)
50247c6ae99SBarry Smith {
5039a42bb27SBarry Smith   DM             da;
50447c6ae99SBarry Smith   PetscErrorCode ierr;
50547c6ae99SBarry Smith   PetscInt       dim;
50647c6ae99SBarry Smith   Vec            natural;
5074061b8bfSJed Brown   PetscBool      isdraw,isvtk;
50847c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
50947c6ae99SBarry Smith   PetscBool      ishdf5;
51047c6ae99SBarry Smith #endif
5113f3fd955SJed Brown   const char     *prefix,*name;
51247c6ae99SBarry Smith 
51347c6ae99SBarry Smith   PetscFunctionBegin;
514c688c046SMatthew G Knepley   ierr = VecGetDM(xin,&da);CHKERRQ(ierr);
515aa219208SBarry Smith   if (!da) SETERRQ(((PetscObject)xin)->comm,PETSC_ERR_ARG_WRONG,"Vector not generated from a DMDA");
516251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
517251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERVTK,&isvtk);CHKERRQ(ierr);
51847c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
519251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERHDF5,&ishdf5);CHKERRQ(ierr);
52047c6ae99SBarry Smith #endif
52147c6ae99SBarry Smith   if (isdraw) {
5221321219cSEthan Coon     ierr = DMDAGetInfo(da,&dim,0,0,0,0,0,0,0,0,0,0,0,0);CHKERRQ(ierr);
52347c6ae99SBarry Smith     if (dim == 1) {
52447c6ae99SBarry Smith       ierr = VecView_MPI_Draw_DA1d(xin,viewer);CHKERRQ(ierr);
52547c6ae99SBarry Smith     } else if (dim == 2) {
52647c6ae99SBarry Smith       ierr = VecView_MPI_Draw_DA2d(xin,viewer);CHKERRQ(ierr);
52747c6ae99SBarry Smith     } else {
528aa219208SBarry Smith       SETERRQ1(((PetscObject)da)->comm,PETSC_ERR_SUP,"Cannot graphically view vector associated with this dimensional DMDA %D",dim);
52947c6ae99SBarry Smith     }
5304061b8bfSJed Brown   } else if (isvtk) {           /* Duplicate the Vec and hold a reference to the DM */
5314061b8bfSJed Brown     Vec Y;
5324061b8bfSJed Brown     ierr = PetscObjectReference((PetscObject)da);CHKERRQ(ierr);
5334061b8bfSJed Brown     ierr = VecDuplicate(xin,&Y);CHKERRQ(ierr);
534b51b94faSJed Brown     if (((PetscObject)xin)->name) {
535b51b94faSJed Brown       /* If xin was named, copy the name over to Y. The duplicate names are safe because nobody else will ever see Y. */
536b51b94faSJed Brown       ierr = PetscObjectSetName((PetscObject)Y,((PetscObject)xin)->name);CHKERRQ(ierr);
537b51b94faSJed Brown     }
5384061b8bfSJed Brown     ierr = VecCopy(xin,Y);CHKERRQ(ierr);
53962b69a3fSMatthew G Knepley     ierr = PetscViewerVTKAddField(viewer,(PetscObject)da,DMDAVTKWriteAll,PETSC_VTK_POINT_FIELD,(PetscObject)Y);CHKERRQ(ierr);
54047c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
54147c6ae99SBarry Smith   } else if (ishdf5) {
54247c6ae99SBarry Smith     ierr = VecView_MPI_HDF5_DA(xin,viewer);CHKERRQ(ierr);
54347c6ae99SBarry Smith #endif
54447c6ae99SBarry Smith   } else {
54547c6ae99SBarry Smith #if defined(PETSC_HAVE_MPIIO)
54647c6ae99SBarry Smith     PetscBool  isbinary,isMPIIO;
54747c6ae99SBarry Smith 
548251f4c67SDmitry Karpeev     ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
54947c6ae99SBarry Smith     if (isbinary) {
55047c6ae99SBarry Smith       ierr = PetscViewerBinaryGetMPIIO(viewer,&isMPIIO);CHKERRQ(ierr);
55147c6ae99SBarry Smith       if (isMPIIO) {
552aa219208SBarry Smith        ierr = DMDAArrayMPIIO(da,viewer,xin,PETSC_TRUE);CHKERRQ(ierr);
55347c6ae99SBarry Smith        PetscFunctionReturn(0);
55447c6ae99SBarry Smith       }
55547c6ae99SBarry Smith     }
55647c6ae99SBarry Smith #endif
55747c6ae99SBarry Smith 
55847c6ae99SBarry Smith     /* call viewer on natural ordering */
55947c6ae99SBarry Smith     ierr = PetscObjectGetOptionsPrefix((PetscObject)xin,&prefix);CHKERRQ(ierr);
560aa219208SBarry Smith     ierr = DMDACreateNaturalVector(da,&natural);CHKERRQ(ierr);
56147c6ae99SBarry Smith     ierr = PetscObjectSetOptionsPrefix((PetscObject)natural,prefix);CHKERRQ(ierr);
562aa219208SBarry Smith     ierr = DMDAGlobalToNaturalBegin(da,xin,INSERT_VALUES,natural);CHKERRQ(ierr);
563aa219208SBarry Smith     ierr = DMDAGlobalToNaturalEnd(da,xin,INSERT_VALUES,natural);CHKERRQ(ierr);
5643f3fd955SJed Brown     ierr = PetscObjectGetName((PetscObject)xin,&name);CHKERRQ(ierr);
5653f3fd955SJed Brown     ierr = PetscObjectSetName((PetscObject)natural,name);CHKERRQ(ierr);
56647c6ae99SBarry Smith     ierr = VecView(natural,viewer);CHKERRQ(ierr);
567fcfd50ebSBarry Smith     ierr = VecDestroy(&natural);CHKERRQ(ierr);
56847c6ae99SBarry Smith   }
56947c6ae99SBarry Smith   PetscFunctionReturn(0);
57047c6ae99SBarry Smith }
57147c6ae99SBarry Smith EXTERN_C_END
57247c6ae99SBarry Smith 
57347c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
57447c6ae99SBarry Smith #undef __FUNCT__
57547c6ae99SBarry Smith #define __FUNCT__ "VecLoad_HDF5_DA"
57647c6ae99SBarry Smith PetscErrorCode VecLoad_HDF5_DA(Vec xin, PetscViewer viewer)
57747c6ae99SBarry Smith {
5789a42bb27SBarry Smith   DM             da;
57947c6ae99SBarry Smith   PetscErrorCode ierr;
58025578ef6SJed Brown   hsize_t        dim;
58147c6ae99SBarry Smith   hsize_t        count[5];
58247c6ae99SBarry Smith   hsize_t        offset[5];
58347c6ae99SBarry Smith   PetscInt       cnt = 0;
58447c6ae99SBarry Smith   PetscScalar    *x;
58547c6ae99SBarry Smith   const char     *vecname;
58647c6ae99SBarry Smith   hid_t          filespace; /* file dataspace identifier */
58747c6ae99SBarry Smith   hid_t	         plist_id;  /* property list identifier */
58847c6ae99SBarry Smith   hid_t          dset_id;   /* dataset identifier */
58947c6ae99SBarry Smith   hid_t          memspace;  /* memory dataspace identifier */
59047c6ae99SBarry Smith   hid_t          file_id;
59147c6ae99SBarry Smith   herr_t         status;
5929c7c4993SBarry Smith   DM_DA          *dd;
59347c6ae99SBarry Smith 
59447c6ae99SBarry Smith   PetscFunctionBegin;
59547c6ae99SBarry Smith   ierr = PetscViewerHDF5GetFileId(viewer, &file_id);CHKERRQ(ierr);
596c688c046SMatthew G Knepley   ierr = VecGetDM(xin,&da);CHKERRQ(ierr);
5979c7c4993SBarry Smith   dd = (DM_DA*)da->data;
59847c6ae99SBarry Smith 
59947c6ae99SBarry Smith   /* Create the dataspace for the dataset */
60047c6ae99SBarry Smith   dim       = PetscHDF5IntCast(dd->dim + ((dd->w == 1) ? 0 : 1));
60147c6ae99SBarry Smith #if defined(PETSC_USE_COMPLEX)
60247c6ae99SBarry Smith   dim++;
60347c6ae99SBarry Smith #endif
60447c6ae99SBarry Smith 
60547c6ae99SBarry Smith   /* Create the dataset with default properties and close filespace */
60647c6ae99SBarry Smith   ierr = PetscObjectGetName((PetscObject)xin,&vecname);CHKERRQ(ierr);
60747c6ae99SBarry Smith #if (H5_VERS_MAJOR * 10000 + H5_VERS_MINOR * 100 + H5_VERS_RELEASE >= 10800)
60847c6ae99SBarry Smith   dset_id = H5Dopen2(file_id, vecname, H5P_DEFAULT);
60947c6ae99SBarry Smith #else
61047c6ae99SBarry Smith   dset_id = H5Dopen(file_id, vecname);
61147c6ae99SBarry Smith #endif
61247c6ae99SBarry Smith   if (dset_id == -1) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Dopen2() with Vec named %s",vecname);
61347c6ae99SBarry Smith   filespace = H5Dget_space(dset_id);
61447c6ae99SBarry Smith 
61547c6ae99SBarry Smith   /* Each process defines a dataset and reads it from the hyperslab in the file */
61647c6ae99SBarry Smith   cnt = 0;
61747c6ae99SBarry Smith   if (dd->dim == 3) offset[cnt++] = PetscHDF5IntCast(dd->zs);
61847c6ae99SBarry Smith   if (dd->dim > 1)  offset[cnt++] = PetscHDF5IntCast(dd->ys);
61947c6ae99SBarry Smith   offset[cnt++] = PetscHDF5IntCast(dd->xs/dd->w);
62047c6ae99SBarry Smith   if (dd->w > 1) offset[cnt++] = 0;
62147c6ae99SBarry Smith #if defined(PETSC_USE_COMPLEX)
62247c6ae99SBarry Smith   offset[cnt++] = 0;
62347c6ae99SBarry Smith #endif
62447c6ae99SBarry Smith   cnt = 0;
62547c6ae99SBarry Smith   if (dd->dim == 3) count[cnt++] = PetscHDF5IntCast(dd->ze - dd->zs);
62647c6ae99SBarry Smith   if (dd->dim > 1)  count[cnt++] = PetscHDF5IntCast(dd->ye - dd->ys);
62747c6ae99SBarry Smith   count[cnt++] = PetscHDF5IntCast((dd->xe - dd->xs)/dd->w);
62847c6ae99SBarry Smith   if (dd->w > 1) count[cnt++] = PetscHDF5IntCast(dd->w);
62947c6ae99SBarry Smith #if defined(PETSC_USE_COMPLEX)
63047c6ae99SBarry Smith   count[cnt++] = 2;
63147c6ae99SBarry Smith #endif
63247c6ae99SBarry Smith   memspace = H5Screate_simple(dim, count, NULL);
63347c6ae99SBarry Smith   if (memspace == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Screate_simple()");
63447c6ae99SBarry Smith 
63547c6ae99SBarry Smith   status = H5Sselect_hyperslab(filespace, H5S_SELECT_SET, offset, NULL, count, NULL);CHKERRQ(status);
63647c6ae99SBarry Smith 
63747c6ae99SBarry Smith   /* Create property list for collective dataset write */
63847c6ae99SBarry Smith   plist_id = H5Pcreate(H5P_DATASET_XFER);
63947c6ae99SBarry Smith   if (plist_id == -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"Cannot H5Pcreate()");
64047c6ae99SBarry Smith #if defined(PETSC_HAVE_H5PSET_FAPL_MPIO)
64147c6ae99SBarry Smith   status = H5Pset_dxpl_mpio(plist_id, H5FD_MPIO_COLLECTIVE);CHKERRQ(status);
64247c6ae99SBarry Smith #endif
64347c6ae99SBarry Smith   /* To write dataset independently use H5Pset_dxpl_mpio(plist_id, H5FD_MPIO_INDEPENDENT) */
64447c6ae99SBarry Smith 
64547c6ae99SBarry Smith   ierr = VecGetArray(xin, &x);CHKERRQ(ierr);
64647c6ae99SBarry Smith   status = H5Dread(dset_id, H5T_NATIVE_DOUBLE, memspace, filespace, plist_id, x);CHKERRQ(status);
64747c6ae99SBarry Smith   ierr = VecRestoreArray(xin, &x);CHKERRQ(ierr);
64847c6ae99SBarry Smith 
64947c6ae99SBarry Smith   /* Close/release resources */
65047c6ae99SBarry Smith   status = H5Pclose(plist_id);CHKERRQ(status);
65147c6ae99SBarry Smith   status = H5Sclose(filespace);CHKERRQ(status);
65247c6ae99SBarry Smith   status = H5Sclose(memspace);CHKERRQ(status);
65347c6ae99SBarry Smith   status = H5Dclose(dset_id);CHKERRQ(status);
65447c6ae99SBarry Smith   PetscFunctionReturn(0);
65547c6ae99SBarry Smith }
65647c6ae99SBarry Smith #endif
65747c6ae99SBarry Smith 
65847c6ae99SBarry Smith #undef __FUNCT__
65947c6ae99SBarry Smith #define __FUNCT__ "VecLoad_Binary_DA"
66047c6ae99SBarry Smith PetscErrorCode VecLoad_Binary_DA(Vec xin, PetscViewer viewer)
66147c6ae99SBarry Smith {
6629a42bb27SBarry Smith   DM             da;
66347c6ae99SBarry Smith   PetscErrorCode ierr;
66447c6ae99SBarry Smith   Vec            natural;
66547c6ae99SBarry Smith   const char     *prefix;
66647c6ae99SBarry Smith   PetscInt       bs;
66747c6ae99SBarry Smith   PetscBool      flag;
66847c6ae99SBarry Smith   DM_DA          *dd;
66947c6ae99SBarry Smith #if defined(PETSC_HAVE_MPIIO)
67047c6ae99SBarry Smith   PetscBool      isMPIIO;
67147c6ae99SBarry Smith #endif
67247c6ae99SBarry Smith 
67347c6ae99SBarry Smith   PetscFunctionBegin;
674c688c046SMatthew G Knepley   ierr = VecGetDM(xin,&da);CHKERRQ(ierr);
67547c6ae99SBarry Smith   dd   = (DM_DA*)da->data;
67647c6ae99SBarry Smith #if defined(PETSC_HAVE_MPIIO)
67747c6ae99SBarry Smith   ierr = PetscViewerBinaryGetMPIIO(viewer,&isMPIIO);CHKERRQ(ierr);
67847c6ae99SBarry Smith   if (isMPIIO) {
679aa219208SBarry Smith     ierr = DMDAArrayMPIIO(da,viewer,xin,PETSC_FALSE);CHKERRQ(ierr);
68047c6ae99SBarry Smith     PetscFunctionReturn(0);
68147c6ae99SBarry Smith   }
68247c6ae99SBarry Smith #endif
68347c6ae99SBarry Smith 
68447c6ae99SBarry Smith   ierr = PetscObjectGetOptionsPrefix((PetscObject)xin,&prefix);CHKERRQ(ierr);
685aa219208SBarry Smith   ierr = DMDACreateNaturalVector(da,&natural);CHKERRQ(ierr);
68647c6ae99SBarry Smith   ierr = PetscObjectSetName((PetscObject)natural,((PetscObject)xin)->name);CHKERRQ(ierr);
68747c6ae99SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)natural,prefix);CHKERRQ(ierr);
68847c6ae99SBarry Smith   ierr = VecLoad_Binary(natural,viewer);CHKERRQ(ierr);
689aa219208SBarry Smith   ierr = DMDANaturalToGlobalBegin(da,natural,INSERT_VALUES,xin);CHKERRQ(ierr);
690aa219208SBarry Smith   ierr = DMDANaturalToGlobalEnd(da,natural,INSERT_VALUES,xin);CHKERRQ(ierr);
691fcfd50ebSBarry Smith   ierr = VecDestroy(&natural);CHKERRQ(ierr);
692aa219208SBarry Smith   ierr = PetscInfo(xin,"Loading vector from natural ordering into DMDA\n");CHKERRQ(ierr);
69347c6ae99SBarry Smith   ierr = PetscOptionsGetInt(((PetscObject)xin)->prefix,"-vecload_block_size",&bs,&flag);CHKERRQ(ierr);
69447c6ae99SBarry Smith   if (flag && bs != dd->w) {
695aa219208SBarry Smith     ierr = PetscInfo2(xin,"Block size in file %D not equal to DMDA's dof %D\n",bs,dd->w);CHKERRQ(ierr);
69647c6ae99SBarry Smith   }
69747c6ae99SBarry Smith   PetscFunctionReturn(0);
69847c6ae99SBarry Smith }
69947c6ae99SBarry Smith 
70047c6ae99SBarry Smith EXTERN_C_BEGIN
70147c6ae99SBarry Smith #undef __FUNCT__
70247c6ae99SBarry Smith #define __FUNCT__ "VecLoad_Default_DA"
7037087cfbeSBarry Smith PetscErrorCode  VecLoad_Default_DA(Vec xin, PetscViewer viewer)
70447c6ae99SBarry Smith {
70547c6ae99SBarry Smith   PetscErrorCode ierr;
7069a42bb27SBarry Smith   DM             da;
70747c6ae99SBarry Smith   PetscBool      isbinary;
70847c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
70947c6ae99SBarry Smith   PetscBool      ishdf5;
71047c6ae99SBarry Smith #endif
71147c6ae99SBarry Smith 
71247c6ae99SBarry Smith   PetscFunctionBegin;
713c688c046SMatthew G Knepley   ierr = VecGetDM(xin,&da);CHKERRQ(ierr);
714aa219208SBarry Smith   if (!da) SETERRQ(((PetscObject)xin)->comm,PETSC_ERR_ARG_WRONG,"Vector not generated from a DMDA");
71547c6ae99SBarry Smith 
71647c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
717251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERHDF5,&ishdf5);CHKERRQ(ierr);
71847c6ae99SBarry Smith #endif
719251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
72047c6ae99SBarry Smith 
72147c6ae99SBarry Smith   if (isbinary) {
72247c6ae99SBarry Smith     ierr = VecLoad_Binary_DA(xin,viewer);CHKERRQ(ierr);
72347c6ae99SBarry Smith #if defined(PETSC_HAVE_HDF5)
72447c6ae99SBarry Smith   } else if (ishdf5) {
72547c6ae99SBarry Smith     ierr = VecLoad_HDF5_DA(xin,viewer);CHKERRQ(ierr);
72647c6ae99SBarry Smith #endif
727d34fcf5fSBarry Smith   } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Viewer type %s not supported for vector loading", ((PetscObject)viewer)->type_name);
72847c6ae99SBarry Smith   PetscFunctionReturn(0);
72947c6ae99SBarry Smith }
73047c6ae99SBarry Smith EXTERN_C_END
731