Lines Matching refs:stress
481 CEED_QFUNCTION_HELPER void FluxTotal(const StateConservative F_inviscid[3], CeedScalar stress[3][3]… in FluxTotal()
484 for (CeedInt k = 0; k < 3; k++) Flux[k + 1][j] = F_inviscid[j].momentum[k] - stress[k][j]; in FluxTotal()
489 …uxTotal_Boundary(const StateConservative F_inviscid[3], const CeedScalar stress[3][3], const CeedS… in FluxTotal_Boundary()
495 Flux[k + 1] += (F_inviscid[j].momentum[k] - stress[k][j]) * normal[j]; in FluxTotal_Boundary()
501 …mannBoundary(const StateConservative F_inviscid_normal, const CeedScalar stress[3][3], const CeedS… in FluxTotal_RiemannBoundary()
508 Flux[k + 1] -= stress[k][j] * normal[j]; in FluxTotal_RiemannBoundary()
556 …tonianStress(NewtonianIdealGasContext gas, const CeedScalar strain_rate[6], CeedScalar stress[6]) { in NewtonianStress()
559 stress[i] = gas->mu * (2 * strain_rate[i] + gas->lambda * div_u * (i < 3)); in NewtonianStress()
563 …wtonianIdealGasContext gas, StatePrimitive Y, const State grad_s[3], const CeedScalar stress[3][3], in ViscousEnergyFlux()
566 …Fe[i] = -Y.velocity[0] * stress[0][i] - Y.velocity[1] * stress[1][i] - Y.velocity[2] * stress[2][i… in ViscousEnergyFlux()
571 … const CeedScalar stress[3][3], const CeedScalar dstress[3][3], CeedScalar dFe[3]) { in ViscousEnergyFlux_fwd()
573 …ty[0] * dstress[0][i] - dY.velocity[0] * stress[0][i] - Y.velocity[1] * dstress[1][i] - dY.velocit… in ViscousEnergyFlux_fwd()
574 … Y.velocity[2] * dstress[2][i] - dY.velocity[2] * stress[2][i] - gas->k * grad_ds[i].Y.temperature; in ViscousEnergyFlux_fwd()