Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 10 of 10) sorted by relevance

/libCEED/examples/fluids/src/
H A Dsetupts.c31 PetscErrorCode RHS_NS(TS ts, PetscReal t, Vec Q, Vec G, void *user_data) { in RHS_NS() argument
42 PetscCall(TSGetTimeStep(ts, &dt)); in RHS_NS()
103 PetscErrorCode IFunction_NS(TS ts, PetscReal t, Vec Q, Vec Q_dot, Vec G, void *user_data) { in IFunction_NS() argument
117 PetscCall(TSGetTimeStep(ts, &dt)); in IFunction_NS()
152 PetscErrorCode FormIJacobian_NS(TS ts, PetscReal t, Vec Q, Vec Q_dot, PetscReal shift, Mat J, Mat J… in FormIJacobian_NS() argument
241 PetscErrorCode TSMonitor_WallForce(TS ts, PetscInt step_no, PetscReal time, Vec Q, void *ctx) { in TSMonitor_WallForce() argument
282 PetscErrorCode TSMonitor_NS(TS ts, PetscInt step_no, PetscReal time, Vec Q, void *ctx) { in TSMonitor_NS() argument
297 …ser user, AppCtx app_ctx, Physics phys, ProblemData problem, Vec *Q, PetscScalar *f_time, TS *ts) { in TSSolve_NS() argument
303 PetscCall(TSCreate(comm, ts)); in TSSolve_NS()
304 PetscCall(TSSetDM(*ts, dm)); in TSSolve_NS()
[all …]
H A Dmisc.c201 PetscErrorCode PostProcess(TS ts, CeedData ceed_data, DM dm, ProblemData problem, User user, Vec Q,… in PostProcess() argument
212 PetscCall(TSGetStepNumber(ts, &steps)); in PostProcess()
213 PetscCall(TSGetConvergedReason(ts, &reason)); in PostProcess()
372 PetscErrorCode PrintRunInfo(User user, Physics phys_ctx, ProblemData problem, TS ts) { in PrintRunInfo() argument
374 MPI_Comm comm = PetscObjectComm((PetscObject)ts); in PrintRunInfo()
421 PetscCall(TSGetIJacobian(ts, &Amat, &Pmat, &ijacob_function, NULL)); in PrintRunInfo()
H A Dturb_spanstats.c591 PetscErrorCode TSMonitor_TurbulenceStatistics(TS ts, PetscInt steps, PetscReal solution_time, Vec Q… in TSMonitor_TurbulenceStatistics() argument
598 PetscCall(TSGetConvergedReason(ts, &reason)); in TSMonitor_TurbulenceStatistics()
H A Ddifferential_filter.c314 PetscErrorCode TSMonitor_DifferentialFilter(TS ts, PetscInt steps, PetscReal solution_time, Vec Q, … in TSMonitor_DifferentialFilter() argument
/libCEED/examples/fluids/
H A Dnavierstokes.h272 PetscErrorCode PrintRunInfo(User user, Physics phys_ctx, ProblemData problem, TS ts);
304 PetscErrorCode RHS_NS(TS ts, PetscReal t, Vec Q, Vec G, void *user_data);
307 PetscErrorCode IFunction_NS(TS ts, PetscReal t, Vec Q, Vec Q_dot, Vec G, void *user_data);
310 PetscErrorCode TSMonitor_NS(TS ts, PetscInt step_no, PetscReal time, Vec Q, void *ctx);
313 …User user, AppCtx app_ctx, Physics phys, ProblemData problem, Vec *Q, PetscScalar *f_time, TS *ts);
362 PetscErrorCode PostProcess(TS ts, CeedData ceed_data, DM dm, ProblemData problem, User user, Vec Q,…
392 PetscErrorCode TSMonitor_TurbulenceStatistics(TS ts, PetscInt steps, PetscReal solution_time, Vec Q…
423 PetscErrorCode TSMonitor_DifferentialFilter(TS ts, PetscInt steps, PetscReal solution_time, Vec Q, …
H A Dnavierstokes.c239 TS ts; in main() local
241 PetscCall(TSSolve_NS(dm, user, app_ctx, phys_ctx, problem, &Q, &final_time, &ts)); in main()
246 PetscCall(PostProcess(ts, ceed_data, dm, problem, user, Q, final_time)); in main()
324 PetscCall(TSDestroy(&ts)); in main()
H A Dindex.md144 $$ (eq-ts-implicit-ns)
153 Each nonlinear system {eq}`eq-ts-implicit-ns` will correspond to a weak form, as explained below.
154 …In determining how difficult a given problem is to solve, we consider the Jacobian of {eq}`eq-ts-i…
164 …me stepping solvers can be found in the [TS User Guide](https://petsc.org/release/docs/manual/ts/).
H A DREADME.md772 $ mpiexec -n 6 build/fluids-navierstokes -options_file examples/fluids/vortexshedding.yaml -{ts,sne…
/libCEED/tests/junit-xml/
H A DREADME.rst48 ts = TestSuite("my test suite", test_cases)
50 print(TestSuite.to_xml_string([ts]))
76 TestSuite.to_file(f, [ts], prettyprint=False)
/libCEED/tests/junit-xml/junit_xml/
H A D__init__.py289 for ts in test_suites:
290 ts_xml = ts.build_xml_doc(encoding=encoding)