voko
- 6,053
- 391
Height in your case is y, not x. Good otherwise.
StudentTM said:Somebody suggested to me that
a_x = ( 30 (centripetal acceleration) * v * v_x1 ) / 60*60
a_y = (( 30 (centripetal acceleration) * v * v_y1 ) / 60*60 ) - 9,8
would be correct.
a_x = -39.8 * V_t * Vy_1 / (60 * 60);
a_y = 39.8 * V_t * Vx_1 / (60 * 60) - 9.8;
is wrong.
Sorry guys, for dummy question, I really respect your patience with me, but .. How can I learn to understand these final equation? Where to start?
But how do I know V_x is constant?
voko said:It is not constant. But when you integrate differential equations using Euler's method, you assume that during the very small time interval of each integration step, all your variables do not change appreciably. This is the source of the error intrinsic to the method. You should have been paying attention to your professor, this has certainly been explained in the class.