Home
last modified time | relevance | path

Searched full:dt (Results 1 – 15 of 15) sorted by relevance

/honee/src/
H A Dmonitor_cfl.c143 PetscReal part_minmax[2], global_minmax[2], dt; in TSMonitor_Cfl() local
160 PetscCall(TSGetTimeStep(ts, &dt)); in TSMonitor_Cfl()
161 global_minmax[0] *= dt; in TSMonitor_Cfl()
162 global_minmax[1] *= dt; in TSMonitor_Cfl()
H A Dsetupts.c33 PetscScalar dt; in RHS_NS() local
42 PetscCall(TSGetTimeStep(ts, &dt)); in RHS_NS()
44 …(ceed, CeedOperatorSetContextDouble(honee->op_rhs_ctx->op, honee->phys->timestep_size_label, &dt)); in RHS_NS()
119 PetscScalar dt; in IFunction_NS() local
130 PetscCall(TSGetTimeStep(ts, &dt)); in IFunction_NS()
131 …ed(ceed, CeedOperatorSetContextDouble(honee->op_ifunction, honee->phys->timestep_size_label, &dt)); in IFunction_NS()
H A Dmat-ceed.c955 @param[in] dt Current time step
959 PetscErrorCode MatCeedSetDt(Mat mat, PetscReal dt) { in MatCeedSetDt() argument
962 double dt_ceed = dt; in MatCeedSetDt()
964 PetscCall(MatCeedSetContextDouble(mat, "dt", dt_ceed)); in MatCeedSetDt()
/honee/qfunctions/
H A Dnewtonian_types.h45 CeedScalar dt; member
H A Dnewtonian.h70 Tau_diagPrim(context->tau_coeffs, gas, s, dXdx, context->dt, Tau_d); in MassFunction_Newtonian()
153 // drho/dt + div( U ) = 0
154 // dU/dt + div( rho (u x u) + P I3 ) + rho g khat = div( Fu )
155 // dE/dt + div( (E + P) u ) = div( Fe )
200 const CeedScalar dt = context->dt; in RHSFunction_Newtonian() local
247 Tau_diagPrim(context->tau_coeffs, gas, s, dXdx, dt, Tau_d); in RHSFunction_Newtonian()
283 const CeedScalar *g = context->g, dt = context->dt; in IFunction_Newtonian_Integrand() local
302 Tau_diagPrim(context->tau_coeffs, gas, s, dXdx, dt, Tau_d); in IFunction_Newtonian_Integrand()
H A Dstabilization.h67 const CeedScalar dt, CeedScalar Tau_d[3]) { in Tau_diagPrim() argument
85 dts = Ctau_t / dt; in Tau_diagPrim()
H A Dadvection_types.h58 CeedScalar dt; member
H A Dshocktube.h196 // drho/dt + div( U ) = 0
197 // dU/dt + div( rho (u x u) + P I3 ) = 0
198 // dE/dt + div( (E + P) u ) = 0
H A Deulervortex.h250 // drho/dt + div( U ) = 0
251 // dU/dt + div( rho (u x u) + P I3 ) = 0
252 // dE/dt + div( (E + P) u ) = 0
H A Dadvection.h255 …return 1 / sqrt(Square(2 * context->Ctau_t / context->dt) + DotN(s.Y.velocity, gij_uj, dim) * Squa… in Tau()
/honee/include/
H A Dmat-ceed.h26 PETSC_CEED_INTERN PetscErrorCode MatCeedSetDt(Mat mat, PetscReal dt);
/honee/
H A Dconf.py171 \def \dt {\Delta t}
/honee/doc/
H A Dauxiliary.md151 \CFL = \dt\sqrt{\gbar{jk} u_j u_k}
/honee/problems/
H A Dadvection.c540 …nContextRegisterDouble(advection_qfctx, "timestep size", offsetof(struct AdvectionContext_, dt), 1, in NS_ADVECTION()
H A Dnewtonian.c523 …isterDouble(newtonian_ig_qfctx, "timestep size", offsetof(struct NewtonianIdealGasContext_, dt), 1, in NS_NEWTONIAN_IG()