Home
last modified time | relevance | path

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

/honee/src/ !
H A Dhonee-meshtransform.c82 PetscInt nmax = 3, faces[3]; in HoneeMeshTransform_PlateMesh() local
83 PetscCall(PetscOptionsGetIntArray(NULL, NULL, "-dm_plex_box_faces", faces, &nmax, NULL)); in HoneeMeshTransform_PlateMesh()
85 const PetscReal dybox = domain_size[1] / faces[1]; in HoneeMeshTransform_PlateMesh()
92 PetscReal logdy = (log(domain_max[1]) - log(refine_height)) / (faces[1] - N); in HoneeMeshTransform_PlateMesh()
94 *num_node_locs = faces[1] + 1; in HoneeMeshTransform_PlateMesh()
112 PetscCheck(*num_node_locs >= faces[1] + 1, comm, PETSC_ERR_FILE_UNEXPECTED, in HoneeMeshTransform_PlateMesh()
114 faces[1] + 1, *num_node_locs); in HoneeMeshTransform_PlateMesh()
115 if (*num_node_locs > faces[1] + 1) { in HoneeMeshTransform_PlateMesh()
119 *num_node_locs, faces[1] + 1)); in HoneeMeshTransform_PlateMesh()
121 PetscScalar max_y = (*node_locs)[faces[1]]; in HoneeMeshTransform_PlateMesh()
/honee/doc/ !
H A Druntime_options.md256 - Use wall boundary conditions on this list of faces
262 - Use weak slip boundary condition on this list of faces
265 - Use symmetry boundary conditions, for the x component, on this list of faces
268 - Use symmetry boundary conditions, for the y component, on this list of faces
271 - Use symmetry boundary conditions, for the z component, on this list of faces
274 - Use inflow boundary conditions on this list of faces
277 - Use outflow boundary conditions on this list of faces
280 - Use freestream boundary conditions on this list of faces
H A Dtheory.md647 To use the STG boundary condition, the `-bc_inflow` option should be set to the boundary faces that…
648 The `-stg_use` flag is then used to enable/disable applying STG to those faces.
659 - Enable STG for `bc_inflow` faces
/honee/problems/ !
H A Dchannel.c170 PetscInt nmax = 3, faces[3]; in DivDiffFluxVerifyMesh() local
171 PetscCall(PetscOptionsGetIntArray(NULL, NULL, "-dm_plex_box_faces", faces, &nmax, NULL)); in DivDiffFluxVerifyMesh()
173 const PetscReal dxbox = domain_size[0] / (faces[0]); in DivDiffFluxVerifyMesh()
H A Dstg_shur14.c283 PetscInt nmax = 3, faces[3]; in SetupStg() local
284 PetscCall(PetscOptionsGetIntArray(NULL, NULL, "-dm_plex_box_faces", faces, &nmax, NULL)); in SetupStg()
285 global_stg_ctx->dx = given_stg_dx ? stg_dx : domain_size[0] / faces[0]; in SetupStg()