Lines Matching full:velocity
35 * @param[out] ubar Mean velocity at wall_dist
151 * @param[in] ubar Mean velocity at X
154 * @param[out] u Velocity at X and t
188 * @param[in] ubar Mean velocity at X
195 * @param[out] u Velocity at X and t
327 * at each location, then calculate the actual velocity.
385 // Velocity normal to the boundary in StgShur14Inflow()
433 CeedScalar velocity[3]; in StgShur14Inflow_Jacobian() local
434 for (CeedInt j = 0; j < 3; j++) velocity[j] = jac_data_sur[5 + j][i]; in StgShur14Inflow_Jacobian()
435 // TODO This is almost certainly a bug. Velocity isn't stored here, only 0s. in StgShur14Inflow_Jacobian()
443 CeedScalar dE_kinetic = .5 * drho * Dot3(velocity, velocity); in StgShur14Inflow_Jacobian()
453 const CeedScalar u_normal = Dot3(norm, velocity); in StgShur14Inflow_Jacobian()
456 …for (int j = 0; j < 3; j++) v[j + 1][i] = -wdetJb * (drho * u_normal * velocity[j] + norm[j] * dP); in StgShur14Inflow_Jacobian()