Numerical flux calculation for viscous part of the Navier-Stokes equation across the faces in a single spatial direction.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(atl_Equations_type), | intent(in) | :: | equation | The equation you solve. | ||
| type(atl_facedata_type), | intent(inout) | :: | facedata | The face state if the equation | ||
| type(atl_modg_scheme_type), | intent(in) | :: | scheme | Parameters of the modal dg scheme | ||
| type(tem_faceIterator_type), | intent(in) | :: | faces | The faces to calculate the fluxes for. | ||
| integer, | intent(in) | :: | faceDir | The spatial direction of the faces you calc the fluxes for, use the following: 1 --> x direction. \n 2 --> y direction. \n 3 --> z direction. | ||
| type(ply_poly_project_type), | intent(inout) | :: | poly_proj | Parameter for used projection | ||
| real(kind=rk), | intent(in) | :: | elemLength | The length of an element | 
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | private | :: | iPoint | ||||
| real(kind=rk), | private, | allocatable | :: | leftModalCoeff(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | rightModalCoeff(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | leftModalCoeff_gradX(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | rightModalCoeff_gradX(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | leftModalCoeff_gradY(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | rightModalCoeff_gradY(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | leftModalCoeff_gradZ(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | rightModalCoeff_gradZ(:,:) | |||
| real(kind=rk), | private | :: | flux(equation%varSys%nScalars) | ||||
| integer, | private | :: | iside | ||||
| integer, | private | :: | left_neighbor | ||||
| integer, | private | :: | right_neighbor | ||||
| integer, | private | :: | varRotation(equation%varSys%nScalars) | ||||
| integer, | private | :: | gradRot(3) | ||||
| real(kind=rk), | private, | allocatable | :: | pointValLeft(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | pointValRight(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | pointValLeft_grad(:,:,:) | |||
| real(kind=rk), | private, | allocatable | :: | pointValRight_grad(:,:,:) | |||
| real(kind=rk), | private, | allocatable | :: | nodalNumFlux(:,:) | |||
| real(kind=rk), | private, | allocatable | :: | numFluxBuffer(:,:) | |||
| integer, | private | :: | nQuadPoints | ||||
| integer, | private | :: | overSamp_dofs | ||||
| integer, | private | :: | nFaceDofs | ||||
| integer, | private | :: | iVP | ||||
| integer, | private | :: | nPVars | ||||
| integer, | private | :: | nScalars | ||||
| integer, | private | :: | iVar | ||||
| real(kind=rk), | private | :: | penaltyIP |