-
Notifications
You must be signed in to change notification settings - Fork 0
/
GCSE_Forces_Motion.html
182 lines (178 loc) · 8.49 KB
/
GCSE_Forces_Motion.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<head>
<title>Revisionline</title>
<style>
/* Define styles for the header and footer */
header {
background-color: grey;
color: teal;
padding: 10px;
text-align: center;
font-family: 'Open Sans', sans-serif;
padding-left: 15px;
}
footer {
background-color: grey;
color: lightblue;
padding: 10px;
text-align: center;
font-family: 'Open Sans', sans-serif;
padding-left: 15px;
}
/* Define styles for the menu buttons */
.menu-button {
background-color: grey;
color: lightblue;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin-right: 0px;
font-family: 'Open Sans', sans-serif;
list-style-type: none;
position: relative;
display: inline-flex;
align-items: center;
}
.menu-button ul {
display: none;
position: absolute;
top: 100%;
left: 0;
margin: 0;
padding: 0;
background-color: grey;
z-index: 1;
}
.menu-button:hover ul {
display: inline-block;
}
.menu-button li {
margin: 0;
padding: 5px;
list-style-type: none;
}
/* Define styles for the main content */
.main-content {
background-color: white;
padding: 0px;
text-align: left;
font-family: 'Open Sans', sans-serif;
}
body {
font-size: 18px;
line-height: 1.5;
margin: 0;
padding: 0;
}
.contact-button {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
color: white;
background-color: teal;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<header>
<img src="logo.png">
<div>
<ul>
<li class="menu-button">
<a href="index.html" class="menu-button">Home</a>
<li class="menu-button">
Physics
<ul>
<li><a href="GCSE_Physics.html">GCSE Physics</a></li>
<li><a href="Alevel_Physics.html">A level Physics</a></li>
</ul>
</li>
<li class="menu-button">
Chemistry
<ul>
<li><a href="GCSE_Chem.html">GCSE Chemistry</a></li>
<li><a href="Alevel_Chem.html">A level Chemistry</a></li>
</ul>
</li>
<li class="menu-button">
Maths
<ul>
<li><a href="mathsmatrix.html">Maths</a></li>
</ul>
<li class="menu-button">
Biology
<ul>
<li><a href="GCSE_bio.html">GCSE Biology</a></li>
<li><a href="Alevel_bio.html">A level Biology</a></li>
</ul>
</li>
<div class="main-content">
<h1> GCSE Physics Revision: Forces and Motion notes </h1>
<h2>Forces</h2>
<p>A force is a push or pull on an object. It can cause a stationary object to start moving or a moving object to change speed or direction. Forces are measured in Newtons (N).</p>
<p>There are several types of forces, including:</p>
<ul>
<li>Gravity - the force that attracts two objects with mass towards each other. On Earth, gravity causes objects to fall towards the ground with an acceleration of 9.8 m/s².</li>
<li>Friction - the force that opposes motion between two surfaces that are in contact with each other. Friction can be useful (e.g. to stop a car) or harmful (e.g. to slow down a machine).</li>
<li>Normal force - the force that is perpendicular to the surface that an object is in contact with. This force arises due to the repulsion between the atoms in the object and the surface.</li>
<li>Tension - the force that is transmitted through a string, rope, or cable when it is pulled tight.</li>
<li>Applied force - a force that is applied to an object by another object, such as a person pushing a shopping cart.</li>
</ul>
<p>Forces can be added together using vector addition. When multiple forces act on an object, they can either reinforce each other (in the same direction) or cancel each other out (in opposite directions).</p>
<p>The motion of an object can be described using Newton's laws of motion:</p>
<ol>
<li>An object at rest will remain at rest, and an object in motion will remain in motion at a constant velocity, unless acted upon by an external force.</li>
<li>The acceleration of an object is directly proportional to the net force acting on it, and inversely proportional to its mass. This is described by the equation F = ma, where F is the net force, m is the mass of the object, and a is the acceleration.</li>
<li>For every action, there is an equal and opposite reaction. This means that if object A exerts a force on object B, then object B will exert an equal and opposite force on object A.</li>
<h3>Balanced Forces</h3>
<p>When two forces are equal in size and opposite in direction, they are said to be balanced. An object experiencing balanced forces will not accelerate (will stay still or continue to move at a constant speed).</p>
<h3>Unbalanced Forces</h3>
<p>When two forces are unequal in size or not opposite in direction, they are said to be unbalanced. An object experiencing unbalanced forces will accelerate (i.e., it will change speed or direction).</p>
<h2>Motion</h2>
<p>Motion is the movement of an object from one position to another. It can be described in terms of distance, displacement, speed, velocity, and acceleration.</p>
<h3>Distance and Displacement</h3>
<p>Distance (scalar quantity) is the total amount of ground covered by an object during its motion. Displacement (vector) is the distance between the starting and ending points of an object's motion, regardless of any changes in direction along the way, s= vt.</p>
<h3>Speed and Velocity</h3>
<p>Speed is the distance an object travels in a certain amount of time. It is measured in meters per second (m/s). Velocity is speed in a given direction. It is also measured in meters per second (m/s).</p>
<h3>Acceleration</h3>
<p>Acceleration is the rate of change of velocity over time: a = (v-u)/ t. It is measured in meters per second squared (m/s^2). An object can accelerate if it speeds up, slows down, or changes direction.</p>
<h3>Terminal Velocity</h3>
<h3>SUVAT Equations</h3>
<p>The SUVAT equations are a set of equations used to solve problems involving motion with constant acceleration. Each letter in the acronym SUVAT represents a variable that is used in the equations:</p>
<ul>
<ol>
<li>S = ut + 1/2at<sup>2</sup></li>
<li>V = u + at</li>
<li>S = vt - 1/2at<sup>2</sup></li>
<li>V<sup>2</sup> = u<sup>2</sup> + 2as</li>
<li>S = 1/2(u + v)t</li>
</ol>
<p>Where:</p>
<ul>
<li><strong>S</strong> is displacement (in meters)</li>
<li><strong>U</strong> is initial velocity (in meters per second)</li>
<li><strong>V</strong> is final velocity (in meters per second)</li>
<li><strong>A</strong> is acceleration (in meters per second squared)</li>
<li><strong>T</strong> is time (in seconds)</li>
</ul>
<p>Terminal velocity is the maximum speed that an object can reach as it falls through a fluid (such as air or water). At terminal velocity, the force of air resistance (or drag) on the object equals the force of gravity pulling it down, resulting in a constant speed.</p>
<h2>Moments</h2>
<p>A moment is a turning effect produced by a force. It depends on the size of the force and the distance from the pivot point (or fulcrum) where the force is applied. Moments are measured in Newton-meters (N·m).</p>
<h3>Calculating Moments</h3>
<p>The moment of a force can be calculated using the equation:</p>
<p>Moment (Nm) = Force (N) × Distance from pivot (m)</p>
<h2>Momentum</h2>
<p>Momentum is a measure of the motion of an object. It is the product of an object's mass and velocity. Momentum is conserved in a closed system (i.e., no external forces acting on the system).</p>
<h3>Calculating Momentum</h3>
<p>The momentum of an object can be calculated using the equation:</p>
<p>Momentum (kgm/s) = Mass (kg) × Velocity (m/s)</p>
</div>
</body>
<footer> © 2023 Revisionline, All rights reserved. <a href="mailto:naail.khokhar@icloud.com" class="contact-button">E- mail</a></footer></html>