-
Hi, I'm working an a HALE project using SHARPy and I wish to perform some dynamic coupled modelling of launch/ catapult-assisted takeoffs. I'm using the generate_hale.py file in sharpy/cases/coupled/multibody_takeoff as a reference but I can't see how the launch process is implemented in this file, it seems to go straight to free flight. Can you direct me to any documentation on the generate_dyn_file function and how to use the dynamic_forces and forced_for_vel capabilities? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @tpleece, This is indeed a complex case For the catapult-takeoff likely the best case to start off with is this one and you can see in the function below that the takeoff settings are specified through Lagrange and then implemented through controllers This is not my area of expertise but hopefully from this optimisation case (the generate.py file is used within the optimisation routine here) Hope this helps, |
Beta Was this translation helpful? Give feedback.
Hi @tpleece,
This is indeed a complex case
For the catapult-takeoff likely the best case to start off with is this one and you can see in the function below that the takeoff settings are specified through Lagrange
sharpy/scripts/optimiser/base_case/generate.py
Line 717 in 41b6cb6
and then implemented through controllers
sharpy/scripts/optimiser/base_case/generate.py
Line 886 in 41b6cb6
This is not my area of expertise but hopefully from this optimisation case (the generate.py file is used within the optimisation routine here)
Hope this helps,
Norberto