Searched refs:wind (Results 1 – 5 of 5) sorted by relevance
| /honee/problems/ |
| H A D | advection.c | 42 CeedScalar *wind = setup_ctx->wind; in PRINT_ADVECTION() local 45 …PetscCall(PetscPrintf(comm, " Background Wind : %f,%f\n", wind[0], wind[1])); in PRINT_ADVECTION() 48 …tscPrintf(comm, " Background Wind : %f,%f,%f\n", wind[0], wind[1], wind[2])); in PRINT_ADVECTION() 411 PetscReal wind[3] = {1., 0, 0}; // m/s in NS_ADVECTION() local 431 …PetscCall(PetscOptionsRealArray("-wind_translation", "Constant wind vector", NULL, wind, &n, &user… in NS_ADVECTION() 479 …if (wind_type == ADVDIF_WIND_TRANSLATION && advectionic_type == ADVDIF_IC_BUBBLE_CYLINDER && wind[… in NS_ADVECTION() 480 wind[2] = 0; in NS_ADVECTION() 499 wind[i] *= (units->meter / units->second); in NS_ADVECTION() 507 setup_context->wind[0] = wind[0]; in NS_ADVECTION() 508 setup_context->wind[1] = wind[1]; in NS_ADVECTION() [all …]
|
| /honee/qfunctions/ |
| H A D | advection.h | 70 const CeedScalar *wind = context->wind; in Exact_AdvectionGeneric() local 87 q[1] = wind[0]; in Exact_AdvectionGeneric() 88 q[2] = wind[1]; in Exact_AdvectionGeneric() 89 q[3] = dim == 2 ? 0. : wind[2]; in Exact_AdvectionGeneric() 130 CeedScalar skewed_barrier[3] = {wind[0], wind[1], 0}; 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() 147 CeedScalar theta = context->wave_frequency * DotN(X, wind, dim) + context->wave_phase; in Exact_AdvectionGeneric()
|
| H A D | advection_types.h | 74 CeedScalar wind[3]; member
|
| /honee/ |
| H A D | CHANGELOG.md | 16 - Add boundary layer IC and wind type to advection-diffusion equations, see !46
|
| /honee/doc/ |
| H A D | examples.md | 564 …In this case, a background wind with a constant rectilinear velocity field, enters the domain and … 601 For the inflow boundary conditions, a prescribed $E_{wind}$ is applied weakly on the inflow boundar… 604 …\cdot \widehat{\bm{n}} \,dS = \int_{\partial \Omega_{inflow}} \bm v \, E_{wind} \, \bm u \cdot \wi… 673 - Constant wind vector when `-wind_type translation` 678 - Total energy of inflow wind when `-wind_type translation`
|