We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99098af commit 161d2ecCopy full SHA for 161d2ec
src/jsrm/symbolic_derivation/planar_pcs.py
@@ -65,9 +65,9 @@ def symbolically_derive_planar_pcs_model(
65
# tendon length jacobians for each segment as a function of the point coordinate s
66
J_tend_sms = []
67
# cross-sectional area of each segment
68
- A = sp.zeros(num_segments)
+ A = sp.zeros(num_segments, 1)
69
# second area moment of inertia of each segment
70
- I = sp.zeros(num_segments)
+ I = sp.zeros(num_segments, 1)
71
# inertia matrix
72
B = sp.zeros(num_dof, num_dof)
73
# potential energy
0 commit comments