| 1636 | |
| 1637 | template<int DIM> |
| 1638 | void MPContactElement<DIM>::CalcElementMatrix(FlatMatrix<double> elmat, |
| 1639 | LocalHeap& lh) const |
| 1640 | { |
| 1641 | HeapReset hr(lh); |
| 1642 | FlatVector<> elx(elmat.Width(), lh); |
| 1643 | elx = 0; |
| 1644 | CalcLinearizedElementMatrix (elx, elmat, lh); |
| 1645 | } |
| 1646 | |
| 1647 | |
| 1648 | template<int DIM> |