Lines Matching full:velocity
30 * @param[out] ubar Mean velocity at wall_dist
146 * @param[in] ubar Mean velocity at X
149 * @param[out] u Velocity at X and t
183 * @param[in] ubar Mean velocity at X
190 * @param[out] u Velocity at X and t
330 * at each location, then calculate the actual velocity.
389 // Velocity normal to the boundary in StgShur14Inflow()
438 CeedScalar velocity[3]; in StgShur14Inflow_Jacobian() local
439 for (CeedInt j = 0; j < 3; j++) velocity[j] = jac_data_sur[5 + j][i]; in StgShur14Inflow_Jacobian()
440 // TODO This is almost certainly a bug. Velocity isn't stored here, only 0s. in StgShur14Inflow_Jacobian()
448 CeedScalar dE_kinetic = .5 * drho * Dot3(velocity, velocity); in StgShur14Inflow_Jacobian()
458 const CeedScalar u_normal = Dot3(normal, velocity); in StgShur14Inflow_Jacobian()
461 …for (int j = 0; j < 3; j++) v[j + 1][i] = -wdetJb * (drho * u_normal * velocity[j] + normal[j] * d… in StgShur14Inflow_Jacobian()