(M, title=None)
| 41 | from FE_model import FE_model |
| 42 | |
| 43 | def print_tight(M, title=None): # {{{1 |
| 44 | nR,nC = M.shape |
| 45 | if title: |
| 46 | print(f'{title} -------') |
| 47 | for r in range(nR): |
| 48 | for c in range(nC): |
| 49 | print(' % 8.3e' % M[r,c], end='') |
| 50 | print() |
| 51 | # 1}}} |
| 52 | def box_model(elsize='qa0.4'): # {{{ |
| 53 | A = dict(vertices=np.array(((0, 0), (1, 0), (1, 1), (0, 1)))) |
nothing calls this directly
no outgoing calls
no test coverage detected