TODO NA - Move this routine to the atl_modg_kernel_module
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(atl_cube_elem_type), | intent(in) | :: | mesh | Descritption of the cubical elements in the mesh |
||
| type(atl_Equations_type), | intent(in) | :: | equation | The equation description. |
||
| type(atl_kerneldata_type), | intent(inout) | :: | kerneldata | The data of the kernel. Holds the physical fluxes. |
||
| type(atl_statedata_type), | intent(inout) | :: | statedata | The representation on the face + representation of the flux. |
||
| integer, | intent(in) | :: | dirVec(3,3) | vector for direction indicators |
||
| type(ply_poly_project_type) | :: | poly_proj | Data for projection method |
|||
| type(atl_material_type), | intent(inout) | :: | material | Material parameters (mu, epsilon) for all elements |
||
| type(atl_scheme_type), | intent(inout) | :: | scheme(minLevel:maxLevel) | The parameters of the MODG scheme |
||
| real(kind=rk), | intent(in) | :: | dl_prod(:,:) | stored scalar products of the testfunction and anstaz function |
||
| type(atl_penalization_pointer_type) | :: | apply_pen(2) | ||||
| type(atl_penalizationData_type), | intent(inout) | :: | penalizationdata | |||
| integer, | intent(in) | :: | minLevel | |||
| integer, | intent(in) | :: | currentLevel | |||
| integer, | intent(in) | :: | maxLevel | |||
| type(atl_physflux_pointer_type) | :: | eval_phy(2) | ||||
| logical, | intent(in) | :: | usePenalization | Flag indicating whether to apply the penalization or not. When a implicit scheme is used to integrate the penalized parts, this can be used to switch it off here. |
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | private | :: | iDir | The direction |
|||
| integer, | private | :: | cov | Indicates whether the element has contant or variable material |
|||
| real(kind=rk), | private, | allocatable | :: | modalCoeffs(:,:) | The modal coefficients of the current element in the loop. |
||
| real(kind=rk), | private, | allocatable | :: | modalCoeffs_gradient(:,:,:) | The modal coefficients of the current element in the loop. |
||
| real(kind=rk), | private, | allocatable | :: | pointVal(:,:) | Nodal representation of the polynomial with in each cell. |
||
| real(kind=rk), | private, | allocatable | :: | pointVal_gradient(:,:,:) | Nodal representation of the polynomial with in each cell. |
||
| real(kind=rk), | private, | allocatable | :: | nodal_res(:,:) | The nodal representation of the physical flux along the 3 spatial directions. |
||
| real(kind=rk), | private, | allocatable | :: | tmp_state_der(:,:) | |||
| integer, | private | :: | nquadpoints | ||||
| integer, | private | :: | oversamp_dofs | ||||
| integer, | private | :: | iElem | ||||
| integer, | private | :: | ndofs | ||||
| integer, | private | :: | elems | ||||
| integer, | private | :: | elemPos | ||||
| integer, | private | :: | rot(5) | ||||
| logical, | private | :: | use_linear_flux | ||||
| logical, | private | :: | use_inviscid_flux | ||||
| procedure(physFlux_interface), | private, | pointer | :: | physFlux | => | null() |