trivial and never used
even the more commoly used fucntions for 3x3 matrices are not all in use
This commit is contained in:
parent
59d09d708e
commit
e56f2e09a4
13
src/math.f90
13
src/math.f90
|
@ -545,19 +545,6 @@ pure function math_symmetric33(m)
|
||||||
end function math_symmetric33
|
end function math_symmetric33
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
|
||||||
!> @brief symmetrize a 6x6 matrix
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
|
||||||
pure function math_symmetric66(m)
|
|
||||||
|
|
||||||
real(pReal), dimension(6,6) :: math_symmetric66
|
|
||||||
real(pReal), dimension(6,6), intent(in) :: m
|
|
||||||
|
|
||||||
math_symmetric66 = 0.5_pReal * (m + transpose(m))
|
|
||||||
|
|
||||||
end function math_symmetric66
|
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief skew part of a 3x3 matrix
|
!> @brief skew part of a 3x3 matrix
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue