-
Notifications
You must be signed in to change notification settings - Fork 0
/
GCSE_Magnetism.html
147 lines (143 loc) · 5.96 KB
/
GCSE_Magnetism.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
<!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.revisionline.co.uk">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: Magnetism and Electromagnetism notes </h1>
<h2>Magnetism</h2>
<p>Magnetism is the property of certain materials to attract or repel each other. There are two types of magnets:</p>
<ul>
<li>Permanent magnets, which retain their magnetism even when not in the presence of a magnetic field.</li>
<li>Temporary magnets, which only exhibit magnetism when in the presence of a magnetic field.</li>
</ul>
<p>Some common magnetic materials include iron, cobalt, and nickel.</p>
<h2>Electromagnetism</h2>
<p>Electromagnetism is the interaction of electric fields and magnetic fields. When an electric current flows through a wire, it creates a magnetic field around the wire. This is known as an electromagnet.</p>
<p>The strength of an electromagnet can be increased by increasing the number of turns in the wire, increasing the current flowing through the wire, or by using a ferromagnetic core inside the coil.</p>
<h2>The Motor Effect</h2>
<p>The motor effect is the phenomenon where a current-carrying wire experiences a force when placed in a magnetic field. This force is perpendicular to both the direction of the current and the direction of the magnetic field.</p>
<p>The magnitude of the force is given by the equation F = BIL, where F is the force, B is the magnetic field strength, I is the current, and L is the length of the wire in the magnetic field.</p>
<h2>Motors</h2>
<p>A motor is a device that converts electrical energy into mechanical energy. The most common type of motor is the electric motor, which uses the motor effect to produce a rotating motion.</p>
<p>The basic components of an electric motor include a rotor (the rotating part), a stator (the stationary part), and a commutator (which allows the current to flow in the correct direction to produce continuous rotation).</p>
<h2>Generators and Dynamos</h2>
<p>A generator is a device that converts mechanical energy into electrical energy. The basic components of a generator include a rotor (which rotates to produce a changing magnetic field) and a stator (which contains the wire coils that generate the electrical energy).</p>
<p>A dynamo is a type of generator that uses a commutator to produce a DC (direct current) output.</p>
<h2>Transformers</h2>
<p>A transformer is a device that is used to change the voltage of an alternating current (AC) electrical supply. Transformers consist of two coils of wire (the primary coil and the secondary coil) that are wrapped around a common iron core.</p>
<p>The voltage output of the transformer is determined by the ratio of the number of turns in the primary coil to the number of turns in the secondary coil.</p>
</ul>
</div>
</body>
<footer> © 2023 Revisionline, All rights reserved. <a href="mailto:[email protected]" class="contact-button">E- mail</a></footer></html>