Work Done By A Nonconstant Force: Difference between revisions

From Physics Book
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 5: Line 5:
==The Main Idea==
==The Main Idea==


When calculating the force, if the magnitude of the force or direction of the force changes, it is not possible to calculate the work done by multiplying force by the displacement. Instead the non constant force is split into a path with small increments.  
Basic calculations of work can be solved with a simple formula: force times displacement. However, this formula only works when work is constant. Calculus is essential for the calculation of work in many cases because force is not always a constant. In cases such as springs and gravity, for example, the force applied varies depending on location. By integrating, or finding the area under the curve of force by displacement, we can calculate work without having to use inaccurate approximations.
 


===A Mathematical Model===
===A Mathematical Model===
Line 16: Line 15:
===A Computational Model===
===A Computational Model===


[[File:Screen Shot 2015-12-05 at 5.23.32 PM.png]]
<https://trinket.io/glowscript/49f7c0f35f>
 
This model shows both the total work and the work done by a spring on a ball attached to a vertical spring. The work done by the spring oscillates because the work is negative when the ball is moving away from the resting state and is positive when the ball moves towards it.
 
Because gravity causes the ball’s minimum position to be further from the spring’s resting length than its maximum position could be, the work is more negative when the ball approaches its minimum height.
 
The code works by using small time steps of 0.01 seconds and finding the work done in each time step. Work is the summation of all of the work done in each time step, so another step makes sure the value for work is cumulative.


This python code creates a ball with a force acting on it that changes with respect to time and it prints the total work at the end of the the loop that lasts while t is less than 10.
This uses the concept that work is equal to the summation of the force multiplied by the change in distance over that interval, which is an estimate for the integral of the force function over this distance.


==Examples==
==Examples==
Line 51: Line 54:
<math> W= 62.5 J </math>
<math> W= 62.5 J </math>


==Connectedness==
===Example 3===
How is this topic connected to something that you are interested in?
The earth does work on an asteroid approaching from an initial distance r. How much work is done on the asteroid by gravity before it hits the earth’s surface?
 
First, we must recall the formula for gravitational force.
 
Because G, M, and m are constants, we can remove them from the integral. We also know that the integral of 1/r2 is -1/r. We then must calculate the integral of –GMm/r from the initial radius of the asteroid, rasteroid, to the radius of the earth, rearth.
 
Although the integral is negative, because the final radius is less than the initial radius, our answer will be positive. This is because the force done by the earth on the asteroid and the direction of motion of the asteroid are the same.


Even though I'm an ECE major, I have an interest in aviation, and the force of a jet engine is not always a constant force, so you would need to use this method to calculate the work done instead of the simple method.


How is it connected to your major?
==Connectedness==
I am most interested in the types of physics problems that accurately model real world situations. Some forces, like gravity near the surface of the earth and some machine-applied forces, are constant. However, most forces in the real world are not.


As an ECE major, this could be connected by my major when working with an electric motor and calculating the amount of power needed to power the motor.
Because of this, calculating work for non-constant forces is essential to mechanical engineering. For example, when calculating work done by an engine over a distance, the force applied by the engine can vary depending on factors such as user controls.


Is there an interesting industrial application?
On an industrial level, the work needed to fill and empty tanks depends on the weight of the liquid, which varies as the tanks fill and empty. Energy conversion in hydroelectric dams depends on the work done by water against turbines, which depends on the flow of water. Windmills work in the same way.


Since many forces in the real world are not constant, this method of calculating work is needed for most situations.


==History==
==History==


The concept of work was introduced by a French mathematician named Gaspard-Gustave Coriolis in 1826. The concept was established as a "weight lifted through a height".
Gaspard-Gustave de Coriolis, famous for discoveries such as the Coriolis effect, is credited with naming the term “work” to define force applied over a distance. Later physicists combined this concept with Newtonian calculus to find work for non-constant forces.


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

Revision as of 12:42, 15 April 2016

Claimed by Chris Mickas

This page will help students understand how to calculate the work done by a non constant force.

The Main Idea

