Home
last modified time | relevance | path

Searched refs:implicit (Results 1 – 24 of 24) sorted by relevance

/honee/problems/
H A Dshocktube.c32 PetscBool implicit; in NS_SHOCKTUBE() local
67 …("-implicit", "Use implicit (IFunction) formulation", NULL, implicit = PETSC_FALSE, &implicit, NUL… in NS_SHOCKTUBE()
76 if (yzb && implicit) { in NS_SHOCKTUBE()
97 honee->phys->implicit = implicit; in NS_SHOCKTUBE()
98 shocktube_ctx->implicit = implicit; in NS_SHOCKTUBE()
H A Deulervortex.c60 PetscBool implicit; in NS_EULER_VORTEX() local
108 …("-implicit", "Use implicit (IFunction) formulation", NULL, implicit = PETSC_FALSE, &implicit, NUL… in NS_EULER_VORTEX()
115 if (stab == STAB_SUPG && !implicit) { in NS_EULER_VORTEX()
134 honee->phys->implicit = implicit; in NS_EULER_VORTEX()
136 euler_ctx->implicit = implicit; in NS_EULER_VORTEX()
H A Dchannel.c91 channel_ctx->implicit = honee->phys->implicit; in NS_CHANNEL()
124 honee_bc->num_comps_jac_data = honee->phys->implicit ? 11 : 0; in NS_CHANNEL()
136 honee_bc->num_comps_jac_data = honee->phys->implicit ? 11 : 0; in NS_CHANNEL()
H A Dadvection.c391 PetscBool implicit; in NS_ADVECTION() local
443 …("-implicit", "Use implicit (IFunction) formulation", NULL, implicit = PETSC_FALSE, &implicit, NUL… in NS_ADVECTION()
520 honee->phys->implicit = implicit; in NS_ADVECTION()
523 advection_ctx->implicit = implicit; in NS_ADVECTION()
H A Dnewtonian.c378 PetscBool implicit; in NS_NEWTONIAN_IG() local
448 …("-implicit", "Use implicit (IFunction) formulation", NULL, implicit = PETSC_FALSE, &implicit, NUL… in NS_NEWTONIAN_IG()
450 PetscCheck(!(state_var == STATEVAR_PRIMITIVE && !implicit), comm, PETSC_ERR_SUP, in NS_NEWTONIAN_IG()
491 honee->phys->implicit = implicit; in NS_NEWTONIAN_IG()
496 newtonian_ig_ctx->is_implicit = implicit; in NS_NEWTONIAN_IG()
570 …if (stab == STAB_SUPG && !implicit) problem->create_mass_operator = CreateKSPMassOperator_Newtonia… in NS_NEWTONIAN_IG()
628 honee_bc->num_comps_jac_data = honee->phys->implicit ? 11 : 0; in NS_NEWTONIAN_IG()
H A Dblasius.c198 blasius_ctx->implicit = honee->phys->implicit; in NS_BLASIUS()
H A Dbc_outflow.c162 .num_comps_jac_data = honee->phys->implicit ? 11 : 0, in OutflowBCSetup()
H A Dstg_shur14.c269 .is_implicit = honee->phys->implicit, in SetupStg()
321 honee_bc->num_comps_jac_data = honee->phys->implicit ? 11 : 0; in SetupStg()
H A Dbc_freestream.c160 .num_comps_jac_data = honee->phys->implicit ? 5 : 0, in FreestreamBCSetup()
/honee/qfunctions/
H A Dchannel.h14 bool implicit; // !< Using implicit timesteping or not member
85 const bool is_implicit = context->implicit; in Channel_Inflow()
146 const bool is_implicit = context->implicit; in Channel_Outflow()
H A Dblasius.h16 bool implicit; // !< Using implicit timesteping or not member
131 const bool is_implicit = context->implicit; in Blasius_Inflow()
185 const bool is_implicit = context->implicit; in Blasius_Inflow_Jacobian()
H A Dadvection_types.h57 bool implicit; member
H A Deulervortex.h23 bool implicit; member
525 const bool is_implicit = context->implicit; in TravelingVortex_Inflow()
586 const bool is_implicit = context->implicit; in Euler_Outflow()
H A Dstg_shur14.h421 const bool implicit = stg_ctx->is_implicit; in StgShur14Inflow_Jacobian() local
435 const CeedScalar wdetJb = (implicit ? -1. : 1.) * q_data_sur[0][i]; in StgShur14Inflow_Jacobian()
H A Dshocktube.h37 bool implicit; member
H A Dadvection.h504 const bool is_implicit = context->implicit; in Advection_InOutFlowGeneric()
/honee/doc/
H A Dtheory.md3 …h-order finite/spectral element spatial discretizations and explicit or implicit high-order time-s…
143 …ted using the option `-implicit` is solved with Backward Differentiation Formula (BDF) method by d…
144 The implicit formulation solves nonlinear systems for $\bm q_N$:
148 $$ (eq-ts-implicit-ns)
156 …me integration scheme (backward difference formulas, generalized alpha, implicit Runge-Kutta, etc.…
157 Each nonlinear system {eq}`eq-ts-implicit-ns` will correspond to a weak form, as explained below.
158 …ing how difficult a given problem is to solve, we consider the Jacobian of {eq}`eq-ts-implicit-ns`,
411 For implicit LES, the subgrid stress is set to zero and the numerical properties of the discretized…
H A Druntime_options.md22 * - `-implicit`
23 - Use implicit time integrator formulation
H A Dexamples.md509 …ger values approaching unity are expected with more robust stabilization and implicit timestepping.
721 …_box_upper 8000,8000,8000 -bc_wall 1,2,3,4,5,6 -wall_comps 4 -wind_type rotation -implicit -stab su
733 …dm_plex_box_upper 1000,1000 -bc_wall 1,2,3,4 -wall_comps 4 -wind_type rotation -implicit -stab supg
/honee/
H A DREADME.md13 …ate variable choice, boundary conditions, time integration scheme (both implicit and explicit), an…
/honee/include/
H A Dnavierstokes.h198 PetscBool implicit; member
/honee/src/
H A Dsetuplibceed.c249 if (!honee->phys->implicit) { // RHS in SetupLibceed()
H A Dmisc.c310 box_faces_str, vec_type, phys_ctx->implicit ? "implicit" : "explicit")); in PrintRunInfo()
H A Dsetupts.c419 if (phys->implicit) { in TSSolve_NS()