Return 4th order material tensor of size d x d x d x d evaluated at the origin.
(self)
| 73 | |
| 74 | @property |
| 75 | def material_tensor(self): |
| 76 | """ Return 4th order material tensor of size d x d x d x d evaluated at |
| 77 | the origin. |
| 78 | """ |
| 79 | coord = np.zeros(self.dim) |
| 80 | return self.get_material_tensor(coord) |
| 81 | |
| 82 | @property |
| 83 | def dim(self): |
nothing calls this directly
no test coverage detected