Lines Matching refs:Frhs
822 Vec Frhs; in TSComputeIFunction() local
824 PetscCall(DMGetGlobalVector(dm, &Frhs)); in TSComputeIFunction()
825 PetscCall(TSComputeRHSFunction(ts, t, U, Frhs)); in TSComputeIFunction()
826 PetscCall(VecAXPY(Y, -1, Frhs)); in TSComputeIFunction()
827 PetscCall(DMRestoreGlobalVector(dm, &Frhs)); in TSComputeIFunction()
1548 Vec Frhs; in TSComputeI2Function() local
1550 PetscCall(DMGetGlobalVector(dm, &Frhs)); in TSComputeI2Function()
1551 PetscCall(TSComputeRHSFunction(ts, t, U, Frhs)); in TSComputeI2Function()
1552 PetscCall(VecAXPY(F, -1, Frhs)); in TSComputeI2Function()
1553 PetscCall(DMRestoreGlobalVector(dm, &Frhs)); in TSComputeI2Function()
2600 PetscCall(VecDestroy(&ts->Frhs)); in TSReset()