R/C Plane Simulation Software - Tips & Advice Wanted

  • Thread starter Thread starter SwedishWings
  • Start date Start date
  • Tags Tags
    Plane Simulation
AI Thread Summary
Mike is exploring the development of a simple R/C flight simulator but finds the complexity of aerodynamics daunting. He seeks advice on simplified simulation models and mentions limited resources available on the topic. A contributor suggests that Mike start by studying aircraft stability and control, as well as looking into lecture materials for foundational knowledge. Another user emphasizes the importance of using actual aerodynamic data from wind tunnel tests rather than relying solely on simplified equations. The discussion highlights the need for a comprehensive understanding of forces, moments, and engine models for effective simulation development.
SwedishWings
Messages
13
Reaction score
0
I hope i posted on the right forum...

I've been considering writing a simple(?) R/C flight simulator for quite some time. After reading about aerodynamics i concluded that a simulation software are bound to make great simplifications, and may only model a subset of the actual physics involved. However, there seem to be very little written on the subject, when it comes to good simplified simulation software for planes.

Any pointers would be most welcome. Perhaps there are some GPL projects that has related simulation models?

Thanks in advance,
Mike
 
Physics news on Phys.org
SwedishWings said:
I hope i posted on the right forum...

I've been considering writing a simple(?) R/C flight simulator for quite some time. After reading about aerodynamics i concluded that a simulation software are bound to make great simplifications, and may only model a subset of the actual physics involved. However, there seem to be very little written on the subject, when it comes to good simplified simulation software for planes.

Any pointers would be most welcome. Perhaps there are some GPL projects that has related simulation models?

Thanks in advance,
Mike

I do flight simulation. I've made one for a Cessna 172 and a VTOL aircraft. What is your background in flight dynamics? I would start by reading some aircraft stability and controls books to understand what you need to do.
 
Cyrus said:
I do flight simulation. I've made one for a Cessna 172 and a VTOL aircraft. What is your background in flight dynamics? I would start by reading some aircraft stability and controls books to understand what you need to do.

Thanks for your reply Cyrus!

I'm a total rookie on flight dynamics. I have better understanding of general physics, as I've spent a few years working with AI based games and 3D rendering engines. Honestly, after spending about 30 hours on the net reading about aerodynamics, i felt discouraged by the complexity - it appears mankind still don't know exactly why we can fly =)

Indeed, reading a few books on the subject would be a good thing. However, i was hoping to find some shortcuts in terms of simplified, easy to understand, simulation models that would be a good starting point. Perhaps in the long run, simulation could be refined with experience and knowledge.

I found the http://www.rowlhouse.co.uk/sss/index.html" that has some pointers. Unfortunately, very little documentation exists on the actual flight simulation and the theory behind it.

Any help is most welcome!

Thanks,
Mike
 
Last edited by a moderator:
SwedishWings said:
Thanks for your reply Cyrus!

I'm a total rookie on flight dynamics. I have better understanding of general physics, as I've spent a few years working with AI based games and 3D rendering engines. Honestly, after spending about 30 hours on the net reading about aerodynamics, i felt discouraged by the complexity - it appears mankind still don't know exactly why we can fly =)

Indeed, reading a few books on the subject would be a good thing. However, i was hoping to find some shortcuts in terms of simplified, easy to understand, simulation models that would be a good starting point. Perhaps in the long run, simulation could be refined with experience and knowledge.

I found the http://www.rowlhouse.co.uk/sss/index.html" that has some pointers. Unfortunately, very little documentation exists on the actual flight simulation and the theory behind it.

Any help is most welcome!

Thanks,
Mike

Start doing some background by looking through the lecture slides on this website

http://www.princeton.edu/~stengel/MAE331.html

As a first cut, you may want to consider a very simple linearized simulation.
 
Last edited by a moderator:
Cyrus said:
Start doing some background by looking through the lecture slides on this website

http://www.princeton.edu/~stengel/MAE331.html

As a first cut, you may want to consider a very simple linearized simulation.

Thanks a lot!

I have started reading and find it quite easy to follow, though some explanations would help.

I stumbled on some very simple equations on this http://www.grc.nasa.gov/WWW/K-12/airplane/short.html" :

Thrust = m(dot) V
Lift = k V^2 A cl
Drag = k V^2 A cd

where k is Smeaton's coefficient (.00327), cl is the lift coefficient and cd is the drag coefficient.

Are this equations (and some basic Newton stuff) to far simplified for being useful in a first attempt?

/Mike
 
Last edited by a moderator:
SwedishWings said:
Thanks a lot!

I have started reading and find it quite easy to follow, though some explanations would help.

I stumbled on some very simple equations on this http://www.grc.nasa.gov/WWW/K-12/airplane/short.html" :

Thrust = m(dot) V
Lift = k V^2 A cl
Drag = k V^2 A cd

where k is Smeaton's coefficient (.00327), cl is the lift coefficient and cd is the drag coefficient.

Are this equations (and some basic Newton stuff) to far simplified for being useful in a first attempt?

/Mike

What you need are databases of forces (lift, drag, sideforce) and moment (roll,pitch,yaw) aerodynamic data sets (for a given aircraft) if you want a simulation. Note, not values calculated from an equation, actual wind tunnel or flight test data. These need to be a function of angle of attack, airspeed, and body rotation rotes (p,q,r). The simulation will look through the table of values at each time step. This is your aerodynamics model. You will also need a model for the engine, the mass/inertia properties, and the atmosphere.
 
Last edited by a moderator:
Due to the constant never ending supply of "cool stuff" happening in Aerospace these days I'm creating this thread to consolidate posts every time something new comes along. Please feel free to add random information if its relevant. So to start things off here is the SpaceX Dragon launch coming up shortly, I'll be following up afterwards to see how it all goes. :smile: https://blogs.nasa.gov/spacex/
Back
Top