Home
last modified time | relevance | path

Searched refs:boundary_threshold (Results 1 – 1 of 1) sorted by relevance

/honee/qfunctions/
H A Dadvection.h133 const CeedScalar boundary_threshold = 20 * CEED_EPSILON; in Exact_AdvectionGeneric() local
136 q[4] = cross_product[2] > boundary_threshold ? 0 : 1; in Exact_AdvectionGeneric()
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()
159 const CeedScalar boundary_threshold = 20 * CEED_EPSILON; in Exact_AdvectionGeneric() local
161 if ((x < boundary_threshold) || (y > ly - boundary_threshold)) { in Exact_AdvectionGeneric()
163 } else if (y < boundary_threshold) { in Exact_AdvectionGeneric()