Lines Matching full:outflow
54 // Outflow BCs:
56 // Both In/Outflow BCs for E are applied weakly in the
137 …if ((x < boundary_threshold && wind[0] < boundary_threshold) || // outflow at -x bo… in Exact_AdvectionGeneric()
138 …(y < boundary_threshold && wind[1] < boundary_threshold) || // outflow at -y bounda… in Exact_AdvectionGeneric()
139 …(x > context->lx - boundary_threshold && wind[0] > boundary_threshold) || // outflow at +x bounda… in Exact_AdvectionGeneric()
140 …(y > context->ly - boundary_threshold && wind[1] > boundary_threshold) // outflow at +y bounda… in Exact_AdvectionGeneric()
165 } else { // interior and outflow boundary in Exact_AdvectionGeneric()
483 // This QFunction implements consistent outflow and inflow BCs
486 // Inflow and outflow faces are determined based on sign(dot(wind, normal)):
487 // sign(dot(wind, normal)) > 0 : outflow BCs
490 // Outflow BCs:
491 // The validity of the weak form of the governing equations is extended to the outflow and the c…
521 // Implementing in/outflow BCs in Advection_InOutFlowGeneric()
522 if (u_normal > 0) { // outflow in Advection_InOutFlowGeneric()