So I had to put a scale factor so far of -8.66071e10, however it seems to be working... Anyone can tell me how to get things going without the scaling? It sounds like there is maybe a Jacobian to apply, maybe? So far the mesh can be exported with dolfinx 0.8.0... the rest of the code will run with just Python about 3.10+ should be fine...Attached are the Python files...
```
My = 0
for tensor in stress_tensors:
My+=tensor
print(My*-8.66071e10)
```
```
ci: 1624, ni: 0
ci: 1624, ni: 3
ci: 1624, ni: 4
ci: 1624, ni: 7
# So far meets the American Wood Council's estimate last I checked...
-3195.275291884474
```
```
My = 0
for tensor in stress_tensors:
My+=tensor
print(My*-8.66071e10)
```
```
ci: 1624, ni: 0
ci: 1624, ni: 3
ci: 1624, ni: 4
ci: 1624, ni: 7
# So far meets the American Wood Council's estimate last I checked...
-3195.275291884474
```