\brief Interpolate modal face representation from coarse to next finer faces (level difference between coarser and finer faces has to be 1).
Interpolates functions defined on faces of the current level to faces of the next finer level. \n \n faces on fine face on current \n level level \n ------------------------ ------------------------ \n | | | | | \n | 3 | 4 | | | \n | | | | | \n ------------------------ <<---------- | 5 | \n | | | | | \n | 1 | 2 | | | \n | | | | | \n ------------------------ ------------------------ \n \n This is accomplished with lower complexity (with respect to the polynomial degree) by a dimension by dimension approach: \n \n faces on fine face on current \n level level \n ------------------------ ------------------------ \n | | | | | \n | 3 | 4 | | | \n | | | | | \n ------------------------ <<---------- | 5 | \n | | | | | \n | 1 | 2 | | | \n | | | | | \n ------------------------ ------------------------ \n \ / \n \ / \n \ / \n \ / \n ------------------------ \n | | \n | b | \n | | \n ------------------------ \n | | \n | a | \n | | \n ------------------------ \n
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | minLevel |
The minumum level of the mesh. |
||
integer, | intent(in) | :: | maxLevel |
The maximum level of the mesh. |
||
integer, | intent(in) | :: | currentLevel |
The current level (i.e. the coarse level). |
||
type(atl_cube_elem_type), | intent(in) | :: | mesh(minLevel:maxLevel) |
The mesh representation. |
||
type(atl_facedata_type), | intent(inout) | :: | facedata(minLevel:maxLevel) |
The face representations (finer faces are interpolated from coarser ones). |
||
integer, | intent(in) | :: | nScalars |
The number of scalar variables in your equation system. |