Problem 103
Question
(III) The coefficient of kinetic friction \(\mu_{\mathrm{k}}\) between two surfaces is not strictly independent of the velocity of the object. A possible expression for \(\mu_{\mathrm{k}}\) for wood on wood is $$\mu_{\mathrm{k}}=\frac{0.20}{\left(1+0.0020 v^{2}\right)^{2}},$$ where \(v\) is in \(\mathrm{m} / \mathrm{s} .\) A wooden block of mass 8.0 \(\mathrm{kg}\) is at rest on a wooden floor, and a constant horizontal force of 41 \(\mathrm{N}\) acts on the block. Use numerical integration to determine and graph \((a)\) the speed of the block, and \((b)\) its position, as a function of time from 0 to 5.0 \(\mathrm{s}\) (c) Determine the percent difference for the speed and position at 5.0 \(\mathrm{s}\) if \(\mu_{\mathrm{k}}\) is constant and equal to \(0.20 .\)
Step-by-Step Solution
VerifiedKey Concepts
Kinetic Friction
\( v \) here represents the velocity of the object, and as it increases, the denominator of the formula increases, leading to a decrease in \( \mu_k \). Hence, the frictional force is not only dependent on the normal force but also varies with speed.
Understanding kinetic friction helps in predicting how objects slide over each other and plays a crucial role in mechanical and transportation engineering. Analyzing scenarios where \( \mu_k \) is dynamic can give more accurate predictions of an object's motion.
Euler Method
In the context of the exercise provided, you need to determine the speed \( v(t) \) and position \( x(t) \) of a block over time. Euler's method approximates these values by using a step-by-step approach. Each small time step \( \Delta t \) represents a small segment of the overall motion.
The core idea is to start from known initial conditions. For example, the block starts at rest \( v(0) = 0 \) and \( x(0) = 0 \), and then, iteratively calculate:
- Velocity update: \( v(t + \Delta t) = v(t) + a(t) \Delta t \)
- Position update: \( x(t + \Delta t) = x(t) + v(t) \Delta t \)
Runge-Kutta Method
In the exercise, you could use Runge-Kutta to calculate the block's motion with the changing kinetic friction. While Euler might suffice for a quick estimate, Runge-Kutta provides a refined approach by considering intermediate steps within each time interval. This reduces the potential error that might build up over time.
This method utilizes several evaluations of the slope (rate of change) to determine the next value of the function. Typically, the fourth-order Runge-Kutta is used for a good balance of accuracy and computational efficiency:
- The method takes into account four derivative evaluations per step: initial, midpoint, another midpoint, and endpoint derivatives.
- It calculates the weighted average of these slopes to update the solution.