Searched refs:u_normal (Results 1 – 6 of 6) sorted by relevance
| /honee/qfunctions/ |
| H A D | channel.h | 122 const CeedScalar u_normal = Dot3(norm, s_exact.Y.velocity); in Channel_Inflow() local 126 v[0][i] -= wdetJb * rho_in * u_normal; in Channel_Inflow() 129 …for (CeedInt j = 0; j < 3; j++) v[j + 1][i] -= wdetJb * (rho_in * u_normal * s_exact.Y.velocity[j]… in Channel_Inflow() 132 v[4][i] -= wdetJb * u_normal * (E + P); in Channel_Inflow() 163 const CeedScalar u_normal = Dot3(norm, u); // Normal velocity in Channel_Outflow() local 166 v[0][i] -= wdetJb * rho * u_normal; in Channel_Outflow() 169 for (CeedInt j = 0; j < 3; j++) v[j + 1][i] -= wdetJb * (rho * u_normal * u[j] + norm[j] * P); in Channel_Outflow() 172 v[4][i] -= wdetJb * u_normal * (E + P); in Channel_Outflow()
|
| H A D | stg_shur14.h | 390 const CeedScalar u_normal = Dot3(normal, u); in StgShur14Inflow() local 398 v[0][i] -= wdetJb * rho * u_normal; in StgShur14Inflow() 401 for (CeedInt j = 0; j < 3; j++) v[j + 1][i] -= wdetJb * (rho * u_normal * u[j] + normal[j] * P); in StgShur14Inflow() 404 v[4][i] -= wdetJb * u_normal * (E + P); in StgShur14Inflow() 458 const CeedScalar u_normal = Dot3(normal, velocity); in StgShur14Inflow_Jacobian() local 460 v[0][i] = -wdetJb * drho * u_normal; 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() 462 v[4][i] = -wdetJb * u_normal * (dE + dP); in StgShur14Inflow_Jacobian()
|
| H A D | blasius.h | 219 const CeedScalar u_normal = Dot3(normal, s.Y.velocity); in Blasius_Inflow_Jacobian() local 221 v[0][i] = -wdetJb * drho * u_normal; in Blasius_Inflow_Jacobian() 223 v[j + 1][i] = -wdetJb * (drho * u_normal * s.Y.velocity[j] + normal[j] * dP); in Blasius_Inflow_Jacobian() 225 v[4][i] = -wdetJb * u_normal * (dE + dP); in Blasius_Inflow_Jacobian()
|
| H A D | bc_outflow.h | 58 const CeedScalar u_normal = Dot3(y_ext.velocity, normal); in RiemannOutflow() local 59 …const CeedScalar proj = (1 - outflow->recirc) * Softplus(-u_normal, outflow->softplus_velocity… in RiemannOutflow() 134 const CeedScalar u_normal = Dot3(s_int.Y.velocity, normal); in RiemannOutflow_Jacobian() local 136 …const CeedScalar proj = (1 - outflow->recirc) * Softplus(-u_normal, outflow->softplus_velocit… in RiemannOutflow_Jacobian() 137 …const CeedScalar dproj = (1 - outflow->recirc) * Softplus_fwd(-u_normal, -du_normal, outflow->… in RiemannOutflow_Jacobian()
|
| H A D | eulervortex.h | 612 const CeedScalar u_normal = Dot3(normal, u); // Normal velocity in Euler_Outflow() local 615 v[0][i] -= wdetJb * rho * u_normal; in Euler_Outflow() 618 … for (CeedInt j = 0; j < 3; j++) v[j + 1][i] -= wdetJb * (rho * u_normal * u[j] + normal[j] * P); in Euler_Outflow() 621 v[4][i] -= wdetJb * u_normal * (E + P); in Euler_Outflow()
|
| H A D | advection.h | 515 const CeedScalar u_normal = DotN(normal, u, dim); in Advection_InOutFlowGeneric() local 522 if (u_normal > 0) { // outflow in Advection_InOutFlowGeneric() 523 v[4][i] = -(1 - strong_form) * wdetJb * E * u_normal; in Advection_InOutFlowGeneric() 525 v[4][i] = -(1 - strong_form) * wdetJb * E_wind * u_normal; in Advection_InOutFlowGeneric()
|