xref: /petsc/src/sys/classes/viewer/impls/draw/drawv.c (revision 3bb1ff401821b9e2ae019d3e61bc8ab4bd4e59d5)
15c6c1daeSBarry Smith 
25c6c1daeSBarry Smith #include <../src/sys/classes/viewer/impls/draw/vdraw.h> /*I "petscdraw.h" I*/
3665c2dedSJed Brown #include <petscviewer.h>                                /*I "petscviewer.h" I*/
45c6c1daeSBarry Smith 
55c6c1daeSBarry Smith #undef __FUNCT__
65c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDestroy_Draw"
75c6c1daeSBarry Smith PetscErrorCode PetscViewerDestroy_Draw(PetscViewer v)
85c6c1daeSBarry Smith {
95c6c1daeSBarry Smith   PetscErrorCode   ierr;
105c6c1daeSBarry Smith   PetscInt         i;
115c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)v->data;
125c6c1daeSBarry Smith 
135c6c1daeSBarry Smith   PetscFunctionBegin;
145c6c1daeSBarry Smith   if (vdraw->singleton_made) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Destroying PetscViewer without first restoring singleton");
155c6c1daeSBarry Smith   for (i=0; i<vdraw->draw_max; i++) {
165c6c1daeSBarry Smith     ierr = PetscDrawAxisDestroy(&vdraw->drawaxis[i]);CHKERRQ(ierr);
175c6c1daeSBarry Smith     ierr = PetscDrawLGDestroy(&vdraw->drawlg[i]);CHKERRQ(ierr);
185c6c1daeSBarry Smith     ierr = PetscDrawDestroy(&vdraw->draw[i]);CHKERRQ(ierr);
195c6c1daeSBarry Smith   }
205c6c1daeSBarry Smith 
215c6c1daeSBarry Smith   ierr = PetscFree(vdraw->display);CHKERRQ(ierr);
225c6c1daeSBarry Smith   ierr = PetscFree(vdraw->title);CHKERRQ(ierr);
235c6c1daeSBarry Smith   ierr = PetscFree3(vdraw->draw,vdraw->drawlg,vdraw->drawaxis);CHKERRQ(ierr);
245c6c1daeSBarry Smith   ierr = PetscFree(vdraw->bounds);CHKERRQ(ierr);
255c6c1daeSBarry Smith   ierr = PetscFree(vdraw);CHKERRQ(ierr);
265c6c1daeSBarry Smith   PetscFunctionReturn(0);
275c6c1daeSBarry Smith }
285c6c1daeSBarry Smith 
295c6c1daeSBarry Smith #undef __FUNCT__
305c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerFlush_Draw"
315c6c1daeSBarry Smith PetscErrorCode PetscViewerFlush_Draw(PetscViewer v)
325c6c1daeSBarry Smith {
335c6c1daeSBarry Smith   PetscErrorCode   ierr;
345c6c1daeSBarry Smith   PetscInt         i;
355c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)v->data;
365c6c1daeSBarry Smith 
375c6c1daeSBarry Smith   PetscFunctionBegin;
385c6c1daeSBarry Smith   for (i=0; i<vdraw->draw_max; i++) {
395c6c1daeSBarry Smith     if (vdraw->draw[i]) {ierr = PetscDrawSynchronizedFlush(vdraw->draw[i]);CHKERRQ(ierr);}
405c6c1daeSBarry Smith   }
415c6c1daeSBarry Smith   PetscFunctionReturn(0);
425c6c1daeSBarry Smith }
435c6c1daeSBarry Smith 
445c6c1daeSBarry Smith #undef __FUNCT__
455c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawGetDraw"
465c6c1daeSBarry Smith /*@C
475c6c1daeSBarry Smith     PetscViewerDrawGetDraw - Returns PetscDraw object from PetscViewer object.
485c6c1daeSBarry Smith     This PetscDraw object may then be used to perform graphics using
495c6c1daeSBarry Smith     PetscDrawXXX() commands.
505c6c1daeSBarry Smith 
515c6c1daeSBarry Smith     Not collective (but PetscDraw returned will be parallel object if PetscViewer is)
525c6c1daeSBarry Smith 
535c6c1daeSBarry Smith     Input Parameters:
545c6c1daeSBarry Smith +  viewer - the PetscViewer (created with PetscViewerDrawOpen())
555c6c1daeSBarry Smith -   windownumber - indicates which subwindow (usually 0)
565c6c1daeSBarry Smith 
575c6c1daeSBarry Smith     Ouput Parameter:
585c6c1daeSBarry Smith .   draw - the draw object
595c6c1daeSBarry Smith 
605c6c1daeSBarry Smith     Level: intermediate
615c6c1daeSBarry Smith 
625c6c1daeSBarry Smith    Concepts: drawing^accessing PetscDraw context from PetscViewer
635c6c1daeSBarry Smith    Concepts: graphics
645c6c1daeSBarry Smith 
655c6c1daeSBarry Smith .seealso: PetscViewerDrawGetLG(), PetscViewerDrawGetAxis(), PetscViewerDrawOpen()
665c6c1daeSBarry Smith @*/
675c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawGetDraw(PetscViewer viewer,PetscInt windownumber,PetscDraw *draw)
685c6c1daeSBarry Smith {
695c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
705c6c1daeSBarry Smith   PetscErrorCode   ierr;
715c6c1daeSBarry Smith   PetscBool        isdraw;
725c6c1daeSBarry Smith   char             *title;
735c6c1daeSBarry Smith 
745c6c1daeSBarry Smith   PetscFunctionBegin;
755c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
765c6c1daeSBarry Smith   if (draw) PetscValidPointer(draw,3);
775c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
785c6c1daeSBarry Smith   if (!isdraw) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Must be draw type PetscViewer");
795c6c1daeSBarry Smith   if (windownumber < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Window number cannot be negative");
805c6c1daeSBarry Smith   windownumber += vdraw->draw_base;
815c6c1daeSBarry Smith   if (windownumber >= vdraw->draw_max) {
825c6c1daeSBarry Smith     /* allocate twice as many slots as needed */
835c6c1daeSBarry Smith     PetscInt      draw_max  = vdraw->draw_max;
845c6c1daeSBarry Smith     PetscDraw     *tdraw    = vdraw->draw;
855c6c1daeSBarry Smith     PetscDrawLG   *drawlg   = vdraw->drawlg;
865c6c1daeSBarry Smith     PetscDrawAxis *drawaxis = vdraw->drawaxis;
875c6c1daeSBarry Smith 
885c6c1daeSBarry Smith     vdraw->draw_max = 2*windownumber;
89a297a907SKarl Rupp 
905c6c1daeSBarry Smith     ierr = PetscMalloc3(vdraw->draw_max,PetscDraw,&vdraw->draw,vdraw->draw_max,PetscDrawLG,&vdraw->drawlg,vdraw->draw_max,PetscDrawAxis,&vdraw->drawaxis);CHKERRQ(ierr);
915c6c1daeSBarry Smith     ierr = PetscMemzero(vdraw->draw,vdraw->draw_max*sizeof(PetscDraw));CHKERRQ(ierr);
925c6c1daeSBarry Smith     ierr = PetscMemzero(vdraw->drawlg,vdraw->draw_max*sizeof(PetscDrawLG));CHKERRQ(ierr);
935c6c1daeSBarry Smith     ierr = PetscMemzero(vdraw->drawaxis,vdraw->draw_max*sizeof(PetscDrawAxis));CHKERRQ(ierr);
945c6c1daeSBarry Smith 
955c6c1daeSBarry Smith     ierr = PetscMemcpy(vdraw->draw,tdraw,draw_max*sizeof(PetscDraw));CHKERRQ(ierr);
965c6c1daeSBarry Smith     ierr = PetscMemcpy(vdraw->drawlg,drawlg,draw_max*sizeof(PetscDrawLG));CHKERRQ(ierr);
975c6c1daeSBarry Smith     ierr = PetscMemcpy(vdraw->drawaxis,drawaxis,draw_max*sizeof(PetscDrawAxis));CHKERRQ(ierr);
985c6c1daeSBarry Smith 
995c6c1daeSBarry Smith     ierr = PetscFree3(tdraw,drawlg,drawaxis);CHKERRQ(ierr);
1005c6c1daeSBarry Smith   }
1015c6c1daeSBarry Smith 
1025c6c1daeSBarry Smith   if (!vdraw->draw[windownumber]) {
103a297a907SKarl Rupp     if (!windownumber) title = vdraw->title;
104a297a907SKarl Rupp     else {
1055c6c1daeSBarry Smith       char tmp_str[128];
1065c6c1daeSBarry Smith       ierr  = PetscSNPrintf(tmp_str, 128, "%s:%d", vdraw->title,windownumber);CHKERRQ(ierr);
1075c6c1daeSBarry Smith       title = tmp_str;
1085c6c1daeSBarry Smith     }
109ce94432eSBarry Smith     ierr = PetscDrawCreate(PetscObjectComm((PetscObject)viewer),vdraw->display,title,PETSC_DECIDE,PETSC_DECIDE,vdraw->w,vdraw->h,&vdraw->draw[windownumber]);CHKERRQ(ierr);
110afe78b3cSBarry Smith     ierr = PetscDrawSetPause(vdraw->draw[windownumber],vdraw->pause);CHKERRQ(ierr);
1115c6c1daeSBarry Smith     ierr = PetscDrawSetFromOptions(vdraw->draw[windownumber]);CHKERRQ(ierr);
1125c6c1daeSBarry Smith   }
1135c6c1daeSBarry Smith   if (draw) *draw = vdraw->draw[windownumber];
1145c6c1daeSBarry Smith   if (draw) PetscValidHeaderSpecific(*draw,PETSC_DRAW_CLASSID,-1);
1155c6c1daeSBarry Smith   PetscFunctionReturn(0);
1165c6c1daeSBarry Smith }
1175c6c1daeSBarry Smith 
1185c6c1daeSBarry Smith #undef __FUNCT__
1195c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawBaseAdd"
1205c6c1daeSBarry Smith /*@C
1215c6c1daeSBarry Smith     PetscViewerDrawBaseAdd - add to the base integer that is added to the windownumber passed to PetscViewerDrawGetDraw()
1225c6c1daeSBarry Smith 
1235c6c1daeSBarry Smith     Not collective (but PetscDraw returned will be parallel object if PetscViewer is)
1245c6c1daeSBarry Smith 
1255c6c1daeSBarry Smith     Input Parameters:
1265c6c1daeSBarry Smith +  viewer - the PetscViewer (created with PetscViewerDrawOpen())
1275c6c1daeSBarry Smith -   windownumber - how much to add to the base
1285c6c1daeSBarry Smith 
1295c6c1daeSBarry Smith     Level: developer
1305c6c1daeSBarry Smith 
1315c6c1daeSBarry Smith    Concepts: drawing^accessing PetscDraw context from PetscViewer
1325c6c1daeSBarry Smith    Concepts: graphics
1335c6c1daeSBarry Smith 
1345c6c1daeSBarry Smith .seealso: PetscViewerDrawGetLG(), PetscViewerDrawGetAxis(), PetscViewerDrawOpen(), PetscViewerDrawGetDraw(), PetscViewerDrawBaseSet()
1355c6c1daeSBarry Smith @*/
1365c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawBaseAdd(PetscViewer viewer,PetscInt windownumber)
1375c6c1daeSBarry Smith {
1385c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
1395c6c1daeSBarry Smith   PetscErrorCode   ierr;
1405c6c1daeSBarry Smith   PetscBool        isdraw;
1415c6c1daeSBarry Smith 
1425c6c1daeSBarry Smith   PetscFunctionBegin;
1435c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
1445c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
1455c6c1daeSBarry Smith   if (!isdraw) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Must be draw type PetscViewer");
1465c6c1daeSBarry Smith   if (windownumber + vdraw->draw_base < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Resulting base %D cannot be negative",windownumber+vdraw->draw_base);
1475c6c1daeSBarry Smith   vdraw->draw_base += windownumber;
1485c6c1daeSBarry Smith   PetscFunctionReturn(0);
1495c6c1daeSBarry Smith }
1505c6c1daeSBarry Smith 
1515c6c1daeSBarry Smith #undef __FUNCT__
1525c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawBaseSet"
1535c6c1daeSBarry Smith /*@C
1545c6c1daeSBarry Smith     PetscViewerDrawBaseSet - sets the base integer that is added to the windownumber passed to PetscViewerDrawGetDraw()
1555c6c1daeSBarry Smith 
1565c6c1daeSBarry Smith     Not collective (but PetscDraw returned will be parallel object if PetscViewer is)
1575c6c1daeSBarry Smith 
1585c6c1daeSBarry Smith     Input Parameters:
1595c6c1daeSBarry Smith +  viewer - the PetscViewer (created with PetscViewerDrawOpen())
1605c6c1daeSBarry Smith -   windownumber - value to set the base
1615c6c1daeSBarry Smith 
1625c6c1daeSBarry Smith     Level: developer
1635c6c1daeSBarry Smith 
1645c6c1daeSBarry Smith    Concepts: drawing^accessing PetscDraw context from PetscViewer
1655c6c1daeSBarry Smith    Concepts: graphics
1665c6c1daeSBarry Smith 
1675c6c1daeSBarry Smith .seealso: PetscViewerDrawGetLG(), PetscViewerDrawGetAxis(), PetscViewerDrawOpen(), PetscViewerDrawGetDraw(), PetscViewerDrawBaseAdd()
1685c6c1daeSBarry Smith @*/
1695c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawBaseSet(PetscViewer viewer,PetscInt windownumber)
1705c6c1daeSBarry Smith {
1715c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
1725c6c1daeSBarry Smith   PetscErrorCode   ierr;
1735c6c1daeSBarry Smith   PetscBool        isdraw;
1745c6c1daeSBarry Smith 
1755c6c1daeSBarry Smith   PetscFunctionBegin;
1765c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
1775c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
1785c6c1daeSBarry Smith   if (!isdraw) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Must be draw type PetscViewer");
1795c6c1daeSBarry Smith   if (windownumber < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Resulting base %D cannot be negative",windownumber);
1805c6c1daeSBarry Smith   vdraw->draw_base = windownumber;
1815c6c1daeSBarry Smith   PetscFunctionReturn(0);
1825c6c1daeSBarry Smith }
1835c6c1daeSBarry Smith 
1845c6c1daeSBarry Smith #undef __FUNCT__
1855c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawGetDrawLG"
1865c6c1daeSBarry Smith /*@C
1875c6c1daeSBarry Smith     PetscViewerDrawGetDrawLG - Returns PetscDrawLG object from PetscViewer object.
1885c6c1daeSBarry Smith     This PetscDrawLG object may then be used to perform graphics using
1895c6c1daeSBarry Smith     PetscDrawLGXXX() commands.
1905c6c1daeSBarry Smith 
1915c6c1daeSBarry Smith     Not Collective (but PetscDrawLG object will be parallel if PetscViewer is)
1925c6c1daeSBarry Smith 
1935c6c1daeSBarry Smith     Input Parameter:
1945c6c1daeSBarry Smith +   PetscViewer - the PetscViewer (created with PetscViewerDrawOpen())
1955c6c1daeSBarry Smith -   windownumber - indicates which subwindow (usually 0)
1965c6c1daeSBarry Smith 
1975c6c1daeSBarry Smith     Ouput Parameter:
1985c6c1daeSBarry Smith .   draw - the draw line graph object
1995c6c1daeSBarry Smith 
2005c6c1daeSBarry Smith     Level: intermediate
2015c6c1daeSBarry Smith 
2025c6c1daeSBarry Smith   Concepts: line graph^accessing context
2035c6c1daeSBarry Smith 
2045c6c1daeSBarry Smith .seealso: PetscViewerDrawGetDraw(), PetscViewerDrawGetAxis(), PetscViewerDrawOpen()
2055c6c1daeSBarry Smith @*/
2065c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawGetDrawLG(PetscViewer viewer,PetscInt windownumber,PetscDrawLG *drawlg)
2075c6c1daeSBarry Smith {
2085c6c1daeSBarry Smith   PetscErrorCode   ierr;
2095c6c1daeSBarry Smith   PetscBool        isdraw;
2105c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
2115c6c1daeSBarry Smith 
2125c6c1daeSBarry Smith   PetscFunctionBegin;
2135c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
2145c6c1daeSBarry Smith   PetscValidPointer(drawlg,3);
2155c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
2165c6c1daeSBarry Smith   if (!isdraw) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Must be draw type PetscViewer");
2175c6c1daeSBarry Smith   if (windownumber < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Window number cannot be negative");
2185c6c1daeSBarry Smith 
2195c6c1daeSBarry Smith   if (windownumber+vdraw->draw_base >= vdraw->draw_max || !vdraw->draw[windownumber+vdraw->draw_base]) {
2200298fd71SBarry Smith     ierr = PetscViewerDrawGetDraw(viewer,windownumber,NULL);CHKERRQ(ierr);
2215c6c1daeSBarry Smith   }
2225c6c1daeSBarry Smith   if (!vdraw->drawlg[windownumber+vdraw->draw_base]) {
2235c6c1daeSBarry Smith     ierr = PetscDrawLGCreate(vdraw->draw[windownumber+vdraw->draw_base],1,&vdraw->drawlg[windownumber+vdraw->draw_base]);CHKERRQ(ierr);
224*3bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)viewer,(PetscObject)vdraw->drawlg[windownumber+vdraw->draw_base]);CHKERRQ(ierr);
2255c6c1daeSBarry Smith   }
2265c6c1daeSBarry Smith   *drawlg = vdraw->drawlg[windownumber+vdraw->draw_base];
2275c6c1daeSBarry Smith   PetscFunctionReturn(0);
2285c6c1daeSBarry Smith }
2295c6c1daeSBarry Smith 
2305c6c1daeSBarry Smith #undef __FUNCT__
2315c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawGetDrawAxis"
2325c6c1daeSBarry Smith /*@C
2335c6c1daeSBarry Smith     PetscViewerDrawGetDrawAxis - Returns PetscDrawAxis object from PetscViewer object.
2345c6c1daeSBarry Smith     This PetscDrawAxis object may then be used to perform graphics using
2355c6c1daeSBarry Smith     PetscDrawAxisXXX() commands.
2365c6c1daeSBarry Smith 
2375c6c1daeSBarry Smith     Not Collective (but PetscDrawAxis object will be parallel if PetscViewer is)
2385c6c1daeSBarry Smith 
2395c6c1daeSBarry Smith     Input Parameter:
2405c6c1daeSBarry Smith +   viewer - the PetscViewer (created with PetscViewerDrawOpen()
2415c6c1daeSBarry Smith -   windownumber - indicates which subwindow (usually 0)
2425c6c1daeSBarry Smith 
2435c6c1daeSBarry Smith     Ouput Parameter:
2445c6c1daeSBarry Smith .   drawaxis - the draw axis object
2455c6c1daeSBarry Smith 
2465c6c1daeSBarry Smith     Level: advanced
2475c6c1daeSBarry Smith 
2485c6c1daeSBarry Smith   Concepts: line graph^accessing context
2495c6c1daeSBarry Smith 
2505c6c1daeSBarry Smith .seealso: PetscViewerDrawGetDraw(), PetscViewerDrawGetLG(), PetscViewerDrawOpen()
2515c6c1daeSBarry Smith @*/
2525c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawGetDrawAxis(PetscViewer viewer,PetscInt windownumber,PetscDrawAxis *drawaxis)
2535c6c1daeSBarry Smith {
2545c6c1daeSBarry Smith   PetscErrorCode   ierr;
2555c6c1daeSBarry Smith   PetscBool        isdraw;
2565c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;;
2575c6c1daeSBarry Smith 
2585c6c1daeSBarry Smith   PetscFunctionBegin;
2595c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
2605c6c1daeSBarry Smith   PetscValidPointer(drawaxis,3);
2615c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
2625c6c1daeSBarry Smith   if (!isdraw) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Must be draw type PetscViewer");
2635c6c1daeSBarry Smith   if (windownumber < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Window number cannot be negative");
2645c6c1daeSBarry Smith 
2655c6c1daeSBarry Smith   if (windownumber+vdraw->draw_base >= vdraw->draw_max || !vdraw->draw[windownumber+vdraw->draw_base]) {
2660298fd71SBarry Smith     ierr = PetscViewerDrawGetDraw(viewer,windownumber,NULL);CHKERRQ(ierr);
2675c6c1daeSBarry Smith   }
2685c6c1daeSBarry Smith   if (!vdraw->drawaxis[windownumber+vdraw->draw_base]) {
2695c6c1daeSBarry Smith     ierr = PetscDrawAxisCreate(vdraw->draw[windownumber+vdraw->draw_base],&vdraw->drawaxis[windownumber+vdraw->draw_base]);CHKERRQ(ierr);
270*3bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)viewer,(PetscObject)vdraw->drawaxis[windownumber+vdraw->draw_base]);CHKERRQ(ierr);
2715c6c1daeSBarry Smith   }
2725c6c1daeSBarry Smith   *drawaxis = vdraw->drawaxis[windownumber+vdraw->draw_base];
2735c6c1daeSBarry Smith   PetscFunctionReturn(0);
2745c6c1daeSBarry Smith }
2755c6c1daeSBarry Smith 
2765c6c1daeSBarry Smith #undef __FUNCT__
2775c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawResize"
2785c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawResize(PetscViewer v,int w,int h)
2795c6c1daeSBarry Smith {
2805c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)v->data;
2815c6c1daeSBarry Smith 
2825c6c1daeSBarry Smith   PetscFunctionBegin;
2835c6c1daeSBarry Smith   vdraw->h = h;
2845c6c1daeSBarry Smith   vdraw->w = w;
2855c6c1daeSBarry Smith   PetscFunctionReturn(0);
2865c6c1daeSBarry Smith }
2875c6c1daeSBarry Smith 
2885c6c1daeSBarry Smith #undef __FUNCT__
2895c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawSetInfo"
2905c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawSetInfo(PetscViewer v,const char display[],const char title[],int x,int y,int w,int h)
2915c6c1daeSBarry Smith {
2925c6c1daeSBarry Smith   PetscErrorCode   ierr;
2935c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)v->data;
2945c6c1daeSBarry Smith 
2955c6c1daeSBarry Smith   PetscFunctionBegin;
2965c6c1daeSBarry Smith   vdraw->h = h;
2975c6c1daeSBarry Smith   vdraw->w = w;
2985c6c1daeSBarry Smith   ierr     = PetscStrallocpy(display,&vdraw->display);CHKERRQ(ierr);
2995c6c1daeSBarry Smith   ierr     = PetscStrallocpy(title,&vdraw->title);CHKERRQ(ierr);
3005c6c1daeSBarry Smith   PetscFunctionReturn(0);
3015c6c1daeSBarry Smith }
3025c6c1daeSBarry Smith 
3035c6c1daeSBarry Smith #undef __FUNCT__
3045c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawOpen"
3055c6c1daeSBarry Smith /*@C
3065c6c1daeSBarry Smith    PetscViewerDrawOpen - Opens a window for use as a PetscViewer. If you want to
3075c6c1daeSBarry Smith    do graphics in this window, you must call PetscViewerDrawGetDraw() and
3085c6c1daeSBarry Smith    perform the graphics on the PetscDraw object.
3095c6c1daeSBarry Smith 
3105c6c1daeSBarry Smith    Collective on MPI_Comm
3115c6c1daeSBarry Smith 
3125c6c1daeSBarry Smith    Input Parameters:
3135c6c1daeSBarry Smith +  comm - communicator that will share window
3145c6c1daeSBarry Smith .  display - the X display on which to open, or null for the local machine
3155c6c1daeSBarry Smith .  title - the title to put in the title bar, or null for no title
3165c6c1daeSBarry Smith .  x, y - the screen coordinates of the upper left corner of window, or use PETSC_DECIDE
3175c6c1daeSBarry Smith -  w, h - window width and height in pixels, or may use PETSC_DECIDE or PETSC_DRAW_FULL_SIZE, PETSC_DRAW_HALF_SIZE,
3185c6c1daeSBarry Smith           PETSC_DRAW_THIRD_SIZE, PETSC_DRAW_QUARTER_SIZE
3195c6c1daeSBarry Smith 
3205c6c1daeSBarry Smith    Output Parameters:
3215c6c1daeSBarry Smith . viewer - the PetscViewer
3225c6c1daeSBarry Smith 
3235c6c1daeSBarry Smith    Format Options:
3245c6c1daeSBarry Smith +  PETSC_VIEWER_DRAW_BASIC - displays with basic format
3255c6c1daeSBarry Smith -  PETSC_VIEWER_DRAW_LG    - displays using a line graph
3265c6c1daeSBarry Smith 
3275c6c1daeSBarry Smith    Options Database Keys:
3285c6c1daeSBarry Smith    PetscViewerDrawOpen() calls PetscDrawCreate(), so see the manual page for
3295c6c1daeSBarry Smith    PetscDrawCreate() for runtime options, including
3305c6c1daeSBarry Smith +  -draw_type x or null
3315c6c1daeSBarry Smith .  -nox - Disables all x-windows output
3325c6c1daeSBarry Smith .  -display <name> - Specifies name of machine for the X display
3335c6c1daeSBarry Smith .  -geometry <x,y,w,h> - allows setting the window location and size
3345c6c1daeSBarry Smith -  -draw_pause <pause> - Sets time (in seconds) that the
3355c6c1daeSBarry Smith      program pauses after PetscDrawPause() has been called
3365c6c1daeSBarry Smith      (0 is default, -1 implies until user input).
3375c6c1daeSBarry Smith 
3385c6c1daeSBarry Smith    Level: beginner
3395c6c1daeSBarry Smith 
3405c6c1daeSBarry Smith    Note for Fortran Programmers:
3415c6c1daeSBarry Smith    Whenever indicating null character data in a Fortran code,
3420298fd71SBarry Smith    NULL_CHARACTER must be employed; using NULL is not
3430298fd71SBarry Smith    correct for character data!  Thus, NULL_CHARACTER can be
3445c6c1daeSBarry Smith    used for the display and title input parameters.
3455c6c1daeSBarry Smith 
3465c6c1daeSBarry Smith   Concepts: graphics^opening PetscViewer
3475c6c1daeSBarry Smith   Concepts: drawing^opening PetscViewer
3485c6c1daeSBarry Smith 
3495c6c1daeSBarry Smith 
3505c6c1daeSBarry Smith .seealso: PetscDrawCreate(), PetscViewerDestroy(), PetscViewerDrawGetDraw(), PetscViewerCreate(), PETSC_VIEWER_DRAW_,
3515c6c1daeSBarry Smith           PETSC_VIEWER_DRAW_WORLD, PETSC_VIEWER_DRAW_SELF
3525c6c1daeSBarry Smith @*/
3535c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawOpen(MPI_Comm comm,const char display[],const char title[],int x,int y,int w,int h,PetscViewer *viewer)
3545c6c1daeSBarry Smith {
3555c6c1daeSBarry Smith   PetscErrorCode ierr;
3565c6c1daeSBarry Smith 
3575c6c1daeSBarry Smith   PetscFunctionBegin;
3585c6c1daeSBarry Smith   ierr = PetscViewerCreate(comm,viewer);CHKERRQ(ierr);
3595c6c1daeSBarry Smith   ierr = PetscViewerSetType(*viewer,PETSCVIEWERDRAW);CHKERRQ(ierr);
3605c6c1daeSBarry Smith   ierr = PetscViewerDrawSetInfo(*viewer,display,title,x,y,w,h);CHKERRQ(ierr);
3615c6c1daeSBarry Smith   PetscFunctionReturn(0);
3625c6c1daeSBarry Smith }
3635c6c1daeSBarry Smith 
3645c6c1daeSBarry Smith #undef __FUNCT__
3655c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerGetSingleton_Draw"
3665c6c1daeSBarry Smith PetscErrorCode PetscViewerGetSingleton_Draw(PetscViewer viewer,PetscViewer *sviewer)
3675c6c1daeSBarry Smith {
3685c6c1daeSBarry Smith   PetscErrorCode   ierr;
3695c6c1daeSBarry Smith   PetscMPIInt      rank;
3705c6c1daeSBarry Smith   PetscInt         i;
3715c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data,*vsdraw;
3725c6c1daeSBarry Smith 
3735c6c1daeSBarry Smith   PetscFunctionBegin;
3745c6c1daeSBarry Smith   if (vdraw->singleton_made) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Trying to get singleton without first restoring previous");
3755c6c1daeSBarry Smith 
3765c6c1daeSBarry Smith   /* only processor zero can use the PetscViewer draw singleton */
377ce94432eSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)viewer),&rank);CHKERRQ(ierr);
3785c6c1daeSBarry Smith   if (!rank) {
3795c6c1daeSBarry Smith     ierr   = PetscViewerCreate(PETSC_COMM_SELF,sviewer);CHKERRQ(ierr);
3805c6c1daeSBarry Smith     ierr   = PetscViewerSetType(*sviewer,PETSCVIEWERDRAW);CHKERRQ(ierr);
3815c6c1daeSBarry Smith     vsdraw = (PetscViewer_Draw*)(*sviewer)->data;
3825c6c1daeSBarry Smith     for (i=0; i<vdraw->draw_max; i++) {
3835c6c1daeSBarry Smith       if (vdraw->draw[i]) {
3845c6c1daeSBarry Smith         ierr = PetscDrawGetSingleton(vdraw->draw[i],&vsdraw->draw[i]);CHKERRQ(ierr);
3855c6c1daeSBarry Smith       }
3865c6c1daeSBarry Smith     }
3875c6c1daeSBarry Smith   }
3885c6c1daeSBarry Smith   vdraw->singleton_made = PETSC_TRUE;
3895c6c1daeSBarry Smith   PetscFunctionReturn(0);
3905c6c1daeSBarry Smith }
3915c6c1daeSBarry Smith 
3925c6c1daeSBarry Smith #undef __FUNCT__
3935c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerRestoreSingleton_Draw"
3945c6c1daeSBarry Smith PetscErrorCode PetscViewerRestoreSingleton_Draw(PetscViewer viewer,PetscViewer *sviewer)
3955c6c1daeSBarry Smith {
3965c6c1daeSBarry Smith   PetscErrorCode   ierr;
3975c6c1daeSBarry Smith   PetscMPIInt      rank;
3985c6c1daeSBarry Smith   PetscInt         i;
3995c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data,*vsdraw;
4005c6c1daeSBarry Smith 
4015c6c1daeSBarry Smith   PetscFunctionBegin;
4025c6c1daeSBarry Smith   if (!vdraw->singleton_made) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Trying to restore a singleton that was not gotten");
403ce94432eSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)viewer),&rank);CHKERRQ(ierr);
4045c6c1daeSBarry Smith   if (!rank) {
4055c6c1daeSBarry Smith     vsdraw = (PetscViewer_Draw*)(*sviewer)->data;
4065c6c1daeSBarry Smith     for (i=0; i<vdraw->draw_max; i++) {
4075c6c1daeSBarry Smith       if (vdraw->draw[i] && vsdraw->draw[i]) {
4085c6c1daeSBarry Smith         ierr = PetscDrawRestoreSingleton(vdraw->draw[i],&vsdraw->draw[i]);CHKERRQ(ierr);
4095c6c1daeSBarry Smith       }
4105c6c1daeSBarry Smith     }
4115c6c1daeSBarry Smith     ierr = PetscFree3(vsdraw->draw,vsdraw->drawlg,vsdraw->drawaxis);CHKERRQ(ierr);
4125c6c1daeSBarry Smith     ierr = PetscFree((*sviewer)->data);CHKERRQ(ierr);
4135c6c1daeSBarry Smith     ierr = PetscHeaderDestroy(sviewer);CHKERRQ(ierr);
4145c6c1daeSBarry Smith   }
4155c6c1daeSBarry Smith   vdraw->singleton_made = PETSC_FALSE;
4165c6c1daeSBarry Smith   PetscFunctionReturn(0);
4175c6c1daeSBarry Smith }
4185c6c1daeSBarry Smith 
419e9457bf7SBarry Smith #undef __FUNCT__
420e9457bf7SBarry Smith #define __FUNCT__ "PetscViewerSetFromOptions_Draw"
421e9457bf7SBarry Smith PetscErrorCode PetscViewerSetFromOptions_Draw(PetscViewer v)
422e9457bf7SBarry Smith {
423e9457bf7SBarry Smith   PetscErrorCode ierr;
424e9457bf7SBarry Smith   PetscReal      bounds[16];
425e9457bf7SBarry Smith   PetscInt       nbounds = 16;
426e9457bf7SBarry Smith   PetscBool      flg;
427e9457bf7SBarry Smith 
428e9457bf7SBarry Smith   PetscFunctionBegin;
429e9457bf7SBarry Smith   ierr = PetscOptionsHead("Draw PetscViewer Options");CHKERRQ(ierr);
430e9457bf7SBarry Smith   ierr = PetscOptionsRealArray("-draw_bounds","Bounds to put on plots axis","PetscViewerDrawSetBounds",bounds,&nbounds,&flg);CHKERRQ(ierr);
431e9457bf7SBarry Smith   if (flg) {
432e9457bf7SBarry Smith     ierr = PetscViewerDrawSetBounds(v,nbounds/2,bounds);CHKERRQ(ierr);
433e9457bf7SBarry Smith   }
434e9457bf7SBarry Smith 
435e9457bf7SBarry Smith   ierr = PetscOptionsTail();CHKERRQ(ierr);
436e9457bf7SBarry Smith   PetscFunctionReturn(0);
437e9457bf7SBarry Smith }
438e9457bf7SBarry Smith 
4395c6c1daeSBarry Smith #undef __FUNCT__
4405c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerCreate_Draw"
4418cc058d9SJed Brown PETSC_EXTERN PetscErrorCode PetscViewerCreate_Draw(PetscViewer viewer)
4425c6c1daeSBarry Smith {
4435c6c1daeSBarry Smith   PetscInt         i;
4445c6c1daeSBarry Smith   PetscErrorCode   ierr;
4455c6c1daeSBarry Smith   PetscViewer_Draw *vdraw;
4465c6c1daeSBarry Smith 
4475c6c1daeSBarry Smith   PetscFunctionBegin;
4485c6c1daeSBarry Smith   ierr         = PetscNewLog(viewer,PetscViewer_Draw,&vdraw);CHKERRQ(ierr);
4495c6c1daeSBarry Smith   viewer->data = (void*)vdraw;
4505c6c1daeSBarry Smith 
4515c6c1daeSBarry Smith   viewer->ops->flush            = PetscViewerFlush_Draw;
4525c6c1daeSBarry Smith   viewer->ops->destroy          = PetscViewerDestroy_Draw;
453e9457bf7SBarry Smith   viewer->ops->setfromoptions   = PetscViewerSetFromOptions_Draw;
4545c6c1daeSBarry Smith   viewer->ops->getsingleton     = PetscViewerGetSingleton_Draw;
4555c6c1daeSBarry Smith   viewer->ops->restoresingleton = PetscViewerRestoreSingleton_Draw;
4565c6c1daeSBarry Smith 
4575c6c1daeSBarry Smith   /* these are created on the fly if requested */
4585c6c1daeSBarry Smith   vdraw->draw_max  = 5;
4595c6c1daeSBarry Smith   vdraw->draw_base = 0;
460ccad63c3SBarry Smith   vdraw->w         = PETSC_DECIDE;
461ccad63c3SBarry Smith   vdraw->h         = PETSC_DECIDE;
462a297a907SKarl Rupp 
4635c6c1daeSBarry Smith   ierr = PetscMalloc3(vdraw->draw_max,PetscDraw,&vdraw->draw,vdraw->draw_max,PetscDrawLG,&vdraw->drawlg,vdraw->draw_max,PetscDrawAxis,&vdraw->drawaxis);CHKERRQ(ierr);
4645c6c1daeSBarry Smith   ierr = PetscMemzero(vdraw->draw,vdraw->draw_max*sizeof(PetscDraw));CHKERRQ(ierr);
4655c6c1daeSBarry Smith   ierr = PetscMemzero(vdraw->drawlg,vdraw->draw_max*sizeof(PetscDrawLG));CHKERRQ(ierr);
4665c6c1daeSBarry Smith   ierr = PetscMemzero(vdraw->drawaxis,vdraw->draw_max*sizeof(PetscDrawAxis));CHKERRQ(ierr);
4675c6c1daeSBarry Smith   for (i=0; i<vdraw->draw_max; i++) {
4685c6c1daeSBarry Smith     vdraw->draw[i]     = 0;
4695c6c1daeSBarry Smith     vdraw->drawlg[i]   = 0;
4705c6c1daeSBarry Smith     vdraw->drawaxis[i] = 0;
4715c6c1daeSBarry Smith   }
4725c6c1daeSBarry Smith   vdraw->singleton_made = PETSC_FALSE;
4735c6c1daeSBarry Smith   PetscFunctionReturn(0);
4745c6c1daeSBarry Smith }
4755c6c1daeSBarry Smith 
4765c6c1daeSBarry Smith #undef __FUNCT__
4775c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawClear"
4785c6c1daeSBarry Smith /*@
4795c6c1daeSBarry Smith     PetscViewerDrawClear - Clears a PetscDraw graphic associated with a PetscViewer.
4805c6c1daeSBarry Smith 
4815c6c1daeSBarry Smith     Not Collective
4825c6c1daeSBarry Smith 
4835c6c1daeSBarry Smith     Input Parameter:
4845c6c1daeSBarry Smith .  viewer - the PetscViewer
4855c6c1daeSBarry Smith 
4865c6c1daeSBarry Smith     Level: intermediate
4875c6c1daeSBarry Smith 
4885c6c1daeSBarry Smith .seealso: PetscViewerDrawOpen(), PetscViewerDrawGetDraw(),
4895c6c1daeSBarry Smith 
4905c6c1daeSBarry Smith @*/
4915c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawClear(PetscViewer viewer)
4925c6c1daeSBarry Smith {
4935c6c1daeSBarry Smith   PetscErrorCode   ierr;
4945c6c1daeSBarry Smith   PetscInt         i;
4955c6c1daeSBarry Smith   PetscBool        isdraw;
4965c6c1daeSBarry Smith   PetscViewer_Draw *vdraw;
4975c6c1daeSBarry Smith 
4985c6c1daeSBarry Smith   PetscFunctionBegin;
4995c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
5005c6c1daeSBarry Smith   if (isdraw) {
5015c6c1daeSBarry Smith     vdraw = (PetscViewer_Draw*)viewer->data;
5025c6c1daeSBarry Smith     for (i=0; i<vdraw->draw_max; i++) {
5035c6c1daeSBarry Smith       if (vdraw->draw[i]) {ierr = PetscDrawClear(vdraw->draw[i]);CHKERRQ(ierr);}
5045c6c1daeSBarry Smith     }
5055c6c1daeSBarry Smith   }
5065c6c1daeSBarry Smith   PetscFunctionReturn(0);
5075c6c1daeSBarry Smith }
5085c6c1daeSBarry Smith 
5095c6c1daeSBarry Smith #undef __FUNCT__
5105c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawGetPause"
5115c6c1daeSBarry Smith /*@
5125c6c1daeSBarry Smith     PetscViewerDrawGetPause - Gets a pause for the first present draw
5135c6c1daeSBarry Smith 
5145c6c1daeSBarry Smith     Not Collective
5155c6c1daeSBarry Smith 
5165c6c1daeSBarry Smith     Input Parameter:
5175c6c1daeSBarry Smith .  viewer - the PetscViewer
5185c6c1daeSBarry Smith 
5195c6c1daeSBarry Smith     Output Parameter:
5205c6c1daeSBarry Smith .  pause - the pause value
5215c6c1daeSBarry Smith 
5225c6c1daeSBarry Smith     Level: intermediate
5235c6c1daeSBarry Smith 
5245c6c1daeSBarry Smith .seealso: PetscViewerDrawOpen(), PetscViewerDrawGetDraw(),
5255c6c1daeSBarry Smith 
5265c6c1daeSBarry Smith @*/
5275c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawGetPause(PetscViewer viewer,PetscReal *pause)
5285c6c1daeSBarry Smith {
5295c6c1daeSBarry Smith   PetscErrorCode   ierr;
5305c6c1daeSBarry Smith   PetscInt         i;
5315c6c1daeSBarry Smith   PetscBool        isdraw;
5325c6c1daeSBarry Smith   PetscViewer_Draw *vdraw;
5335c6c1daeSBarry Smith   PetscDraw        draw;
5345c6c1daeSBarry Smith 
5355c6c1daeSBarry Smith   PetscFunctionBegin;
5365c6c1daeSBarry Smith   ierr   = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
5375c6c1daeSBarry Smith   *pause = 0.0;
5385c6c1daeSBarry Smith   if (isdraw) {
5395c6c1daeSBarry Smith     vdraw = (PetscViewer_Draw*)viewer->data;
5405c6c1daeSBarry Smith     for (i=0; i<vdraw->draw_max; i++) {
5415c6c1daeSBarry Smith       if (vdraw->draw[i]) {
5425c6c1daeSBarry Smith         ierr = PetscDrawGetPause(vdraw->draw[i],pause);CHKERRQ(ierr);
5435c6c1daeSBarry Smith         PetscFunctionReturn(0);
5445c6c1daeSBarry Smith       }
5455c6c1daeSBarry Smith     }
5465c6c1daeSBarry Smith     /* none exist yet so create one and get its pause */
5475c6c1daeSBarry Smith     ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
5485c6c1daeSBarry Smith     ierr = PetscDrawGetPause(vdraw->draw[0],pause);CHKERRQ(ierr);
5495c6c1daeSBarry Smith   }
5505c6c1daeSBarry Smith   PetscFunctionReturn(0);
5515c6c1daeSBarry Smith }
5525c6c1daeSBarry Smith 
5535c6c1daeSBarry Smith #undef __FUNCT__
5545c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawSetPause"
5555c6c1daeSBarry Smith /*@
5565c6c1daeSBarry Smith     PetscViewerDrawSetPause - Sets a pause for each PetscDraw in the viewer
5575c6c1daeSBarry Smith 
5585c6c1daeSBarry Smith     Not Collective
5595c6c1daeSBarry Smith 
5605c6c1daeSBarry Smith     Input Parameters:
5615c6c1daeSBarry Smith +  viewer - the PetscViewer
5625c6c1daeSBarry Smith -  pause - the pause value
5635c6c1daeSBarry Smith 
5645c6c1daeSBarry Smith     Level: intermediate
5655c6c1daeSBarry Smith 
5665c6c1daeSBarry Smith .seealso: PetscViewerDrawOpen(), PetscViewerDrawGetDraw(),
5675c6c1daeSBarry Smith 
5685c6c1daeSBarry Smith @*/
5695c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawSetPause(PetscViewer viewer,PetscReal pause)
5705c6c1daeSBarry Smith {
5715c6c1daeSBarry Smith   PetscErrorCode   ierr;
5725c6c1daeSBarry Smith   PetscInt         i;
5735c6c1daeSBarry Smith   PetscBool        isdraw;
5745c6c1daeSBarry Smith 
5755c6c1daeSBarry Smith   PetscFunctionBegin;
5765c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
5775c6c1daeSBarry Smith   if (isdraw) {
578afe78b3cSBarry Smith     PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
579afe78b3cSBarry Smith 
580afe78b3cSBarry Smith     vdraw->pause = pause;
5815c6c1daeSBarry Smith     for (i=0; i<vdraw->draw_max; i++) {
5825c6c1daeSBarry Smith       if (vdraw->draw[i]) {ierr = PetscDrawSetPause(vdraw->draw[i],pause);CHKERRQ(ierr);}
5835c6c1daeSBarry Smith     }
5845c6c1daeSBarry Smith   }
5855c6c1daeSBarry Smith   PetscFunctionReturn(0);
5865c6c1daeSBarry Smith }
5875c6c1daeSBarry Smith 
5885c6c1daeSBarry Smith 
5895c6c1daeSBarry Smith #undef __FUNCT__
5905c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawSetHold"
5915c6c1daeSBarry Smith /*@
5925c6c1daeSBarry Smith     PetscViewerDrawSetHold - Holds previous image when drawing new image
5935c6c1daeSBarry Smith 
5945c6c1daeSBarry Smith     Not Collective
5955c6c1daeSBarry Smith 
5965c6c1daeSBarry Smith     Input Parameters:
5975c6c1daeSBarry Smith +  viewer - the PetscViewer
5985c6c1daeSBarry Smith -  hold - indicates to hold or not
5995c6c1daeSBarry Smith 
6005c6c1daeSBarry Smith     Level: intermediate
6015c6c1daeSBarry Smith 
6025c6c1daeSBarry Smith .seealso: PetscViewerDrawOpen(), PetscViewerDrawGetDraw(),
6035c6c1daeSBarry Smith 
6045c6c1daeSBarry Smith @*/
6055c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawSetHold(PetscViewer viewer,PetscBool hold)
6065c6c1daeSBarry Smith {
6075c6c1daeSBarry Smith   PetscErrorCode   ierr;
6085c6c1daeSBarry Smith   PetscViewer_Draw *vdraw;
6095c6c1daeSBarry Smith   PetscBool        isdraw;
6105c6c1daeSBarry Smith 
6115c6c1daeSBarry Smith   PetscFunctionBegin;
6125c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
6135c6c1daeSBarry Smith   if (isdraw) {
6145c6c1daeSBarry Smith     vdraw       = (PetscViewer_Draw*)viewer->data;
6155c6c1daeSBarry Smith     vdraw->hold = hold;
6165c6c1daeSBarry Smith   }
6175c6c1daeSBarry Smith   PetscFunctionReturn(0);
6185c6c1daeSBarry Smith }
6195c6c1daeSBarry Smith 
6205c6c1daeSBarry Smith #undef __FUNCT__
6215c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawGetHold"
6225c6c1daeSBarry Smith /*@
6235c6c1daeSBarry Smith     PetscViewerDrawGetHold - Holds previous image when drawing new image
6245c6c1daeSBarry Smith 
6255c6c1daeSBarry Smith     Not Collective
6265c6c1daeSBarry Smith 
6275c6c1daeSBarry Smith     Input Parameter:
6285c6c1daeSBarry Smith .  viewer - the PetscViewer
6295c6c1daeSBarry Smith 
6305c6c1daeSBarry Smith     Output Parameter:
6315c6c1daeSBarry Smith .  hold - indicates to hold or not
6325c6c1daeSBarry Smith 
6335c6c1daeSBarry Smith     Level: intermediate
6345c6c1daeSBarry Smith 
6355c6c1daeSBarry Smith .seealso: PetscViewerDrawOpen(), PetscViewerDrawGetDraw(),
6365c6c1daeSBarry Smith 
6375c6c1daeSBarry Smith @*/
6385c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawGetHold(PetscViewer viewer,PetscBool *hold)
6395c6c1daeSBarry Smith {
6405c6c1daeSBarry Smith   PetscErrorCode   ierr;
6415c6c1daeSBarry Smith   PetscViewer_Draw *vdraw;
6425c6c1daeSBarry Smith   PetscBool        isdraw;
6435c6c1daeSBarry Smith 
6445c6c1daeSBarry Smith   PetscFunctionBegin;
6455c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
6465c6c1daeSBarry Smith   if (isdraw) {
6475c6c1daeSBarry Smith     vdraw = (PetscViewer_Draw*)viewer->data;
6485c6c1daeSBarry Smith     *hold = vdraw->hold;
6495c6c1daeSBarry Smith   }
6505c6c1daeSBarry Smith   PetscFunctionReturn(0);
6515c6c1daeSBarry Smith }
6525c6c1daeSBarry Smith 
6535c6c1daeSBarry Smith /* ---------------------------------------------------------------------*/
6545c6c1daeSBarry Smith /*
6555c6c1daeSBarry Smith     The variable Petsc_Viewer_Draw_keyval is used to indicate an MPI attribute that
6565c6c1daeSBarry Smith   is attached to a communicator, in this case the attribute is a PetscViewer.
6575c6c1daeSBarry Smith */
6585c6c1daeSBarry Smith static PetscMPIInt Petsc_Viewer_Draw_keyval = MPI_KEYVAL_INVALID;
6595c6c1daeSBarry Smith 
6605c6c1daeSBarry Smith #undef __FUNCT__
6615c6c1daeSBarry Smith #define __FUNCT__ "PETSC_VIEWER_DRAW_"
6625c6c1daeSBarry Smith /*@C
6635c6c1daeSBarry Smith     PETSC_VIEWER_DRAW_ - Creates a window PetscViewer shared by all processors
6645c6c1daeSBarry Smith                      in a communicator.
6655c6c1daeSBarry Smith 
6665c6c1daeSBarry Smith      Collective on MPI_Comm
6675c6c1daeSBarry Smith 
6685c6c1daeSBarry Smith      Input Parameter:
6695c6c1daeSBarry Smith .    comm - the MPI communicator to share the window PetscViewer
6705c6c1daeSBarry Smith 
6715c6c1daeSBarry Smith      Level: intermediate
6725c6c1daeSBarry Smith 
6735c6c1daeSBarry Smith      Notes:
6745c6c1daeSBarry Smith      Unlike almost all other PETSc routines, PETSC_VIEWER_DRAW_ does not return
6755c6c1daeSBarry Smith      an error code.  The window is usually used in the form
6765c6c1daeSBarry Smith $       XXXView(XXX object,PETSC_VIEWER_DRAW_(comm));
6775c6c1daeSBarry Smith 
6785c6c1daeSBarry Smith .seealso: PETSC_VIEWER_DRAW_WORLD, PETSC_VIEWER_DRAW_SELF, PetscViewerDrawOpen(),
6795c6c1daeSBarry Smith @*/
6805c6c1daeSBarry Smith PetscViewer  PETSC_VIEWER_DRAW_(MPI_Comm comm)
6815c6c1daeSBarry Smith {
6825c6c1daeSBarry Smith   PetscErrorCode ierr;
6835c6c1daeSBarry Smith   PetscMPIInt    flag;
6845c6c1daeSBarry Smith   PetscViewer    viewer;
6855c6c1daeSBarry Smith   MPI_Comm       ncomm;
6865c6c1daeSBarry Smith 
6875c6c1daeSBarry Smith   PetscFunctionBegin;
6880298fd71SBarry Smith   ierr = PetscCommDuplicate(comm,&ncomm,NULL);if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
6895c6c1daeSBarry Smith   if (Petsc_Viewer_Draw_keyval == MPI_KEYVAL_INVALID) {
6905c6c1daeSBarry Smith     ierr = MPI_Keyval_create(MPI_NULL_COPY_FN,MPI_NULL_DELETE_FN,&Petsc_Viewer_Draw_keyval,0);
6915c6c1daeSBarry Smith     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
6925c6c1daeSBarry Smith   }
6935c6c1daeSBarry Smith   ierr = MPI_Attr_get(ncomm,Petsc_Viewer_Draw_keyval,(void**)&viewer,&flag);
6945c6c1daeSBarry Smith   if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
6955c6c1daeSBarry Smith   if (!flag) { /* PetscViewer not yet created */
6965c6c1daeSBarry Smith     ierr = PetscViewerDrawOpen(ncomm,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,&viewer);
6975c6c1daeSBarry Smith     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
6985c6c1daeSBarry Smith     ierr = PetscObjectRegisterDestroy((PetscObject)viewer);
6995c6c1daeSBarry Smith     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
7005c6c1daeSBarry Smith     ierr = MPI_Attr_put(ncomm,Petsc_Viewer_Draw_keyval,(void*)viewer);
7015c6c1daeSBarry Smith     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
7025c6c1daeSBarry Smith   }
7035c6c1daeSBarry Smith   ierr = PetscCommDestroy(&ncomm);
7045c6c1daeSBarry Smith   if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_DRAW_",__FILE__,__SDIR__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
7055c6c1daeSBarry Smith   PetscFunctionReturn(viewer);
7065c6c1daeSBarry Smith }
7075c6c1daeSBarry Smith 
7085c6c1daeSBarry Smith #undef __FUNCT__
7095c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawSetBounds"
7105c6c1daeSBarry Smith /*@
7115c6c1daeSBarry Smith     PetscViewerDrawSetBounds - sets the upper and lower bounds to be used in plotting
7125c6c1daeSBarry Smith 
7135c6c1daeSBarry Smith     Collective on PetscViewer
7145c6c1daeSBarry Smith 
7155c6c1daeSBarry Smith     Input Parameters:
7165c6c1daeSBarry Smith +   viewer - the PetscViewer (created with PetscViewerDrawOpen())
7175c6c1daeSBarry Smith .   nbounds - number of plots that can be made with this viewer, for example the dof passed to DMDACreate()
7185c6c1daeSBarry Smith -   bounds - the actual bounds, the size of this is 2*nbounds, the values are stored in the order min F_0, max F_0, min F_1, max F_1, .....
7195c6c1daeSBarry Smith 
720e9457bf7SBarry Smith 
721e9457bf7SBarry Smith     Options Database:
722e9457bf7SBarry Smith .   -draw_bounds  minF0,maxF0,minF1,maxF1
723e9457bf7SBarry Smith 
7245c6c1daeSBarry Smith     Level: intermediate
7255c6c1daeSBarry Smith 
726f3f0eb19SBarry Smith     Notes: this determines the colors used in 2d contour plots generated with VecView() for DMDA in 2d. Any values in the vector below or above the
727f3f0eb19SBarry Smith       bounds are moved to the bound value before plotting. In this way the color index from color to physical value remains the same for all plots generated with
728f3f0eb19SBarry Smith       this viewer. Otherwise the color to physical value meaning changes with each new image if this is not set.
729f3f0eb19SBarry Smith 
7305c6c1daeSBarry Smith    Concepts: drawing^accessing PetscDraw context from PetscViewer
7315c6c1daeSBarry Smith    Concepts: graphics
7325c6c1daeSBarry Smith 
7335c6c1daeSBarry Smith .seealso: PetscViewerDrawGetLG(), PetscViewerDrawGetAxis(), PetscViewerDrawOpen()
7345c6c1daeSBarry Smith @*/
7355c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawSetBounds(PetscViewer viewer,PetscInt nbounds,const PetscReal *bounds)
7365c6c1daeSBarry Smith {
7375c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
7385c6c1daeSBarry Smith   PetscErrorCode   ierr;
7395c6c1daeSBarry Smith 
7405c6c1daeSBarry Smith 
7415c6c1daeSBarry Smith   PetscFunctionBegin;
7425c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
7435c6c1daeSBarry Smith   vdraw->nbounds = nbounds;
744a297a907SKarl Rupp 
7455c6c1daeSBarry Smith   ierr = PetscMalloc(2*nbounds*sizeof(PetscReal),&vdraw->bounds);CHKERRQ(ierr);
7465c6c1daeSBarry Smith   ierr = PetscMemcpy(vdraw->bounds,bounds,2*nbounds*sizeof(PetscReal));CHKERRQ(ierr);
7475c6c1daeSBarry Smith   PetscFunctionReturn(0);
7485c6c1daeSBarry Smith }
7495c6c1daeSBarry Smith 
7505c6c1daeSBarry Smith #undef __FUNCT__
7515c6c1daeSBarry Smith #define __FUNCT__ "PetscViewerDrawGetBounds"
7525c6c1daeSBarry Smith /*@C
7535c6c1daeSBarry Smith     PetscViewerDrawGetBounds - gets the upper and lower bounds to be used in plotting set with PetscViewerDrawSetBounds()
7545c6c1daeSBarry Smith 
7555c6c1daeSBarry Smith     Collective on PetscViewer
7565c6c1daeSBarry Smith 
7575c6c1daeSBarry Smith     Input Parameter:
7585c6c1daeSBarry Smith .   viewer - the PetscViewer (created with PetscViewerDrawOpen())
7595c6c1daeSBarry Smith 
7605c6c1daeSBarry Smith     Output Paramters:
7615c6c1daeSBarry Smith +   nbounds - number of plots that can be made with this viewer, for example the dof passed to DMDACreate()
7625c6c1daeSBarry Smith -   bounds - the actual bounds, the size of this is 2*nbounds, the values are stored in the order min F_0, max F_0, min F_1, max F_1, .....
7635c6c1daeSBarry Smith 
7645c6c1daeSBarry Smith     Level: intermediate
7655c6c1daeSBarry Smith 
7665c6c1daeSBarry Smith    Concepts: drawing^accessing PetscDraw context from PetscViewer
7675c6c1daeSBarry Smith    Concepts: graphics
7685c6c1daeSBarry Smith 
769f3f0eb19SBarry Smith .seealso: PetscViewerDrawGetLG(), PetscViewerDrawGetAxis(), PetscViewerDrawOpen(), PetscViewerDrawSetBounds()
7705c6c1daeSBarry Smith @*/
7715c6c1daeSBarry Smith PetscErrorCode  PetscViewerDrawGetBounds(PetscViewer viewer,PetscInt *nbounds,const PetscReal **bounds)
7725c6c1daeSBarry Smith {
7735c6c1daeSBarry Smith   PetscViewer_Draw *vdraw = (PetscViewer_Draw*)viewer->data;
7745c6c1daeSBarry Smith 
7755c6c1daeSBarry Smith   PetscFunctionBegin;
7765c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
7775c6c1daeSBarry Smith   *nbounds = vdraw->nbounds;
7785c6c1daeSBarry Smith   *bounds  = vdraw->bounds;
7795c6c1daeSBarry Smith   PetscFunctionReturn(0);
7805c6c1daeSBarry Smith }
781