Net Force: Difference between revisions

From Physics Book
Jump to navigation Jump to search
Line 31: Line 31:


=Simple Example=
=Simple Example=
[[File:pathindependence.png]]
When calculating net force, it is most useful to construct a free body diagram. A free body diagram is a physical representation of the external forces applied to a system. Often, arrows are used to represent forces. In this example, forces are displayed acting on a box.  


In this example, the electric field is equal to <math> E = \left(E_x, 0, 0\right)</math>. The initial location is A and the final location is C. In order to find the potential difference between A and C, we use <math>dV = V_C - V_A </math>.  
[[File:forcediagram.gif]]


Since there are no y and z components of the electric field, the potential difference is <math> dV = -\left(E_x*\left(x_1 - 0\right) + 0*\left(-y_1 - 0\right) + 0*0\right)  = -E_x*x_1</math>
The first two boxes' net force can be easily calculated by adding the two forces acting on them, respectively. With down being in the negative y direction, for the first box we have:<br>


[[File:BC.png]]
<math> Fnet = (0, 1200, 0) N + (0, -800, 0) N </math><br>
<math> Fnet = (0, 400, 0) N </math><br>


Let's say there is a location B at <math> \left(x_1, 0, 0\right) </math>. Now in order to find the potential difference between A and C, we need to find the potential difference between A and B and then between B and C.
And the second box:<br>


The potential difference between A and B is <math>dV = V_B - V_A = -\left(E_x*\left(x_1 - 0\right) + 0*0 + 0*0\right) = -E_x*x_1</math>.
<math> Fnet = (0, 600, 0) N + (0, -800, 0) N </math><br>
<math> Fnet = (0, -200, 0) N </math><br>


The potential difference between B and C is <math>dV = V_C - V_B = -\left(E_x*0 + 0*\left(-y_1 - 0\right) + 0*0\right) = 0</math>.
The third box has both x-component forces and y-component forces. It is important to separate these in solving for the net force. <br>
 
y-components:<br>
Therefore, the potential difference A and C is <math>V_C - V_A = \left(V_C - V_B\right) + \left(V_B - V_A\right) = E_x*x_1 </math>, which is the same answer that we got when we did not use location B.
<math> Fnet,y = (0, 50, 0) N + (0, -50, 0) N </math><br>
<math> Fnet,y = (0, 0, 0) N </math><br>
x-components:<br>
<math> Fnet,x = (-20, 0, 0) N + (0, 0, 0) N </math><br>
Put them together:<br>
<math> Fnet = (-20, 0, 0) N </math><br>


==Connectedness==
==Connectedness==
Line 54: Line 61:
==History==
==History==


Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.
Initially it was believed that force was required to maintain a constant velocity, but this was later cleared up by Sir Isaac Newton's laws of motion and Einstein's theory of relativity in the early 20th century.  


== See also ==
== See also ==


Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?
http://www.physicsbook.gatech.edu/Momentum_Principle
http://www.physicsbook.gatech.edu/Conservation_of_Momentum
http://www.physicsbook.gatech.edu/Newton's_Laws_and_Linear_Momentum


===Further reading===
===Further reading===
Line 70: Line 79:
==References==
==References==


This section contains the the references you used while writing this page
http://study.com/academy/lesson/what-is-net-force-definition-magnitude-equations.html
https://en.wikipedia.org/wiki/Net_force
 


[[Category:Which Category did you place this in?]]
[[Category:Which Category did you place this in?]]

Revision as of 17:06, 3 December 2015

by Julia Logan

Definition

A Mathematical Model

In order to calculate net force, all EXTERNAL forces acting on a system are added together. The mathematical definition is [math]\displaystyle{ Fnet = F1 + F2 + F3... }[/math]

Additionally, [math]\displaystyle{ Fnet = ma }[/math] where m=mass of the object, and a = acceleration of the object. This is a result of Newton's Second Law of motion. If there is a nonzero net force acting on an object, that object is accelerating (not traveling at a constant velocity). Interestingly, there is zero net force acting on an object if its velocity is constant. This seems counter-intuitive (surely something is causing the object to move!) but makes sense in the context of Newton's Second Law. The forces are balanced (sum to zero) if there is no acceleration, despite any movement that may be happening.

A Computational Model

Net force is an essential component of the Momentum Principle! We can use the Momentum Principle in vpython to update the position of a moving object. But first, we have to find net force.

  #1 Fspring = -k*s
  #2 Fgravmag = mball * g
  #3 Fgrav = Fgravmag * vector(0,-1,0)
  #4 Fnet = Fspring+Fgrav
  #5 pball = pball + Fnet * deltat
  #6 vball = pball / mball
  #7 ball.pos=ball.pos+vball*deltat

Here, the spring force and the gravitational force are found using formulas (lines 1-3). Then, they are added together to get the net force on the object (in this case a ball, line 4). The net force is then used in the update form of the momentum principle (line 5). In line 6 the velocity is updated, and line 7 the position is updated. Without net force calculations, tracing an object's path would be impossible.

Tracing the path of a ball/spring model in vpython using net force and the momentum principle.

<> <> <>

Simple Example

When calculating net force, it is most useful to construct a free body diagram. A free body diagram is a physical representation of the external forces applied to a system. Often, arrows are used to represent forces. In this example, forces are displayed acting on a box.

The first two boxes' net force can be easily calculated by adding the two forces acting on them, respectively. With down being in the negative y direction, for the first box we have:

[math]\displaystyle{ Fnet = (0, 1200, 0) N + (0, -800, 0) N }[/math]
[math]\displaystyle{ Fnet = (0, 400, 0) N }[/math]

And the second box:

[math]\displaystyle{ Fnet = (0, 600, 0) N + (0, -800, 0) N }[/math]
[math]\displaystyle{ Fnet = (0, -200, 0) N }[/math]

The third box has both x-component forces and y-component forces. It is important to separate these in solving for the net force.
y-components:
[math]\displaystyle{ Fnet,y = (0, 50, 0) N + (0, -50, 0) N }[/math]
[math]\displaystyle{ Fnet,y = (0, 0, 0) N }[/math]
x-components:
[math]\displaystyle{ Fnet,x = (-20, 0, 0) N + (0, 0, 0) N }[/math]
Put them together:
[math]\displaystyle{ Fnet = (-20, 0, 0) N }[/math]

Connectedness

  1. How is this topic connected to something that you are interested in?
  2. How is it connected to your major?
  3. Is there an interesting industrial application?

History

Initially it was believed that force was required to maintain a constant velocity, but this was later cleared up by Sir Isaac Newton's laws of motion and Einstein's theory of relativity in the early 20th century.

See also

http://www.physicsbook.gatech.edu/Momentum_Principle http://www.physicsbook.gatech.edu/Conservation_of_Momentum http://www.physicsbook.gatech.edu/Newton's_Laws_and_Linear_Momentum

Further reading

Books, Articles or other print media on this topic

External links

Internet resources on this topic

References

http://study.com/academy/lesson/what-is-net-force-definition-magnitude-equations.html https://en.wikipedia.org/wiki/Net_force