Subroutine to set face values to impose boundary conditions at a certain point of the domain. The subroutine is operating levelwise.
: For zero gradient BC, we need stateData passed into this routine
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(atl_boundary_type), | intent(in) | :: | bc(:) | The global description of the boundaries. |
||
type(atl_level_boundary_type), | intent(in) | :: | boundary | The levelwise collection of boundary elements and boundary faces. |
||
type(atl_facedata_type), | intent(inout) | :: | facedata | The face data on the current level |
||
type(atl_Equations_type), | intent(in) | :: | equation | The underlying equation system |
||
type(tem_time_type), | intent(in) | :: | time | The absolute time point. |
||
type(atl_cube_elem_type), | intent(in) | :: | mesh | The description of the mesh on the current level. |
||
type(ply_poly_project_type), | intent(inout) | :: | poly_proj | Data for the projection methods |
||
logical, | intent(in) | :: | nodalBnd | Set boundaries in nodal fashion by default? If set to false, the boundaries may still be set in nodal way whenever necessary (e.g. boundaries which have space-time dependence, etc.) |
||
type(atl_faceMaterialData_type), | intent(in), | optional | :: | material(3) | Material description of the faces contained in boundary. One entry for each spatial direction, i.e. x,y,z. |
|
integer, | intent(in) | :: | currentLevel | the level to compute on |
||
type(atl_statedata_type), | intent(inout) | :: | statedata | The state data on the current level |
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | private | :: | facePos | ||||
integer, | private | :: | neighPos | ||||
integer, | private | :: | neighAlign | ||||
integer, | private | :: | nscalars | ||||
integer, | private | :: | iBC | ||||
integer, | private | :: | iDir | ||||
integer, | private | :: | iFace | ||||
integer, | private | :: | iAlign | ||||
integer, | private | :: | iglobFace | ||||
real(kind=rk), | private, | allocatable | :: | faceOp(:,:) | |||
real(kind=rk), | private | :: | elemLength | ||||
real(kind=rk), | private | :: | bndBaryCoord(1:3) | ||||
real(kind=rk), | private, | allocatable | :: | faceMaterial(:,:) | |||
integer, | private | :: | nQuadPoints | ||||
integer, | private | :: | nDofs | ||||
integer, | private | :: | oversamp_dofs | ||||
integer, | private | :: | oversamp_degree | ||||
integer, | private | :: | signFact | ||||
integer, | private | :: | iMode | ||||
integer, | private | :: | jMode | ||||
integer, | private | :: | nModes | ||||
integer, | private | :: | modePos | ||||
integer, | private | :: | offset_face | ||||
integer, | private | :: | offset_vol | ||||
integer, | private | :: | kMode | ||||
integer, | private | :: | k | ||||
integer, | private | :: | iStride | ||||
integer, | private | :: | mfacepos | ||||
real(kind=rk), | private | :: | corrector(poly_proj%body_2D%nDofs,size(statedata%state,3)) | ||||
real(kind=rk), | private | :: | sidefact |