-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblade-friction-ice.html
120 lines (112 loc) · 5.71 KB
/
blade-friction-ice.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coefficient of Friction for Figure Skating</title>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.0/es5/tex-mml-chtml.js"></script>
</head>
<body>
<h1>Calculation of Coefficient of Friction between Ice and Figure Skating Blades</h1>
<p>
The frictional force between the ice and the blades of a figure skater is determined by several factors,
including the weight of the skater, the properties of the ice, and environmental conditions like humidity and pressure.
We will derive the mathematical relationships that influence the coefficient of friction (\( \mu \)) in this scenario.
</p>
<h2>1. Problem Statement</h2>
<p>
A figure skater moves on the ice while wearing skates with metal blades. The primary forces at play are the skater's weight and the frictional force exerted between the ice and the blades. The coefficient of friction (\( \mu \)) quantifies the amount of resistance to motion between two surfaces. We aim to find the relationship between \( \mu \), the skater's weight, the properties of the ice, and environmental factors like pressure and humidity.
</p>
<h2>2. Standard Parameters</h2>
<ul>
<li>Weight of the skater: \( W \), assumed to be an average built athlete's weight (e.g., 70 kg).</li>
<li>Humidity: \( H \), affecting the melting point of ice and thus the layer of water between the blades and the ice.</li>
<li>Pressure: \( P \), influencing how the pressure of the blades compresses the ice and alters friction.</li>
<li>Temperature: \( T \), which also affects the ice's physical state and friction coefficient.</li>
<li>Area of the blade in contact with the ice: \( A \).</li>
</ul>
<h2>3. Basic Frictional Force</h2>
<p>
The frictional force \( F_{\text{friction}} \) is given by:
</p>
<p>
\[
F_{\text{friction}} = \mu N
\]
</p>
<p>
where \( \mu \) is the coefficient of friction and \( N \) is the normal force, which, in the case of a flat surface, equals the weight of the skater \( N = W \).
</p>
<p>
Therefore, the frictional force can be expressed as:
</p>
<p>
\[
F_{\text{friction}} = \mu W
\]
</p>
<h2>4. Relationship of Coefficient of Friction with Environmental Factors</h2>
<p>
The coefficient of friction \( \mu \) is not constant and can vary depending on several factors:
</p>
<h3>4.1. Humidity</h3>
<p>
Humidity \( H \) affects the layer of water that forms between the ice and the blade. Higher humidity leads to more water, reducing the friction by creating a lubricating layer. The relationship between \( \mu \) and \( H \) can be modeled as:
</p>
<p>
\[
\mu(H) = \mu_0 \cdot e^{-k H}
\]
</p>
<p>
where \( \mu_0 \) is the coefficient of friction at zero humidity, and \( k \) is a constant that depends on the ice properties and blade material.
</p>
<h3>4.2. Pressure</h3>
<p>
The pressure \( P \) applied by the skater's blades also plays a significant role in the friction between the blade and the ice. The pressure alters the ice's state, affecting the friction. This can be described by the following relationship:
</p>
<p>
\[
\mu(P) = \mu_0 \cdot \left( 1 + c P \right)
\]
</p>
<p>
where \( c \) is a constant that depends on the ice type and blade material, and \( P \) is the pressure exerted by the skater's weight over the blade area.
</p>
<h3>4.3. Temperature</h3>
<p>
Temperature \( T \) affects the ice's properties and the lubrication between the blade and the ice. At lower temperatures, ice is harder and offers more resistance, resulting in a higher coefficient of friction. As the temperature increases, the ice becomes softer, and a thin layer of water forms, reducing friction. The relationship can be modeled as:
</p>
<p>
\[
\mu(T) = \mu_0 \cdot e^{-d T}
\]
</p>
<p>
where \( d \) is a constant that represents how temperature changes the coefficient of friction, and \( T \) is the temperature of the ice in Celsius.
</p>
<h2>5. Complete Equation for Coefficient of Friction</h2>
<p>
The total coefficient of friction can be derived by considering the effects of humidity, pressure, and temperature simultaneously. Combining all the factors together, we get the following expression:
</p>
<p>
\[
\mu = \mu_0 \cdot e^{-k H} \cdot (1 + c P) \cdot e^{-d T}
\]
</p>
<p>
Here:
<ul>
<li> \( \mu_0 \) is the baseline coefficient of friction at zero humidity, pressure, and temperature.</li>
<li> \( H \) is the humidity.</li>
<li> \( P \) is the pressure exerted by the skater's weight.</li>
<li> \( T \) is the temperature of the ice.</li>
<li> \( k, c, d \) are constants that depend on the material properties of the ice and the blades.</li>
</ul>
</p>
<h2>6. Conclusion</h2>
<p>
The coefficient of friction between the blades of a figure skater and the ice is influenced by environmental factors such as humidity, pressure, and temperature, as well as the skater’s weight. By understanding and calculating these relationships, we can optimize the skater’s performance by reducing the friction as much as possible under the right conditions. The derived equation gives a comprehensive way to model this frictional interaction.
</p>
</body>
</html>