Friction

From Physics Book
Revision as of 23:54, 23 November 2018 by IceF1ame (talk | contribs)
Jump to navigation Jump to search

Claimed by Blake Castleman 11/23/2018 (Work in Progress)

This page discusses the concept of friction and how it relates to both moving and static objects.


The Main Idea

Friction is caused by the interactions between the atoms that make up objects. When objects interact, the atoms that make up the objects also interact. Temperatures of interacting surfaces rise because of such interactions. Friction is a force that resists movement. Generally, friction makes it harder to move objects. There are two main types of friction that are covered in Physics 2211: Static Friction and Kinetic Friction. Static friction can be described as the friction acting on resting objects. Kinetic friction is the friction acting on objects in motion.

Frictional forces depend on a few factors: the normal force and the coefficient of friction.

In simple terms, the normal force [math]\displaystyle{ {F}_{N} }[/math] or [math]\displaystyle{ {N} }[/math] is the equivalent force between objects. For example, when an object of mass M is placed on a table, there is a gravitational force Mg on the table. If the table can support the object without collapsing, the table exerts an equivalent force Mg on the object. According to the momentum principle, since there is no change in momentum, the net force must be 0. This is also apparent since there is no movement if the table can support the object.

[math]\displaystyle{ {p}_{f} - {p}_{i} = {F}_{net}{dt} = 0 }[/math]


OR

[math]\displaystyle{ {F}_{g} = {M}{g} }[/math]
[math]\displaystyle{ {N} = {M}{g} }[/math]
[math]\displaystyle{ {F}_{net} = {F}_{g} - {N} = {0} }[/math]

The coefficient of friction is usually specific to each object or material. The coefficient of static friction is denoted by [math]\displaystyle{ {μ}_{s} }[/math] and the coefficient of kinetic friction is denoted by [math]\displaystyle{ {μ}_{k} }[/math]


Static Friction:

[math]\displaystyle{ {F}_{s} \le {μ}_{s}{N} }[/math]

Static friction is the frictional force that must be overcome to begin moving an object at rest. The static friction can be no more than the normal force multiplied by the coefficient of static friction. Therefore, the maximum static friction an object can have is [math]\displaystyle{ {μ}_{s}{N} }[/math].

Kinetic Friction:


[math]\displaystyle{ {F}_{k} = {μ}_{k}{N} }[/math]

Kinetic friction is the frictional force that exists between objects already at motion. It acts to oppose the movement of an object. Kinetic friction can be observed, for example, when a soccer ball is kicked across a field. The friction between the ball and the field will eventually bring the ball to a stop.

Interestingly, friction is also required for rolling motion. Without friction, objects would not be able to roll. This is true because friction results in torque acting on the object, causing the rolling motion. An example of this can be seen in cars that are stuck in a ditch or similar situations. If there is not enough friction between the car's wheels and the ground, the car's wheels will simply spin in place, and the car will not move.

A Mathematical Model

As stated above:

Static Friction:

[math]\displaystyle{ {F}_{s} \le {μ}_{s}{N} }[/math]

Kinetic Friction:

[math]\displaystyle{ {F}_{k} = {μ}_{k}{N} }[/math]

When attempting to solve problems relating to friction, one possible method of approach is to consider the net force acting on an object. If there is a force [math]\displaystyle{ {F} }[/math] pushing an object to the right, and a frictional force [math]\displaystyle{ {F}_{f} }[/math] opposing the movement, then the net force is [math]\displaystyle{ {F}_{net} = {F} - {F}_{f} }[/math].

Another possible approach is by using the momentum principle [math]\displaystyle{ {p}_{f} - {p}_{i} = {F}_{net}{dt} }[/math]. The momentum principle can help solve problems where you need to account for time, net force, or change in momentum.

A Computational Model

Link: https://trinket.io/glowscript/76028c1809


Code:

def friction():
   from __future__ import division
   from visual import *
   from visual.graph import *
   mcart = 100
   mew = vector(2.9,0,0)
   track =  box(pos=vector(0,-0.05,0), size=vector(20.0,0.05,0.10), color=color.white)
   cart =  box(pos=vector(-10,0.25,0), size=vector(.5,0.6,0.03), color=color.blue)
   marker = box(pos = vector(2,0,0), size = vector(0,20,5), color = color.red)
   cart.v=vector(2.4,0,0)
   cart.p = mcart*cart.v
   F = vector(90,0,0)
   F2 = vector(-200,0,0)
   F3 = (mcart * mew)
   print(F3)
   deltat = 0.01
   t = 0
   while t < 5.02:
       if cart.pos.x < 2:
           cart.v = cart.p / cart.m
           Fnet = F
           cart.p = cart.p + Fnet*deltat
           cart.pos = cart.pos + (cart.p/mcart)*deltat
       else:
           
           cart.v = cart.p / cart.m
           Fnet = F-F3
           cart.p = cart.p + Fnet*deltat
           cart.pos = cart.pos + (cart.p/mcart)*deltat
           
       t = t + deltat
       rate(100)
       
   print(cart.pos)
   
friction()

Conceptual Derivation

It's important to understand why friction exists. Imagine a brick laying at rest on a table as seen below:

Examples

Be sure to show all steps in your solution and include diagrams whenever possible

Simple

