Lines Matching refs:Rinv
223 …physics.characteristic)(ctx->physics.user, dof, &x[i * dof], ctx->R, ctx->Rinv, ctx->speeds, ctx->… in FVRHSFunctionslow()
233 cjmpL[k] += ctx->Rinv[k + j * dof] * jmpL; in FVRHSFunctionslow()
234 cjmpR[k] += ctx->Rinv[k + j * dof] * jmpR; in FVRHSFunctionslow()
327 …physics.characteristic)(ctx->physics.user, dof, &x[i * dof], ctx->R, ctx->Rinv, ctx->speeds, ctx->… in FVRHSFunctionfast()
336 cjmpL[k] += ctx->Rinv[k + j * dof] * jmpL; in FVRHSFunctionfast()
337 cjmpR[k] += ctx->Rinv[k + j * dof] * jmpR; in FVRHSFunctionfast()
428 …physics.characteristic)(ctx->physics.user, dof, &x[i * dof], ctx->R, ctx->Rinv, ctx->speeds, ctx->… in FVRHSFunctionslow2()
437 cjmpL[k] += ctx->Rinv[k + j * dof] * jmpL; in FVRHSFunctionslow2()
438 cjmpR[k] += ctx->Rinv[k + j * dof] * jmpR; in FVRHSFunctionslow2()
544 …physics.characteristic)(ctx->physics.user, dof, &x[i * dof], ctx->R, ctx->Rinv, ctx->speeds, ctx->… in FVRHSFunctionfast2()
553 cjmpL[k] += ctx->Rinv[k + j * dof] * jmpL; in FVRHSFunctionfast2()
554 cjmpR[k] += ctx->Rinv[k + j * dof] * jmpR; in FVRHSFunctionfast2()
696 …PetscCall(PetscMalloc4(dof * dof, &ctx.R, dof * dof, &ctx.Rinv, 2 * dof, &ctx.cjmpLR, 1 * dof, &ct… in main()
819 PetscCall(PetscFree4(ctx.R, ctx.Rinv, ctx.cjmpLR, ctx.cslope)); in main()