You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently running simulations in several phases. In my phase 0, q, qdot and tau are declared as q, qdot and tau. But in my phase 1, which contains holonomic constraints, the q, qdot and tau of the independent segments are declared as u, udot and tau. The problem is that in solution.py, the key chosen is that of the first phase and the key name (here q) is considered to be the same for all phases. However, this is not the case in my example. As a result, I get this error for the phase 1 because the real key is u:
I'm currently running simulations in several phases. In my phase 0,
q
,qdot
andtau
are declared asq
,qdot
andtau
. But in my phase 1, which contains holonomic constraints, theq
,qdot
andtau
of the independent segments are declared asu
,udot
andtau
. The problem is that insolution.py
, the key chosen is that of the first phase and the key name (hereq
) is considered to be the same for all phases. However, this is not the case in my example. As a result, I get this error for the phase 1 because the real key isu
:On this line of
solution.py
(l.1457):The text was updated successfully, but these errors were encountered: