Open alexswerner opened 1 month ago
The PPO test case seems to work again after some debugging. Key findings:
self.spline_points_func_array_normal_dir = []
to the constructor of MuscleTorquesWithVaryingBetaSplines does not work as intended.dampen
API using AnalyticalLinearDamper
needs apparently a different nu valueOne option question for precisely reproducing the test case is how to transfer the
nu
specified in the old Cosserat rod constructor to the new dampen
API.
Hey,
Thank you for your interest.
For the current PyElastica damping implementation, you can scale the nu
as nu_new = nu_old / density / base_area
Hi,
amazing work here. But the software has moved on and I would like to make it work again. So far I have:
Right now I can execute the training for PPO in Case1 which is at least something. This is by directly calling:
I pushed the code here: https://github.com/alexswerner/Elastica-RL-control
However, the output of the post processing script does not show a moving robot. :-(
So there is still some work to do.