#include /*I "petscdraw.h" I*/ /*@ PetscDrawLGAddCommonPoint - Adds another point to each of the line graphs. All the points share the same new X coordinate. The new point must have an X coordinate larger than the old points. Logically Collective on PetscDrawLG Input Parameters: + lg - the LineGraph data structure . x - the common x coordinate point - y - the new y coordinate point for each curve. Level: intermediate Note: You must call PetscDrawLGDraw() to display any added points Call PetscDrawLGReset() to remove all points .seealso: `PetscDrawLGCreate()`, `PetscDrawLGAddPoints()`, `PetscDrawLGAddPoint()`, `PetscDrawLGReset()`, `PetscDrawLGDraw()` @*/ PetscErrorCode PetscDrawLGAddCommonPoint(PetscDrawLG lg,const PetscReal x,const PetscReal *y) { PetscInt i; PetscFunctionBegin; PetscValidHeaderSpecific(lg,PETSC_DRAWLG_CLASSID,1); if (lg->loc+lg->dim >= lg->len) { /* allocate more space */ PetscReal *tmpx,*tmpy; PetscCall(PetscMalloc2(lg->len+lg->dim*PETSC_DRAW_LG_CHUNK_SIZE,&tmpx,lg->len+lg->dim*PETSC_DRAW_LG_CHUNK_SIZE,&tmpy)); PetscCall(PetscLogObjectMemory((PetscObject)lg,2*lg->dim*PETSC_DRAW_LG_CHUNK_SIZE*sizeof(PetscReal))); PetscCall(PetscArraycpy(tmpx,lg->x,lg->len)); PetscCall(PetscArraycpy(tmpy,lg->y,lg->len)); PetscCall(PetscFree2(lg->x,lg->y)); lg->x = tmpx; lg->y = tmpy; lg->len += lg->dim*PETSC_DRAW_LG_CHUNK_SIZE; } for (i=0; idim; i++) { if (x > lg->xmax) lg->xmax = x; if (x < lg->xmin) lg->xmin = x; if (y[i] > lg->ymax) lg->ymax = y[i]; if (y[i] < lg->ymin) lg->ymin = y[i]; lg->x[lg->loc] = x; lg->y[lg->loc++] = y[i]; } lg->nopts++; PetscFunctionReturn(0); } /*@ PetscDrawLGAddPoint - Adds another point to each of the line graphs. The new point must have an X coordinate larger than the old points. Logically Collective on PetscDrawLG Input Parameters: + lg - the LineGraph data structure - x, y - the points to two arrays containing the new x and y point for each curve. Note: You must call PetscDrawLGDraw() to display any added points Call PetscDrawLGReset() to remove all points Level: intermediate .seealso: `PetscDrawLGCreate()`, `PetscDrawLGAddPoints()`, `PetscDrawLGAddCommonPoint()`, `PetscDrawLGReset()`, `PetscDrawLGDraw()` @*/ PetscErrorCode PetscDrawLGAddPoint(PetscDrawLG lg,const PetscReal *x,const PetscReal *y) { PetscInt i; PetscReal xx; PetscFunctionBegin; PetscValidHeaderSpecific(lg,PETSC_DRAWLG_CLASSID,1); if (lg->loc+lg->dim >= lg->len) { /* allocate more space */ PetscReal *tmpx,*tmpy; PetscCall(PetscMalloc2(lg->len+lg->dim*PETSC_DRAW_LG_CHUNK_SIZE,&tmpx,lg->len+lg->dim*PETSC_DRAW_LG_CHUNK_SIZE,&tmpy)); PetscCall(PetscLogObjectMemory((PetscObject)lg,2*lg->dim*PETSC_DRAW_LG_CHUNK_SIZE*sizeof(PetscReal))); PetscCall(PetscArraycpy(tmpx,lg->x,lg->len)); PetscCall(PetscArraycpy(tmpy,lg->y,lg->len)); PetscCall(PetscFree2(lg->x,lg->y)); lg->x = tmpx; lg->y = tmpy; lg->len += lg->dim*PETSC_DRAW_LG_CHUNK_SIZE; } for (i=0; idim; i++) { if (!x) { xx = lg->nopts; } else { xx = x[i]; } if (xx > lg->xmax) lg->xmax = xx; if (xx < lg->xmin) lg->xmin = xx; if (y[i] > lg->ymax) lg->ymax = y[i]; if (y[i] < lg->ymin) lg->ymin = y[i]; lg->x[lg->loc] = xx; lg->y[lg->loc++] = y[i]; } lg->nopts++; PetscFunctionReturn(0); } /*@C PetscDrawLGAddPoints - Adds several points to each of the line graphs. The new points must have an X coordinate larger than the old points. Logically Collective on PetscDrawLG Input Parameters: + lg - the LineGraph data structure . xx,yy - points to two arrays of pointers that point to arrays containing the new x and y points for each curve. - n - number of points being added Level: intermediate Note: You must call PetscDrawLGDraw() to display any added points Call PetscDrawLGReset() to remove all points .seealso: `PetscDrawLGCreate()`, `PetscDrawLGAddPoint()`, `PetscDrawLGAddCommonPoint()`, `PetscDrawLGReset()`, `PetscDrawLGDraw()` @*/ PetscErrorCode PetscDrawLGAddPoints(PetscDrawLG lg,PetscInt n,PetscReal **xx,PetscReal **yy) { PetscInt i,j,k; PetscReal *x,*y; PetscFunctionBegin; PetscValidHeaderSpecific(lg,PETSC_DRAWLG_CLASSID,1); if (lg->loc+n*lg->dim >= lg->len) { /* allocate more space */ PetscReal *tmpx,*tmpy; PetscInt chunk = PETSC_DRAW_LG_CHUNK_SIZE; if (n > chunk) chunk = n; PetscCall(PetscMalloc2(lg->len+lg->dim*chunk,&tmpx,lg->len+lg->dim*chunk,&tmpy)); PetscCall(PetscLogObjectMemory((PetscObject)lg,2*lg->dim*chunk*sizeof(PetscReal))); PetscCall(PetscArraycpy(tmpx,lg->x,lg->len)); PetscCall(PetscArraycpy(tmpy,lg->y,lg->len)); PetscCall(PetscFree2(lg->x,lg->y)); lg->x = tmpx; lg->y = tmpy; lg->len += lg->dim*chunk; } for (j=0; jdim; j++) { x = xx[j]; y = yy[j]; k = lg->loc + j; for (i=0; i lg->xmax) lg->xmax = x[i]; if (x[i] < lg->xmin) lg->xmin = x[i]; if (y[i] > lg->ymax) lg->ymax = y[i]; if (y[i] < lg->ymin) lg->ymin = y[i]; lg->x[k] = x[i]; lg->y[k] = y[i]; k += lg->dim; } } lg->loc += n*lg->dim; lg->nopts += n; PetscFunctionReturn(0); }