Lines Matching refs:mean_velocity
22 CeedScalar mean_velocity[3]; member
63 const CeedScalar *mean_velocity = context->mean_velocity; in Exact_Euler() local
71 const CeedScalar xc = center[0] + mean_velocity[0] * time; in Exact_Euler()
72 const CeedScalar yc = center[1] + mean_velocity[1] * time; in Exact_Euler()
92 u[0] = mean_velocity[0] - C * y0; in Exact_Euler()
93 u[1] = mean_velocity[1] + C * x0; in Exact_Euler()
116 u[0] = mean_velocity[0]; in Exact_Euler()
117 u[1] = mean_velocity[1]; in Exact_Euler()
145 u[0] = mean_velocity[0]; in Exact_Euler()
146 u[1] = mean_velocity[1]; in Exact_Euler()
159 u[0] = mean_velocity[0]; in Exact_Euler()
160 u[1] = mean_velocity[1]; in Exact_Euler()
526 CeedScalar *mean_velocity = context->mean_velocity; in TravelingVortex_Inflow() local
534 for (CeedInt i = 0; i < 3; i++) mean_velocity[i] = 0.; in TravelingVortex_Inflow()
547 const CeedScalar face_normal = Dot3(normal, mean_velocity); in TravelingVortex_Inflow()
556 …const CeedScalar E_kinetic_inlet = (mean_velocity[0] * mean_velocity[0] + mean_velocity[1] * mean_… in TravelingVortex_Inflow()
565 …j = 0; j < 3; j++) v[j + 1][i] -= wdetJb * (rho_inlet * face_normal * mean_velocity[j] + normal[j]… in TravelingVortex_Inflow()
587 CeedScalar *mean_velocity = context->mean_velocity; in Euler_Outflow() local
603 const CeedScalar face_normal = Dot3(normal, mean_velocity); in Euler_Outflow()