Lines Matching refs:t
31 TS t; in TSCreate() local
37 PetscCall(PetscHeaderCreate(t, TS_CLASSID, "TS", "Time stepping", "TS", comm, TSDestroy, TSView)); in TSCreate()
40 t->problem_type = TS_NONLINEAR; in TSCreate()
41 t->equation_type = TS_EQ_UNSPECIFIED; in TSCreate()
43 t->ptime = 0.0; in TSCreate()
44 t->time_step = 0.1; in TSCreate()
45 t->initial_time_step = t->time_step; in TSCreate()
46 t->max_time = PETSC_MAX_REAL; in TSCreate()
47 t->exact_final_time = TS_EXACTFINALTIME_UNSPECIFIED; in TSCreate()
48 t->steps = 0; in TSCreate()
49 PetscObjectParameterSetDefault(t, max_steps, PETSC_INT_MAX); in TSCreate()
50 PetscObjectParameterSetDefault(t, run_steps, PETSC_INT_MAX); in TSCreate()
51 t->steprestart = PETSC_TRUE; in TSCreate()
53 t->max_snes_failures = 1; in TSCreate()
54 t->max_reject = 10; in TSCreate()
55 t->errorifstepfailed = PETSC_TRUE; in TSCreate()
57 t->rhsjacobian.time = PETSC_MIN_REAL; in TSCreate()
58 t->rhsjacobian.scale = 1.0; in TSCreate()
59 t->ijacobian.shift = 1.0; in TSCreate()
63 t->default_adapt_type = TSADAPTNONE; in TSCreate()
64 t->atol = 1e-4; in TSCreate()
65 t->rtol = 1e-4; in TSCreate()
66 t->cfltime = PETSC_MAX_REAL; in TSCreate()
67 t->cfltime_local = PETSC_MAX_REAL; in TSCreate()
69 t->num_rhs_splits = 0; in TSCreate()
71 t->axpy_pattern = UNKNOWN_NONZERO_PATTERN; in TSCreate()
72 *ts = t; in TSCreate()