| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(kMat_t) | :: | this | ||||
| integer, | intent(in) | :: | i | |||
| integer, | intent(in) | :: | j | |||
| integer, | intent(in) | :: | k | |||
| integer, | intent(in) | :: | l |
function directElement(this, i, j, k, l) result(matel) implicit none class(kMat_t) :: this integer, intent(in) :: i, j, k, l real(dp) :: matel matel = this%kMat_p(UMatInd(i, j, k, l)) end function directElement