C++ Free Fall Velocity Homework

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
9 replies · 3K views
RJLiberator
Gold Member
Messages
1,094
Reaction score
63

Homework Statement


I'm using ROOT (c++) to graph a numerical representation of the equation of motion.
For simplicity, I am using initial velocity = 10 and initial height = 10.
change in time = 0.05
so we find velocity by V_n = V_(n-1) -9.81*0.05

For some reason, this code is not giving me a correct reading.

I graph this against the computational method, and the computational method works perfectly.

Homework Equations

The Attempt at a Solution



Code:
  float x[100], y[100];
  int n = 100;
  float timestep = 9.81*0.05;
  float v = 10;
  for (int i=0;i<n;i++) {
  x[i] = i*timestep;
  y[i] = v-timestep;
  v = v-timestep;
  }
TGraph *gr = new TGraph(n,x,y);
  gr->SetMarkerColor(kBlue);
  gr->SetMarkerStyle(29);
  gr->Draw();
 
Physics news on Phys.org
So what you are saying is that I am only observing the v_y(t) element? As my code should represent that part of it.

The x-axis should be time in seconds.

This is an example graph I did earlier based on my computational graph (which works out perfectly).

one.JPG
 
RJLiberator said:

Homework Statement


I'm using ROOT (c++) to graph a numerical representation of the equation of motion.
For simplicity, I am using initial velocity = 10 and initial height = 10.
change in time = 0.05
so we find velocity by V_n = V_(n-1) -9.81*0.05
Since the object is in freefall (which your title indicates), why is the velocity decreasing?
RJLiberator said:
For some reason, this code is not giving me a correct reading.

I graph this against the computational method, and the computational method works perfectly.

Homework Equations

The Attempt at a Solution



Code:
  float x[100], y[100];
  int n = 100;
  float timestep = 9.81*0.05;
  float v = 10;
  for (int i=0;i<n;i++)
  {
     x[i] = i*timestep;
     y[i] = v-timestep;
     v = v-timestep;
  }
  TGraph *gr = new TGraph(n,x,y);
  gr->SetMarkerColor(kBlue);
  gr->SetMarkerStyle(29);
  gr->Draw();

Use
C:
 at the top of your code. This highlights C/C++ reserved words.
Also, indenting loops and other control structures (such as if and switch) makes your code much easier to read.
I would do it like this:
[code=c]
float x[100], y[100];
  int n = 100;
  float timestep = 9.81*0.05;
  float v = 10;
  for (int i=0;i<n;i++) {
  x[i] = i*timestep;
  y[i] = v-timestep;
  v = v-timestep;
  }
TGraph *gr = new TGraph(n,x,y);
  gr->SetMarkerColor(kBlue);
  gr->SetMarkerStyle(29);
  gr->Draw();
One other thing -- declaring timestep like this is not a good idea:
float timestep = 9.81*0.05;
Keep the 9.81 constant out -- just make the time steps actual time intervals, and use the constant when you calculate the values in your x and v arrays. And for vertical distances, I would definitely use y, not x. That confused me for a bit.
 
  • Like
Likes   Reactions: RJLiberator
You've incorporated the acceleration into your timestep variable, no doubt as a nod to efficiency so as not to perform the multiplication g*Δt on each iteration. But you've used timestep to keep track of the time, too.
 
  • Like
Likes   Reactions: RJLiberator
Excellent guys!

That does seem to be the issue! Time for me to get back to work on this, I'll report back if that was the problem!

@Mark44 thank you for the remarks there. I will apply them to my code once I have a working product as right now, things are a bit of a mess :). Coding the night away.
 
Looking good guys! That was the problem!

Still lots of touching up to do, but it is pretty awesome that I got the numerical and computational approaches working here.

Since the object is in freefall (which your title indicates), why is the velocity decreasing?

Good point, thank you for this observation.

Capture.JPG


Looking pretty solid.
 
Mark44 said:
Since the object is in freefall (which your title indicates), why is the velocity decreasing?
If the chosen axes have "up" as positive then I don't see a problem with an initial positive upward velocity decreasing and then going negative. The old, "rock is tossed vertically upwards at the edge of a tall cliff" scenario comes to mind.
 
  • Like
Likes   Reactions: RJLiberator
gneill said:
If the chosen axes have "up" as positive then I don't see a problem with an initial positive upward velocity decreasing and then going negative. The old, "rock is tossed vertically upwards at the edge of a tall cliff" scenario comes to mind.
I agree, but we shouldn't have to guess at what the problem is about.
 
  • Like
Likes   Reactions: RJLiberator