11-15-2025 04:29 PM
Hello! I would like to make a simple simulation which shows a rocket launch with 3 variable inputs: weight of the rocket, speed and degree. Can you help with that? I am a beginner, and I cannot figure it out,
Solved! Go to Solution.
11-15-2025 04:48 PM
It would be of demonstration purposes for one of my classes for kids.
11-15-2025 05:52 PM
Do you need help with the theory or with the implementation in LabVIEW?
What kind of simulation? Just a graph of the trajectory or an animation?
11-15-2025 08:23 PM
I think it is much easier to ask AI to write a Python script for you.
11-15-2025 09:25 PM
@Alexanderleaf wrote:
... rocket launch with 3 variable inputs: weight of the rocket, speed and degree.
In addition, these three variables are insufficient. You also need the engine power.
Maybe start with the simpler problem of a cannonball, where you only have initial speed and angle, (and maybe air resistance as a function of speed).
11-16-2025 01:17 AM
You are great! This is what I thought of. Is there a ready simulation for cannon ball what I can use?
11-16-2025 09:20 AM - edited 11-16-2025 09:25 AM
Without wind resistance, you start out with a horizontal and vertical speed component based on the starting angle and directional speed. The horizontal speed component will remain constant and the vertical speed component accelerates downward doe to gravity. Easiest would be to implement it using complex numbers where x=RE and y=IM. and use an xy graph.
Start reading here and see how far you get.