Basic calculations of work can be solved with a simple formula: force times displacement. However, this formula only works when work is constant. Calculus is essential for the calculation of work in many cases because force is not always a constant. In cases such as springs and gravity, for example, the force applied varies depending on location. By integrating, or finding the area under the curve of force by displacement, we can calculate work without having to use inaccurate approximations.

A Mathematical Model

[math]\displaystyle{ W=\int\limits_{i}^{f}\overrightarrow{F}\bullet\overrightarrow{dr} = \sum\overrightarrow{F}\bullet\Delta\overrightarrow{r} }[/math]

This means that the work is equal to the integral of the function of the force with respect to the change in the objects position. This is also the same as the summation of the force on an object multiplied by the change in position.

A Computational Model

<https://trinket.io/glowscript/49f7c0f35f>

This model shows both the total work and the work done by a spring on a ball attached to a vertical spring. The work done by the spring oscillates because the work is negative when the ball is moving away from the resting state and is positive when the ball moves towards it.

Because gravity causes the ball’s minimum position to be further from the spring’s resting length than its maximum position could be, the work is more negative when the ball approaches its minimum height.

The code works by using small time steps of 0.01 seconds and finding the work done in each time step. Work is the summation of all of the work done in each time step, so another step makes sure the value for work is cumulative.


Examples

Example 1

A box is pushed to the East, 5 meters by a force of 40 N, then it is pushed to the north 7 meters by a force of 60 N. Calculate the work done on the box.

[math]\displaystyle{ W = \sum\overrightarrow{F}\bullet\Delta\overrightarrow{r} }[/math]

[math]\displaystyle{ W = 40N \bullet\ 5m + 60N \bullet\ 7m }[/math]

[math]\displaystyle{ W = 40N \bullet\ 5m + 60N \bullet\ 7m }[/math]

[math]\displaystyle{ W = 620 J }[/math]

Example 2

As a ball is attached to a spring and moves to the right. The ball moves 5 meters to the right and the spring constant of the spring is 5 N/m. How much work is done by the spring?

[math]\displaystyle{ W=\int\limits_{i}^{f}\overrightarrow{F}\bullet\overrightarrow{dr} }[/math]

[math]\displaystyle{ F = -k \bullet\ r }[/math]

[math]\displaystyle{ W=\int\limits_{0}^{5m} -k \bullet\ dr }[/math]

[math]\displaystyle{ W=\int\limits_{0}^{5m} -5 \bullet\ dr }[/math]

[math]\displaystyle{ W=\int\limits_{0}^{5m} -5 \bullet\ dr }[/math]

[math]\displaystyle{ W=-5 ((5m^2)/2 - 0) }[/math]

[math]\displaystyle{ W= 62.5 J }[/math]

Example 3

The earth does work on an asteroid approaching from an initial distance r. How much work is done on the asteroid by gravity before it hits the earth’s surface?

First, we must recall the formula for gravitational force.

Because G, M, and m are constants, we can remove them from the integral. We also know that the integral of 1/r2 is -1/r. We then must calculate the integral of –GMm/r from the initial radius of the asteroid, rasteroid, to the radius of the earth, rearth.

Although the integral is negative, because the final radius is less than the initial radius, our answer will be positive. This is because the force done by the earth on the asteroid and the direction of motion of the asteroid are the same.


Connectedness

I am most interested in the types of physics problems that accurately model real world situations. Some forces, like gravity near the surface of the earth and some machine-applied forces, are constant. However, most forces in the real world are not.

Because of this, calculating work for non-constant forces is essential to mechanical engineering. For example, when calculating work done by an engine over a distance, the force applied by the engine can vary depending on factors such as user controls.

On an industrial level, the work needed to fill and empty tanks depends on the weight of the liquid, which varies as the tanks fill and empty. Energy conversion in hydroelectric dams depends on the work done by water against turbines, which depends on the flow of water. Windmills work in the same way.


History

Gaspard-Gustave de Coriolis, famous for discoveries such as the Coriolis effect, is credited with naming the term “work” to define force applied over a distance. Later physicists combined this concept with Newtonian calculus to find work for non-constant forces.

See also

Work

References

[1] [2] [3]

Created by Justin Vuong