Home
last modified time | relevance | path

Searched refs:FormFunction (Results 1 – 25 of 62) sorted by relevance

123

/petsc/src/snes/tutorials/
H A Dex99.c41 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
81 PetscCall(SNESSetFunction(snes, r, FormFunction, NULL)); in main()
132 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
H A Dex78.c24 PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
71 PetscCall(SNESSetFunction(snes, r, FormFunction, da)); in main()
109 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
H A Dex31.c28 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
90 PetscCall(SNESSetFunction(snes, r, FormFunction, blasius)); in main()
160 PetscErrorCode FormFunction(SNES snes, Vec X, Vec R, PetscCtx ctx) in FormFunction() function
H A Dex59.c24 PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
62 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main()
127 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, void *dummy) in FormFunction() function
H A Dex2.c21 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
72 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main()
211 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
H A Dex6.c10 PETSC_EXTERN PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
63 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main()
184 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
H A Dex14.c53 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
103 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)&user)); in main()
132 PetscCall(MatFDColoringSetFunction(matfdcoloring, (MatFDColoringFn *)FormFunction, &user)); in main()
173 PetscCall(FormFunction(snes, x, r, (void *)&user)); in main()
347 PetscErrorCode FormFunction(SNES snes, Vec X, Vec F, void *ptr) in FormFunction() function
H A Dex21.c46 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
84 PetscCall(SNESSetFunction(snes, FU, FormFunction, &user)); in main()
109 PetscErrorCode FormFunction(SNES snes, Vec U, Vec FU, void *dummy) in FormFunction() function
H A Dex5m.m3 % MATLAB routine that does the FormFunction() for ex5.c
/petsc/src/binding/petsc4py/demo/legacy/wrap-f2py/
H A DBratu2D.pyf19 subroutine FormFunction(dm, x, f, param, ierr)
26 end subroutine FormFunction
H A DBratu2Dmodule.h2 #define FormFunction formfunction macro
/petsc/src/binding/petsc4py/demo/legacy/wrap-cython/
H A DBratu3D.pyx12 int FormFunction (PetscDM da, PetscVec x, PetscVec F, Params *p)
26 ierr = FormFunction(da.dm, x.vec, f.vec, &p)
H A DBratu3Dimpl.h11 PetscErrorCode FormFunction(DM da, Vec x, Vec F, Params *p);
/petsc/src/snes/tests/
H A Dex7.c8 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
64 PetscCall(SNESSetFunction(snes, r, FormFunction, F)); in main()
104 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, void *dummy) in FormFunction() function
161 PetscCall(FormFunction(NULL, x, f, dummy)); in OtherFunctionForDifferencing()
H A Dex21f.F9013 subroutine FormFunction(snes, x, f, user, ierr) subroutine
68 PetscCallA(SNESSetPicard(snes, res, FormFunction, user%A, user%A, FormJacobian, user, ierr))
H A Dex5.c20 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
88 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main()
213 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
H A Dex1.c54 static PetscErrorCode FormFunction(SNES, Vec, Vec, void *);
131 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)&user)); in main()
191 PetscCall(MatFDColoringSetFunction(fdcoloring, (MatFDColoringFn *)FormFunction, &user)); in main()
367 PetscErrorCode FormFunction(SNES snes, Vec X, Vec F, void *ptr) in FormFunction() function
/petsc/src/binding/petsc4py/demo/legacy/wrap-swig/
H A DBratu3D.h11 PetscErrorCode FormFunction(DM da, Vec x, Vec F, Params *p);
/petsc/src/ts/tutorials/power_grid/
H A Dex3opt_fd.c20 PetscErrorCode FormFunction(Tao, Vec, PetscReal *, void *);
111 PetscCall(TaoSetObjective(tao, FormFunction, (void *)&ctx)); in main()
159 PetscErrorCode FormFunction(Tao tao, Vec P, PetscReal *f, PetscCtx ctx0) in FormFunction() function
/petsc/src/ts/tutorials/
H A Dex7.c20 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, void *), FormInitialSolution(DM, Vec);
56 PetscCall(TSSetRHSFunction(ts, NULL, FormFunction, da)); in main()
124 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec F, void *ptr) in FormFunction() function
H A Dex12.c28 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, void *), FormInitialSolution(DM, Vec);
72 PetscCall(TSSetRHSFunction(ts, NULL, FormFunction, da)); in main()
131 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec F, void *ptr) in FormFunction() function
H A Dex1.c40 extern PetscErrorCode FormJacobian(TS, PetscReal, Vec, Mat, Mat, void *), FormFunction(TS, PetscRea…
103 PetscCall(TSSetRHSFunction(ts, NULL, FormFunction, &user)); in main()
212 PetscErrorCode FormFunction(TS ts, PetscReal t, Vec X, Vec F, void *ptr) in FormFunction() function
/petsc/src/binding/petsc4py/demo/legacy/perftest/
H A Ddriver.c29 PetscErrorCode FormFunction(TS ts, PetscReal t, Vec X, Vec Xdot,Vec F, PetscCtx ctx) in FormFunction() function
77 PetscCall(TSSetIFunction(ts,f,FormFunction,app)); in RunTest()
/petsc/src/ts/tutorials/phasefield/
H A Dbiharmonic2.c33 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, Vec, void *), FormInitialSolution(DM, V…
103 PetscCall(TSSetIFunction(ts, NULL, FormFunction, &ctx)); in main()
183 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec Xdot, Vec F, void *ptr) in FormFunction() function
H A Dbiharmonic3.c33 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, Vec, void *), FormInitialSolution(DM, V…
101 PetscCall(TSSetIFunction(ts, NULL, FormFunction, &ctx)); in main()
182 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec Xdot, Vec F, void *ptr) in FormFunction() function

123