Lines Matching refs:yy
280 PetscReal x, y, hx, pause, sx, len, max, xx[2], yy[2]; in MyMonitor() local
327 …yy[0] = PetscRealPart(.25 * ctx->kappa * (u[i - 1] - u[i + 1]) * (u[i - 1] - u[i + 1]) * s… in MyMonitor()
328 if (ctx->allencahn) yy[1] = .25 * PetscRealPart((1. - u[i] * u[i]) * (1. - u[i] * u[i])); in MyMonitor()
329 PetscCall(PetscDrawLGAddPoint(lg, xx, yy)); in MyMonitor()
347 yy[0] = PetscRealPart(ctx->kappa * (u[i - 1] + u[i + 1] - 2.0 * u[i]) * sx); in MyMonitor()
348 max = PetscMax(max, PetscAbs(yy[0])); in MyMonitor()
350 yy[1] = PetscRealPart(u[i] - u[i] * u[i] * u[i]); in MyMonitor()
351 max = PetscMax(max, PetscAbs(yy[1])); in MyMonitor()
353 PetscCall(PetscDrawLGAddPoint(lg, xx, yy)); in MyMonitor()
371 yy[0] = PetscRealPart(u[i]); in MyMonitor()
372 PetscCall(PetscDrawLGAddPoint(lg, xx, yy)); in MyMonitor()