Torque Calculation for Motor Simulations

AI Thread Summary
A programmer is developing an application for torque calculations in motor simulations, utilizing a torque data file that outlines torque values for each degree of wheel rotation. The goal is to create a real-time animation of the wheel's movement based on user-input parameters such as mass, friction, and initial conditions. Key calculations involve determining the net torque and using the equation Tau = I * Alpha, where I is the moment of inertia. Users are advised to solve the resulting differential equation numerically to simulate the wheel's behavior over time. The programmer appreciates the guidance received and plans to implement the suggestions.
Jdo300
Messages
548
Reaction score
5
Hello Everyone,

I am a programmer and I am working on an application that can do torque calculations for some motor simulation models that I am working on. What I have is a torque data file wilh data representing the amount of torque on a wheel at a given degree of it's rotation (so if I had 360 lines of torque data, then there would be a number representing the amount of torque for each degree of rotation as the wheel spins 360 degrees around). What I would like to do is to create an application that will create a realtime animation showing how the wheel would move and behave with the given torques on the wheel using the data that I have. The user will have to input any necessary paramiters like the mass of the wheel, friction on the bearings, initial starting position, and any initial force that is applied. Could someone give me an idea of where to start calculation wise to do this? I basically want the program to make the wheel accelerate and declerate based on the torque information and paramiters that I input into the program. Any help/assistance will be greatly appreciated.

Thanks,
Jason O
 
Physics news on Phys.org
I would start with Tau = I * Alpha ( Moment of inertia * Acceleration ), but before doing that you will need to get the net torque due to external forces and subtract/add it from/to this torque and then use basic equations of motion once you have the Alpha value. Hope this helps.
 
So, you have a data file listing various values of \tau (\theta)

The user submits numbers for bearing friction, mass and initial position, \tau_{fr}, ~m, ~\theta _0

From the mass and the wheel geometry, you calculate the moment of inertia of the wheel, I. Then you use the equation that Gopi suggested. This gives you
\tau (\theta) - \tau _{fr} = I \frac {d^2 \theta}{dt^2}

Solve this differential equation numerically, and use the initial condition \theta (t=0) = \theta _0~~to~get~~\theta (t)
 
Thank you both for the help! I'm going to have to sit down with this one to do it so I'll report back to you two soon if I have any problems. Thanks for the equations and explanation!

- Jason O
 
Hi there, im studying nanoscience at the university in Basel. Today I looked at the topic of intertial and non-inertial reference frames and the existence of fictitious forces. I understand that you call forces real in physics if they appear in interplay. Meaning that a force is real when there is the "actio" partner to the "reactio" partner. If this condition is not satisfied the force is not real. I also understand that if you specifically look at non-inertial reference frames you can...
I have recently been really interested in the derivation of Hamiltons Principle. On my research I found that with the term ##m \cdot \frac{d}{dt} (\frac{dr}{dt} \cdot \delta r) = 0## (1) one may derivate ##\delta \int (T - V) dt = 0## (2). The derivation itself I understood quiet good, but what I don't understand is where the equation (1) came from, because in my research it was just given and not derived from anywhere. Does anybody know where (1) comes from or why from it the...
Back
Top