What kind of integration is this?

  • Thread starter Thread starter Ballistic
  • Start date Start date
  • Tags Tags
    Integration
AI Thread Summary
The discussion centers on identifying the integration methods used in a given script for calculating velocity and distance. The script employs two different methods: an Euler-like method for velocity and a trapezoidal method for distance. Participants clarify that the integration methods are not Runge-Kutta, specifically the common RK4 version. The conversation also references external resources for further understanding of numerical methods. Ultimately, the user expresses gratitude for the clarification on the integration techniques.
Ballistic
Messages
15
Reaction score
0

Homework Statement



I'm given with the following script:

Code:
for ii = 2:length(x_time)
    V(ii)                   = V(ii-1) - (forces_x(ii-1)./w) * g .* dt;                                        
    D(ii)                   = 0.5 .* rho .* V(ii).^2 * s * Cd;                    
    R(ii)                   = (not relevant);
    F(ii)                   = 2 .* Cf(ii) .* R(ii);                              
    forces_x(ii)         = (F(ii) + D(ii)) - T(ii);                 
    distance(ii)         = distance(ii-1) + .5 .* (V(ii) + V(ii-1)) .* dt;           
    deceleration(ii)   = (V(ii) - V(ii-1))./dt;                               
end

Homework Equations



Above I've reported only the relevant equations.

The Attempt at a Solution



I'm asked to state what kind of integration is this.

I don't know really how to answer, I was thinking about Euler-method, but right now I am a bit confused.Thank you for your help!
 
Physics news on Phys.org
Two methods are being used, one method for velocity, and another method for distance. Perhaps that is why you're not sure?
 
Last edited by a moderator:
Can you please tell me which is the method for the velocity and which one is for the distance?

Thanks for the help!
 
Last edited by a moderator:
Ballistic said:
Can you please tell me which is the method for the velocity and which one is for the distance?
Note the key equations being used for velocity and distance are essentially these equations:

v = v[i-1] + a Δt

d = d[i-1] + 1/2 (v + v[i-1]) Δt
 
Last edited by a moderator:
Exactly! Thanks again!

But what's the name (e.g. Runge-Kutta, Euler, ecc.) of this integration methods, if they have any?
 
Last edited by a moderator:
Last edited by a moderator:
Yessir, I think I was mislead from the homework request.

Thank you for your very accurate answers!
 
Last edited by a moderator:

Similar threads

Replies
3
Views
2K
Replies
1
Views
3K
Replies
4
Views
2K
Replies
3
Views
3K
Replies
33
Views
11K
Replies
3
Views
2K
Replies
2
Views
2K
Back
Top