| /honee/problems/ |
| H A D | shocktube.c | 32 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 D | eulervortex.c | 60 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 D | channel.c | 91 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 D | advection.c | 391 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 D | newtonian.c | 378 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 D | blasius.c | 198 blasius_ctx->implicit = honee->phys->implicit; in NS_BLASIUS()
|
| H A D | bc_outflow.c | 162 .num_comps_jac_data = honee->phys->implicit ? 11 : 0, in OutflowBCSetup()
|
| H A D | stg_shur14.c | 269 .is_implicit = honee->phys->implicit, in SetupStg() 321 honee_bc->num_comps_jac_data = honee->phys->implicit ? 11 : 0; in SetupStg()
|
| H A D | bc_freestream.c | 160 .num_comps_jac_data = honee->phys->implicit ? 5 : 0, in FreestreamBCSetup()
|
| /honee/qfunctions/ |
| H A D | channel.h | 14 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 D | blasius.h | 16 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 D | advection_types.h | 57 bool implicit; member
|
| H A D | eulervortex.h | 23 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 D | stg_shur14.h | 421 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 D | shocktube.h | 37 bool implicit; member
|
| H A D | advection.h | 504 const bool is_implicit = context->implicit; in Advection_InOutFlowGeneric()
|
| /honee/doc/ |
| H A D | theory.md | 3 …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 D | runtime_options.md | 22 * - `-implicit` 23 - Use implicit time integrator formulation
|
| H A D | examples.md | 509 …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 D | README.md | 13 …ate variable choice, boundary conditions, time integration scheme (both implicit and explicit), an…
|
| /honee/include/ |
| H A D | navierstokes.h | 198 PetscBool implicit; member
|
| /honee/src/ |
| H A D | setuplibceed.c | 249 if (!honee->phys->implicit) { // RHS in SetupLibceed()
|
| H A D | misc.c | 310 box_faces_str, vec_type, phys_ctx->implicit ? "implicit" : "explicit")); in PrintRunInfo()
|
| H A D | setupts.c | 419 if (phys->implicit) { in TSSolve_NS()
|