Searched refs:formFunction (Results 1 – 8 of 8) sorted by relevance
| /petsc/src/binding/petsc4py/demo/legacy/perftest/ |
| H A D | App.pyf | 6 subroutine formFunction(nx, ny, nz, h, t, x, xdot, f) 7 intent(c) formFunction 14 end subroutine formFunction 23 end subroutine formFunction
|
| H A D | driver.py | 22 from App import formFunction 24 self._formFunction = formFunction 31 def formFunction(self, ts, t, X, Xdot, F): member in AppCtx 94 ts.setIFunction(app.formFunction, f)
|
| H A D | driver.c | 6 extern void formFunction(const int*,const int*,const int*,const double*, 41 formFunction(&app->nx,&app->ny,&app->nz,app->h,&t,x,xdot,f); in FormFunction()
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-swig/ |
| H A D | run_demo.py | 19 def formFunction(self, snes, X, F): member in App 41 snes.setFunction(app.formFunction, F)
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-f2py/ |
| H A D | run_demo.py | 21 def formFunction(self, snes, X, F): member in App 51 snes.setFunction(app.formFunction, F)
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-cython/ |
| H A D | run_demo.py | 18 snes.setFunction(Bratu3D.formFunction, F,
|
| H A D | Bratu3D.pyx | 23 def formFunction(SNES snes, Vec x, Vec f, DM da, double lambda_): function
|
| /petsc/src/binding/petsc4py/demo/legacy/bratu3d/ |
| H A D | bratu3d.py | 62 def formFunction(self, snes, X, F): member in Bratu3D 156 snes.setFunction(pde.formFunction, F)
|