Lines Matching refs:cL
173 PetscReal cL, cR, speed; in PhysicsRiemann_SW_Rusanov() local
217 cL = PetscSqrtReal(sw->gravity * uL->h); in PhysicsRiemann_SW_Rusanov()
219 …speed = PetscMax(PetscAbsReal(Dot2Real(uL->uh, nn) / uL->h) + cL, PetscAbsReal(Dot2Real(uR->uh, nn… in PhysicsRiemann_SW_Rusanov()
231 CeedScalar *cL = out[0], *cR = out[1]; in PhysicsRiemann_SW_Rusanov_CEED() local
256 cL[i + Q * j] = -flux[j] / geom[i + Q * 2]; in PhysicsRiemann_SW_Rusanov_CEED()
261 …for (CeedInt j = 0; j < DIM + 1; ++j) PetscPrintf(PETSC_COMM_SELF, " | %g | (%g)\n", cL[i + Q * j… in PhysicsRiemann_SW_Rusanov_CEED()
789 PetscReal cL, cR, speed, velL, velR, nn[DIM], s2; in PhysicsRiemann_Euler_Godunov() local
815 ierr = SpeedOfSound_PG(gamma, uL, &cL); in PhysicsRiemann_Euler_Godunov()
818 cL = zero / zero; in PhysicsRiemann_Euler_Godunov()
829 speed = PetscMax(velR + cR, velL + cL); in PhysicsRiemann_Euler_Godunov()
843 CeedScalar *cL = out[0], *cR = out[1]; in PhysicsRiemann_Euler_Godunov_CEED() local
865 cL[i + Q * j] = -flux[j] / geom[i + Q * 2]; in PhysicsRiemann_Euler_Godunov_CEED()
870 …for (CeedInt j = 0; j < DIM + 2; ++j) PetscPrintf(PETSC_COMM_SELF, " | %g | (%g)\n", cL[i + Q * j… in PhysicsRiemann_Euler_Godunov_CEED()