A 100Kg box is placed on a flat table. The box does not move. The coefficient of static friction [math]\displaystyle{ {&mu;}_{s} = {.25} }[/math] and the coefficient of kinetic friction [math]\displaystyle{ {&mu;}_{k} = {.15} }[/math]. Find the force of friction [math]\displaystyle{ {F}_{s} }[/math].



Solution:

Since the box does not move, there is only static friction. The normal force is equivalent to the force due to gravity: [math]\displaystyle{ {F}_{N} = {F}_{g} = {100}{g} }[/math]. The static friction can be found by: [math]\displaystyle{ {F}_{s} = {&mu;}_{s}{F}_{N} }[/math]

[math]\displaystyle{ {F}_{s} = {.25}*{100}*{9.8} = {245.25} }[/math]

Middling

A cart of mass 3Kg moves across a track pushed by a fan which exerts [math]\displaystyle{ {F} = \lt 3,0,1\gt }[/math]N with an initial velocity [math]\displaystyle{ {v}_{i} = \lt 1,0,1\gt \frac{{m}}{{s}} }[/math] . Find the required coefficient of kinetic friction [math]\displaystyle{ {&mu;}_{k} }[/math] needed to bring the cart to a stop in 10 seconds.


Solution:

Use the momentum principle: [math]\displaystyle{ {p}_{f} - {p}_{i} = {F}_{net}{dt} }[/math] and [math]\displaystyle{ {F}_{f} = {&mu;}_{k}{N} }[/math]

The final velocity must be 0. The initial velocity, initial force, and time are given.

[math]\displaystyle{ 0- \lt 3,0,3\gt = {F}_{net}*{10s} }[/math]

[math]\displaystyle{ {F}_{net} = \lt -0.3,0,-0.3\gt }[/math]

[math]\displaystyle{ {F}_{net} = {F} - {F}_{f} }[/math]

[math]\displaystyle{ \lt -0.3,0,-0.3\gt = \lt 3,0,1\gt - {F}_{f} }[/math]

[math]\displaystyle{ {F}_{f} = \lt 3.3,0,1.3\gt }[/math]

[math]\displaystyle{ {F}_{f} = \lt 3.3,0,1.3\gt = {&mu;}_{k}{N} }[/math]

[math]\displaystyle{ {N} = {3Kg} * {\lt 0,9.8,0\gt } = \lt 0,29.43,0\gt }[/math]

[math]\displaystyle{ {&mu;}_{k} = \frac{{F}_{f}}{{N}} = \frac{{\lt 3.3,0,1.3\gt }}{{0,29.43,0}} }[/math]

Difficult

Two blocks are stacked on top of one another on a frictionless surface. Block A is stacked on top of Block B. Block A has a mass of 2 Kg while Block B has a mass of 4 Kg. The coefficient of friction between the blocks is [math]\displaystyle{ {&mu;}_{s} = .35 }[/math]. Find the maximum amount of force that can be applied to Block A so that the blocks stay together.


Solution:

Momentum Principle:

[math]\displaystyle{ {p}_{f} - {p}_{i} = {F}_{net}{dt} }[/math]

We need to find the force of friction at its maximum to find the maximum amount of force that can be exerted on Block A. [math]\displaystyle{ {F}_{f} = {&mu;}_{s}{N} }[/math]

Forces on Block A:

[math]\displaystyle{ {F}_{A} - {F}_{f} }[/math]

Forces on Block B:

[math]\displaystyle{ {F}_{f} }[/math]

Since we want the blocks to move together, they must therefore have the same acceleration.

[math]\displaystyle{ {F}_{A} - {F}_{f} = {2 Kg} * {a} }[/math]

[math]\displaystyle{ {F}_{f} = {4 Kg} * {a} }[/math]

[math]\displaystyle{ {F}_{A} - {F}_{f} = {2 Kg} * {a} }[/math]

Since they have the same acceleration, we can use the acceleration to solve for the force applied.

[math]\displaystyle{ {a} = \frac{{F}_{A} - {F}_{f}}{{2 Kg}} }[/math]

[math]\displaystyle{ {a} = \frac{{F}_{f}}{{4}} }[/math]

[math]\displaystyle{ \frac{{F}_{A} - {F}_{f}}{{2 Kg}}= \frac{{F}_{f}}{{4 Kg}} }[/math]

[math]\displaystyle{ {F}_{A}= \frac{{3}}{{2}}{F}_{f} }[/math]

[math]\displaystyle{ {F}_{A}= \frac{{3}}{{2}} * {.35}*{6Kg}*{9.8} = {30.87} }[/math] N

Connectedness

Friction is an important topic to understand because it has many industrial implications. Since friction can cause increases in temperature when objects move, engineers who work with moving objects must understand and account for friction to ensure systems work properly. For example, car engines must have proper oil and lubricants to prevent parts from scraping together and wearing down. Mechanical engineers, aerospace engineers, and civil engineers must deal with friction and its impacts every day!

See also

External links

Internet resources on this topic

Hyper Physics: http://hyperphysics.phy-astr.gsu.edu/hbase/frict.html#fri

PHET Simulation: https://phet.colorado.edu/en/simulation/friction

References

[1] Serway, Raymond A., and John W. Jewett. Physics for Scientists and Engineers. Boston, MA: Cengage Brooks/Cole, 2014. Print.

[2] Sherwood, Bruce A. Matter & Interactions. By Ruth W. Chabay. 4th ed. Vol. 1. N.p.: John Wiley & Sons, 2015. 45-50. Print. Modern Mechanics.