Home
last modified time | relevance | path

Searched refs:VelocityGradient (Results 1 – 5 of 5) sorted by relevance

/honee/src/
H A Dvelocity_gradient_projection.c147 …ocityGradientProjectionApply(NodalProjectionData grad_velo_proj, Vec Q_loc, Vec VelocityGradient) { in VelocityGradientProjectionApply() argument
151 PetscCall(PetscLogEventBegin(HONEE_VelocityGradientProjection, Q_loc, VelocityGradient, 0, 0)); in VelocityGradientProjectionApply()
152 PetscCall(ApplyCeedOperatorLocalToGlobal(Q_loc, VelocityGradient, l2_rhs_ctx)); in VelocityGradientProjectionApply()
154 PetscCall(KSPSolve(grad_velo_proj->ksp, VelocityGradient, VelocityGradient)); in VelocityGradientProjectionApply()
155 PetscCall(PetscLogEventEnd(HONEE_VelocityGradientProjection, Q_loc, VelocityGradient, 0, 0)); in VelocityGradientProjectionApply()
/honee/problems/
H A Dsgs_dd_model.c11 typedef PetscErrorCode (*SgsDDNodalStressEval)(Honee honee, Vec Q_loc, Vec VelocityGradient, Vec SG…
98 static PetscErrorCode SgsDDNodalStressEval_Fused(Honee honee, Vec Q_loc, Vec VelocityGradient, Vec … in SgsDDNodalStressEval_Fused() argument
106 …PetscCall(ApplyCeedOperatorGlobalToLocal(VelocityGradient, SGSNodal_loc, sgs_dd_data->op_nodal_eva… in SgsDDNodalStressEval_Fused()
289 PetscErrorCode SgsDDNodalStressEval_Sequential(Honee honee, Vec Q_loc, Vec VelocityGradient, Vec SG… in SgsDDNodalStressEval_Sequential() argument
300 …PetscCall(ApplyCeedOperatorGlobalToLocal(VelocityGradient, DD_Inputs_loc, sgs_dd_data->op_nodal_dd… in SgsDDNodalStressEval_Sequential()
555 Vec VelocityGradient, SGSNodal_loc; in SgsDDApplyIFunction() local
563 PetscCall(DMGetGlobalVector(grad_velo_proj->dm, &VelocityGradient)); in SgsDDApplyIFunction()
564 PetscCall(VelocityGradientProjectionApply(grad_velo_proj, Q_loc, VelocityGradient)); in SgsDDApplyIFunction()
568 PetscCall(sgs_dd_data->sgs_nodal_eval(honee, Q_loc, VelocityGradient, SGSNodal_loc)); in SgsDDApplyIFunction()
577 PetscCall(DMRestoreGlobalVector(grad_velo_proj->dm, &VelocityGradient)); in SgsDDApplyIFunction()
/honee/qfunctions/
H A Dvelocity_gradient_projection.h28 VelocityGradient(grad_s, grad_velocity); in VelocityGradientProjectionRHS()
H A Dnewtonian_state.h511 CEED_QFUNCTION_HELPER void VelocityGradient(const State grad_s[3], CeedScalar grad_velocity[3][3]) { in VelocityGradient() function
536 VelocityGradient(grad_s, grad_velocity); in KMStrainRate_State()
577 VelocityGradient(grad_s, grad_velocity); in Vorticity()
/honee/include/
H A Dnavierstokes.h328 …locityGradientProjectionApply(NodalProjectionData grad_velo_proj, Vec Q_loc, Vec VelocityGradient);