Lines Matching refs:mean_velocity
28 CeedScalar mean_velocity[3]; member
69 const CeedScalar *mean_velocity = context->mean_velocity; in Exact_Euler() local
77 const CeedScalar xc = center[0] + mean_velocity[0] * time; in Exact_Euler()
78 const CeedScalar yc = center[1] + mean_velocity[1] * time; in Exact_Euler()
98 u[0] = mean_velocity[0] - C * y0; in Exact_Euler()
99 u[1] = mean_velocity[1] + C * x0; in Exact_Euler()
122 u[0] = mean_velocity[0]; in Exact_Euler()
123 u[1] = mean_velocity[1]; in Exact_Euler()
151 u[0] = mean_velocity[0]; in Exact_Euler()
152 u[1] = mean_velocity[1]; in Exact_Euler()
165 u[0] = mean_velocity[0]; in Exact_Euler()
166 u[1] = mean_velocity[1]; in Exact_Euler()
535 CeedScalar *mean_velocity = context->mean_velocity; in TravelingVortex_Inflow() local
543 for (CeedInt i = 0; i < 3; i++) mean_velocity[i] = 0.; in TravelingVortex_Inflow()
556 …const CeedScalar face_normal = norm[0] * mean_velocity[0] + norm[1] * mean_velocity[1] + norm[2] *… in TravelingVortex_Inflow()
565 …const CeedScalar E_kinetic_inlet = (mean_velocity[0] * mean_velocity[0] + mean_velocity[1] * mean_… in TravelingVortex_Inflow()
574 …j = 0; j < 3; j++) v[j + 1][i] -= wdetJb * (rho_inlet * face_normal * mean_velocity[j] + norm[j] *… in TravelingVortex_Inflow()
596 CeedScalar *mean_velocity = context->mean_velocity; in Euler_Outflow() local
612 …const CeedScalar face_normal = norm[0] * mean_velocity[0] + norm[1] * mean_velocity[1] + norm[2] *… in Euler_Outflow()