forked from landgreen/physics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
413 lines (400 loc) · 28.7 KB
/
index.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<!DOCTYPE html>
<html lang="ru">
<head>
<!-- Langs select -->
<script src="langs.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#222"/>
<meta name="author" content="Ross Landgreen">
<title>Заметки по физике</title>
<meta name="description" content="Интерактивные заметки по физике, с наглядными объяснениями">
<link rel="canonical" href="https://landgreen.github.io/physics/">
<meta property="og:title" content="Физика">
<meta property="og:description" content="Интерактивные заметки по физике, с наглядными объяснениями">
<meta property="og:image" content="media/social_media_preview.png">
<meta property="og:url" content="https://landgreen.github.io/physics/" />
<meta name="twitter:title" content="Физика">
<meta name="twitter:description" content="Интерактивные заметки по физике, с наглядными объяснениями">
<meta name="twitter:image" content="https://landgreen.github.io/physics/media/social_media_preview.png">
<meta name="twitter:card" content="summary_large_image">
<link rel='shortcut icon' href='media/favicon.ico' type='image/x-icon' />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>
<a href="../">Физика</a>
</h1>
</header>
<style>
:root {
--svg-color: #333;
--svg-bg-color: #fff;
}
.SVG-title {
/* border: #000 solid 1px; */
margin: auto;
}
.table-of-contents {
line-height: 1.6;
list-style: none;
display: grid;
grid-template: "a a a a a""b b b b b";
max-width: 1700px;
margin: auto;
grid-gap: 4px;
/* border: var(--svg-color) solid 4px; */
border-bottom: var(--svg-color) solid 4px;
border-left: var(--svg-color) solid 4px;
border-right: var(--svg-color) solid 4px;
background-color: var(--svg-color);
}
.table-of-contents a {
color: var(--svg-color);
}
.table-of-contents a:hover {
color: var(--link-color);
text-decoration: none;
}
.table-of-contents li {
background-color: var(--svg-bg-color);
padding: 0px 0px 20px 0px;
display: flex;
flex-direction: column;
}
.table-of-contents li p {
margin: auto;
}
@media screen and (max-width: 850px) {
.table-of-contents {
grid-template: "a a""b b""c c""d d""e e";
border-left: var(--svg-color) solid 0px;
border-right: var(--svg-color) solid 0px;
}
}
@media screen and (max-width: 365px) {
.table-of-contents {
font-size: 100%;
grid-template: "a""b""c""d""e""f""g""h""i""j""k";
}
}
</style>
<ul class="table-of-contents">
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(40,26)" stroke-linecap="round">
<g fill="none">
<path d="M5.5 1.5 v57 m3 3 h57"></path>
<path d="M12 24 Q41 0, 58 52"></path>
</g>
<g stroke="var(--svg-bg-color)" stroke-width="3">
<circle cx="12" cy="24" r="3" />
<circle cx="58" cy="52" r="3" />
</g>
</g>
</svg>
<p>
<a href="notes/motion/motion/">Движение</a>
<br> <a href="notes/motion/kinematics/">Кинематика</a>
<br>
<br>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(42,31)" stroke-linecap="round">
<g fill="none">
<path d="M20.5 2.5 h30 m4 4 v30 m-4 4 h-30 m-4 -4 v-30
M35.5 43 v 20"></path>
</g>
<g stroke="none">
<path d="M35.5 65 h2.5 l-2.5 5 l-2.5 -5"></path>
<circle cx="16.5" cy="2.5" r="1.5" />
<circle cx="54.5" cy="2.5" r="1.5" />
<circle cx="54.5" cy="40.5" r="1.5" />
<circle cx="16.5" cy="40.5" r="1.5" />
</g>
</g>
</svg>
<p>
<a href="notes/force/laws/">Законы Ньютона</a>
<br> <a href="notes/force/forces/">Силы</a>
<br> <a href="notes/force/friction/">Трение</a>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(65,48)" stroke-linecap="round">
<g fill="none">
<path d="M20.5 2.5 h20 m4 4 v20 m-4 4 h-20 m-4 -4 v-20
M12 5.5 h-25
M12 12.5 h-50
M12 20.5 h-37
M12 27.5 h-19
"></path>
</g>
<g stroke="none">
<circle cx="16.5" cy="2.5" r="1.5" />
<circle cx="44.5" cy="2.5" r="1.5" />
<circle cx="44.5" cy="30.5" r="1.5" />
<circle cx="16.5" cy="30.5" r="1.5" />
</g>
</g>
</svg>
<p>
<a href="notes/momentum/momentum/">Импульс</a>
<br> <a href="notes/momentum/conservation/">Сохранение импульса</a>
<br>
<br>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(35,43)" stroke-linecap="round">
<g fill="none">
<path d="M-7.5 4 V50
M2.5 4 V50
M12.5 4 V50
M22.5 10 V50
M32.5 34 V50
M42.5 42 V50
M52.5 43 V50
M62.5 37 V50
M72.5 29 V50
M82.5 28 V50
M92.5 28 V50
"></path>
<path d="M-10 0 h20 c15 0, 16 10, 20 20
c4 15, 10 20, 20 20
c5 0, 7 0, 15 -10
c3 -5, 15 -5, 15 -5
h15"></path>
<circle cx="10" cy="-4.5" r="4" />
</g>
<g stroke="none">
</g>
</g>
</svg>
<p>
<a href="notes/energy/energy/">Энергия</a>
<br> <a href="notes/energy/conservation/">Cохранение энергии</a>
<br> <a href="notes/energy/thermo/">Термодинамика</a>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(31,63)" stroke-linecap="round">
<g fill="none">
<circle cx="0.5" cy="0.5" r="10" />
<circle cx="90.5" cy="0.5" r="25" />
</g>
<g stroke="var(--svg-bg-color)" stroke-width="6">
<path d="M5 0.5 h25 M86 0.5 h-25"></path>
</g>
<g fill="none">
<path d="M5 0.5 h25 M86 0.5 h-25"></path>
</g>
<g stroke="none">
<path d="M32.5 0.5 v2.5 l5 -2.5 l-5 -2.5"></path>
<path d="M58.5 0.5 v2.5 l-5 -2.5 l5 -2.5"></path>
<circle cx="0.5" cy="0.5" r="1.5" />
<circle cx="90.5" cy="0.5" r="1.5" />
</g>
</g>
</svg>
<p>
<a href="notes/gravity/gravitation/">Гравитация</a>
<br> <a href="notes/gravity/circular/">Орбиты</a>
<br>
<br>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" transform="translate(80,63) scale(20.0,-20.0)" stroke-linecap="round">
<g fill="none" stroke-width="0.043">
<path d="M -1.0000,0.0000 L -0.7255,0.0539 L -0.5768,0.0812 L -0.4615,0.1002 L -0.3626,0.1143 L -0.2740,0.1248 L -0.1918,0.1322 L -0.1137,0.1370 L -0.0376,0.1393 L 0.0376,0.1393 L 0.1136,0.1370 L 0.1918,0.1322 L 0.2740,0.1248 L 0.3626,0.1143 L 0.4615,0.1002 L 0.5768,0.0812 L 0.7255,0.0539 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.8252,0.1159 L -0.7248,0.1800 L -0.6443,0.2288 L -0.5739,0.2688 L -0.5102,0.3024 L -0.4510,0.3309 L -0.3951,0.3551 L -0.3417,0.3757 L -0.2901,0.3930 L -0.2399,0.4073 L -0.1908,0.4188 L -0.1424,0.4276 L -0.0947,0.4338 L -0.0472,0.4375 L -0.0000,0.4388 L 0.0472,0.4375 L 0.0946,0.4338 L 0.1424,0.4276 L 0.1908,0.4188 L 0.2399,0.4073 L 0.2901,0.3930 L 0.3417,0.3757 L 0.3951,0.3551 L 0.4510,0.3309 L 0.5101,0.3024 L 0.5739,0.2688 L 0.6443,0.2288 L 0.7248,0.1800 L 0.8252,0.1159 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.8945,0.1566 L -0.8302,0.2482 L -0.7764,0.3211 L -0.7274,0.3835 L -0.6814,0.4383 L -0.6374,0.4872 L -0.5946,0.5311 L -0.5526,0.5707 L -0.5111,0.6066 L -0.4700,0.6390 L -0.4290,0.6681 L -0.3882,0.6942 L -0.3474,0.7174 L -0.3066,0.7378 L -0.2659,0.7555 L -0.2250,0.7706 L -0.1842,0.7831 L -0.1433,0.7930 L -0.1024,0.8004 L -0.0614,0.8053 L -0.0205,0.8078 L 0.0205,0.8078 L 0.0615,0.8053 L 0.1024,0.8004 L 0.1433,0.7930 L 0.1842,0.7831 L 0.2251,0.7706 L 0.2659,0.7555 L 0.3067,0.7378 L 0.3474,0.7174 L 0.3882,0.6942 L 0.4290,0.6681 L 0.4700,0.6389 L 0.5111,0.6066 L 0.5526,0.5707 L 0.5946,0.5310 L 0.6374,0.4871 L 0.6814,0.4383 L 0.7274,0.3835 L 0.7764,0.3211 L 0.8302,0.2482 L 0.8945,0.1566 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.9629,0.1824 L -0.9378,0.2948 L -0.9145,0.3882 L -0.8915,0.4705 L -0.8681,0.5453 L -0.8438,0.6144 L -0.8186,0.6787 L -0.7923,0.7390 L -0.7648,0.7957 L -0.7362,0.8490 L -0.7063,0.8993 L -0.6753,0.9465 L -0.6432,0.9909 L -0.6100,1.0326 L -0.5757,1.0715 L -0.5404,1.1077 L -0.5042,1.1413 L -0.4671,1.1722 L -0.4292,1.2005 L -0.3906,1.2262 L -0.3513,1.2493 L -0.3114,1.2699 L -0.2709,1.2878 L -0.2300,1.3032 L -0.1887,1.3160 L -0.1471,1.3262 L -0.1053,1.3339 L -0.0632,1.3390 L -0.0211,1.3416 L 0.0211,1.3416 L 0.0632,1.3390 L 0.1052,1.3339 L 0.1471,1.3262 L 0.1887,1.3160 L 0.2300,1.3032 L 0.2709,1.2878 L 0.3114,1.2699 L 0.3513,1.2493 L 0.3906,1.2262 L 0.4292,1.2005 L 0.4671,1.1722 L 0.5042,1.1413 L 0.5404,1.1077 L 0.5757,1.0715 L 0.6100,1.0326 L 0.6432,0.9909 L 0.6753,0.9465 L 0.7063,0.8993 L 0.7362,0.8490 L 0.7648,0.7957 L 0.7923,0.7390 L 0.8186,0.6787 L 0.8438,0.6144 L 0.8681,0.5453 L 0.8915,0.4705 L 0.9145,0.3882 L 0.9378,0.2948 L 0.9629,0.1824 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.0364,0.1871 L -1.0577,0.3080 L -1.0737,0.4124 L -1.0858,0.5075 L -1.0948,0.5967 L -1.1008,0.6816 L -1.1041,0.7631 L -1.1048,0.8418 L -1.1031,0.9181 L -1.0989,0.9922 L -1.0923,1.0643 L -1.0834,1.1345 L -1.0722,1.2028 L -1.0589,1.2693 L -1.0433,1.3340 L -1.0256,1.3968 L -1.0059,1.4577 L -0.9841,1.5168 L -0.9604,1.5740 L -0.9349,1.6291 L -0.9075,1.6823 L -0.8783,1.7335 L -0.8475,1.7825 L -0.8150,1.8294 L -0.7811,1.8741 L -0.7457,1.9166 L -0.7089,1.9569 L -0.6708,1.9949 L -0.6315,2.0306 L -0.5911,2.0639 L -0.5496,2.0948 L -0.5072,2.1234 L -0.4638,2.1495 L -0.4197,2.1732 L -0.3749,2.1944 L -0.3294,2.2132 L -0.2834,2.2295 L -0.2369,2.2432 L -0.1900,2.2545 L -0.1428,2.2633 L -0.0953,2.2696 L -0.0477,2.2734 L -0.0000,2.2746 L 0.0477,2.2734 L 0.0953,2.2696 L 0.1428,2.2633 L 0.1899,2.2545 L 0.2369,2.2432 L 0.2833,2.2295 L 0.3294,2.2132 L 0.3749,2.1944 L 0.4197,2.1732 L 0.4638,2.1495 L 0.5071,2.1234 L 0.5496,2.0948 L 0.5911,2.0639 L 0.6315,2.0306 L 0.6708,1.9949 L 0.7089,1.9569 L 0.7457,1.9166 L 0.7811,1.8741 L 0.8150,1.8294 L 0.8475,1.7825 L 0.8783,1.7334 L 0.9075,1.6823 L 0.9349,1.6291 L 0.9604,1.5740 L 0.9841,1.5168 L 1.0059,1.4577 L 1.0256,1.3968 L 1.0433,1.3340 L 1.0589,1.2693 L 1.0722,1.2028 L 1.0834,1.1345 L 1.0923,1.0643 L 1.0989,0.9922 L 1.1031,0.9181 L 1.1048,0.8418 L 1.1041,0.7631 L 1.1008,0.6816 L 1.0948,0.5967 L 1.0858,0.5075 L 1.0737,0.4124 L 1.0577,0.3080 L 1.0364,0.1871 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.1148,0.1734 L -1.1901,0.2910 L -1.2545,0.3962 L -1.3122,0.4951 L -1.3650,0.5906 L -1.4138,0.6839 L -1.4591,0.7759 L -1.5011,0.8670 L -1.5401,0.9576 L -1.5762,1.0478 L -1.6095,1.1377 L -1.6400,1.2274 L -1.6678,1.3170 L -1.6930,1.4065 L -1.7154,1.4958 L -1.7352,1.5849 L -1.7524,1.6737 L -1.7669,1.7623 L -1.7788,1.8505 L -1.7881,1.9384 L -1.7948,2.0257 L -1.7990,2.1125 L -1.8005,2.1987 L -1.7996,2.2843 L -1.7961,2.3690 L -1.7901,2.4529 L -1.7817,2.5359 L -1.7708,2.6178 L -1.7575,2.6987 L -1.7419,2.7785 L -1.7239,2.8570 L -1.7036,2.9342 L -1.6811,3.0100 M 1.6811,3.0100 L 1.7036,2.9342 L 1.7239,2.8570 L 1.7419,2.7785 L 1.7575,2.6987 L 1.7708,2.6179 L 1.7817,2.5359 L 1.7901,2.4529 L 1.7961,2.3690 L 1.7996,2.2843 L 1.8005,2.1987 L 1.7990,2.1125 L 1.7948,2.0257 L 1.7881,1.9384 L 1.7788,1.8505 L 1.7669,1.7623 L 1.7524,1.6737 L 1.7352,1.5849 L 1.7154,1.4958 L 1.6930,1.4065 L 1.6678,1.3170 L 1.6400,1.2274 L 1.6095,1.1377 L 1.5762,1.0478 L 1.5401,0.9576 L 1.5011,0.8670 L 1.4591,0.7759 L 1.4138,0.6839 L 1.3650,0.5906 L 1.3122,0.4951 L 1.2545,0.3962 L 1.1901,0.2910 L 1.1148,0.1734 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.2019,0.1359 L -1.3428,0.2335 L -1.4685,0.3234 L -1.5864,0.4107 L -1.6993,0.4973 L -1.8085,0.5843 L -1.9149,0.6721 L -2.0189,0.7612 L -2.1207,0.8517 L -2.2206,0.9437 L -2.3186,1.0375 L -2.4149,1.1329 L -2.5094,1.2301 L -2.6022,1.3291 L -2.6932,1.4299 L -2.7825,1.5324 L -2.8700,1.6366 L -2.9557,1.7426 L -3.0395,1.8503 L -3.1216,1.9596 L -3.2017,2.0705 L -3.2799,2.1830 L -3.3561,2.2970 L -3.4303,2.4125 L -3.5025,2.5294 L -3.5726,2.6476 L -3.6406,2.7672 L -3.7064,2.8880 L -3.7701,3.0100 M 3.7701,3.0100 L 3.7064,2.8880 L 3.6406,2.7672 L 3.5726,2.6476 L 3.5025,2.5294 L 3.4303,2.4125 L 3.3561,2.2970 L 3.2799,2.1830 L 3.2017,2.0705 L 3.1216,1.9596 L 3.0395,1.8503 L 2.9557,1.7426 L 2.8700,1.6366 L 2.7825,1.5324 L 2.6932,1.4299 L 2.6022,1.3291 L 2.5094,1.2301 L 2.4149,1.1329 L 2.3186,1.0375 L 2.2206,0.9437 L 2.1207,0.8517 L 2.0189,0.7612 L 1.9149,0.6721 L 1.8085,0.5843 L 1.6993,0.4973 L 1.5864,0.4107 L 1.4685,0.3234 L 1.3428,0.2335 L 1.2019,0.1359 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.3483,0.0701 L -1.6091,0.1248 L -1.8530,0.1783 L -2.0910,0.2329 L -2.3271,0.2895 L -2.5631,0.3485 L -2.8000,0.4101 L -3.0383,0.4746 L -3.2783,0.5419 L -3.5203,0.6123 L -3.7641,0.6856 L -4.0100,0.7621 M 4.0100,0.7621 L 3.7641,0.6856 L 3.5203,0.6123 L 3.2783,0.5419 L 3.0383,0.4746 L 2.8000,0.4101 L 2.5631,0.3485 L 2.3271,0.2895 L 2.0910,0.2329 L 1.8530,0.1783 L 1.6091,0.1248 L 1.3483,0.0701 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.3483,-0.0701 L -1.6091,-0.1248 L -1.8530,-0.1783 L -2.0910,-0.2329 L -2.3271,-0.2895 L -2.5631,-0.3485 L -2.8000,-0.4101 L -3.0383,-0.4746 L -3.2783,-0.5419 L -3.5203,-0.6123 L -3.7641,-0.6856 L -4.0100,-0.7621 M 4.0100,-0.7621 L 3.7641,-0.6856 L 3.5203,-0.6123 L 3.2783,-0.5419 L 3.0383,-0.4746 L 2.8000,-0.4101 L 2.5631,-0.3485 L 2.3271,-0.2895 L 2.0910,-0.2329 L 1.8530,-0.1783 L 1.6091,-0.1248 L 1.3483,-0.0701 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.2019,-0.1359 L -1.3428,-0.2335 L -1.4685,-0.3234 L -1.5864,-0.4107 L -1.6993,-0.4973 L -1.8085,-0.5843 L -1.9149,-0.6721 L -2.0189,-0.7612 L -2.1207,-0.8517 L -2.2206,-0.9437 L -2.3186,-1.0375 L -2.4149,-1.1329 L -2.5094,-1.2301 L -2.6022,-1.3291 L -2.6932,-1.4299 L -2.7825,-1.5324 L -2.8700,-1.6366 L -2.9557,-1.7426 L -3.0395,-1.8503 L -3.1216,-1.9596 L -3.2017,-2.0705 L -3.2799,-2.1830 L -3.3561,-2.2970 L -3.4303,-2.4125 L -3.5025,-2.5294 L -3.5726,-2.6476 L -3.6406,-2.7672 L -3.7064,-2.8880 L -3.7701,-3.0100 M 3.7701,-3.0100 L 3.7064,-2.8880 L 3.6406,-2.7672 L 3.5726,-2.6476 L 3.5025,-2.5294 L 3.4303,-2.4125 L 3.3561,-2.2970 L 3.2799,-2.1830 L 3.2017,-2.0705 L 3.1216,-1.9596 L 3.0395,-1.8503 L 2.9557,-1.7426 L 2.8700,-1.6366 L 2.7825,-1.5324 L 2.6932,-1.4299 L 2.6022,-1.3291 L 2.5094,-1.2301 L 2.4149,-1.1329 L 2.3186,-1.0375 L 2.2206,-0.9437 L 2.1207,-0.8517 L 2.0189,-0.7612 L 1.9149,-0.6721 L 1.8085,-0.5843 L 1.6993,-0.4973 L 1.5864,-0.4107 L 1.4685,-0.3234 L 1.3428,-0.2335 L 1.2019,-0.1359 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.1148,-0.1734 L -1.1901,-0.2910 L -1.2545,-0.3962 L -1.3122,-0.4951 L -1.3650,-0.5906 L -1.4138,-0.6839 L -1.4591,-0.7759 L -1.5011,-0.8670 L -1.5401,-0.9576 L -1.5762,-1.0478 L -1.6095,-1.1377 L -1.6400,-1.2274 L -1.6678,-1.3170 L -1.6930,-1.4065 L -1.7154,-1.4958 L -1.7352,-1.5849 L -1.7524,-1.6737 L -1.7669,-1.7623 L -1.7788,-1.8505 L -1.7881,-1.9384 L -1.7948,-2.0257 L -1.7990,-2.1125 L -1.8005,-2.1987 L -1.7996,-2.2843 L -1.7961,-2.3690 L -1.7901,-2.4529 L -1.7817,-2.5359 L -1.7708,-2.6178 L -1.7575,-2.6987 L -1.7419,-2.7785 L -1.7239,-2.8570 L -1.7036,-2.9342 L -1.6811,-3.0100 M 1.6811,-3.0100 L 1.7036,-2.9342 L 1.7239,-2.8570 L 1.7419,-2.7785 L 1.7575,-2.6987 L 1.7708,-2.6179 L 1.7817,-2.5359 L 1.7901,-2.4529 L 1.7961,-2.3690 L 1.7996,-2.2843 L 1.8005,-2.1987 L 1.7990,-2.1125 L 1.7948,-2.0257 L 1.7881,-1.9384 L 1.7788,-1.8505 L 1.7669,-1.7623 L 1.7524,-1.6737 L 1.7352,-1.5849 L 1.7154,-1.4958 L 1.6930,-1.4065 L 1.6678,-1.3170 L 1.6400,-1.2274 L 1.6095,-1.1377 L 1.5762,-1.0478 L 1.5401,-0.9576 L 1.5011,-0.8670 L 1.4591,-0.7759 L 1.4138,-0.6839 L 1.3650,-0.5906 L 1.3122,-0.4951 L 1.2545,-0.3962 L 1.1901,-0.2910 L 1.1148,-0.1734 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -1.0364,-0.1871 L -1.0577,-0.3080 L -1.0737,-0.4124 L -1.0858,-0.5075 L -1.0948,-0.5967 L -1.1008,-0.6816 L -1.1041,-0.7631 L -1.1048,-0.8418 L -1.1031,-0.9181 L -1.0989,-0.9922 L -1.0923,-1.0643 L -1.0834,-1.1345 L -1.0722,-1.2028 L -1.0589,-1.2693 L -1.0433,-1.3340 L -1.0256,-1.3968 L -1.0059,-1.4577 L -0.9841,-1.5168 L -0.9604,-1.5740 L -0.9349,-1.6291 L -0.9075,-1.6823 L -0.8783,-1.7335 L -0.8475,-1.7825 L -0.8150,-1.8294 L -0.7811,-1.8741 L -0.7457,-1.9166 L -0.7089,-1.9569 L -0.6708,-1.9949 L -0.6315,-2.0306 L -0.5911,-2.0639 L -0.5496,-2.0948 L -0.5072,-2.1234 L -0.4638,-2.1495 L -0.4197,-2.1732 L -0.3749,-2.1944 L -0.3294,-2.2132 L -0.2834,-2.2295 L -0.2369,-2.2432 L -0.1900,-2.2545 L -0.1428,-2.2633 L -0.0953,-2.2696 L -0.0477,-2.2734 L -0.0000,-2.2746 L 0.0477,-2.2734 L 0.0953,-2.2696 L 0.1428,-2.2633 L 0.1899,-2.2545 L 0.2369,-2.2432 L 0.2833,-2.2295 L 0.3294,-2.2132 L 0.3749,-2.1944 L 0.4197,-2.1732 L 0.4638,-2.1495 L 0.5071,-2.1234 L 0.5496,-2.0948 L 0.5911,-2.0639 L 0.6315,-2.0306 L 0.6708,-1.9949 L 0.7089,-1.9569 L 0.7457,-1.9166 L 0.7811,-1.8741 L 0.8150,-1.8294 L 0.8475,-1.7825 L 0.8783,-1.7334 L 0.9075,-1.6823 L 0.9349,-1.6291 L 0.9604,-1.5740 L 0.9841,-1.5168 L 1.0059,-1.4577 L 1.0256,-1.3968 L 1.0433,-1.3340 L 1.0589,-1.2693 L 1.0722,-1.2028 L 1.0834,-1.1345 L 1.0923,-1.0643 L 1.0989,-0.9922 L 1.1031,-0.9181 L 1.1048,-0.8418 L 1.1041,-0.7631 L 1.1008,-0.6816 L 1.0948,-0.5967 L 1.0858,-0.5075 L 1.0737,-0.4124 L 1.0577,-0.3080 L 1.0364,-0.1871 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.9629,-0.1824 L -0.9378,-0.2948 L -0.9145,-0.3882 L -0.8915,-0.4705 L -0.8681,-0.5453 L -0.8438,-0.6144 L -0.8186,-0.6787 L -0.7923,-0.7390 L -0.7648,-0.7957 L -0.7362,-0.8490 L -0.7063,-0.8993 L -0.6753,-0.9465 L -0.6432,-0.9909 L -0.6100,-1.0326 L -0.5757,-1.0715 L -0.5404,-1.1077 L -0.5042,-1.1413 L -0.4671,-1.1722 L -0.4292,-1.2005 L -0.3906,-1.2262 L -0.3513,-1.2493 L -0.3114,-1.2699 L -0.2709,-1.2878 L -0.2300,-1.3032 L -0.1887,-1.3160 L -0.1471,-1.3262 L -0.1053,-1.3339 L -0.0632,-1.3390 L -0.0211,-1.3416 L 0.0211,-1.3416 L 0.0632,-1.3390 L 0.1052,-1.3339 L 0.1471,-1.3262 L 0.1887,-1.3160 L 0.2300,-1.3032 L 0.2709,-1.2878 L 0.3114,-1.2699 L 0.3513,-1.2493 L 0.3906,-1.2262 L 0.4292,-1.2005 L 0.4671,-1.1722 L 0.5042,-1.1413 L 0.5404,-1.1077 L 0.5757,-1.0715 L 0.6100,-1.0326 L 0.6432,-0.9909 L 0.6753,-0.9465 L 0.7063,-0.8993 L 0.7362,-0.8490 L 0.7648,-0.7957 L 0.7923,-0.7390 L 0.8186,-0.6787 L 0.8438,-0.6144 L 0.8681,-0.5453 L 0.8915,-0.4705 L 0.9145,-0.3882 L 0.9378,-0.2948 L 0.9629,-0.1824 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.8945,-0.1566 L -0.8302,-0.2482 L -0.7764,-0.3211 L -0.7274,-0.3835 L -0.6814,-0.4383 L -0.6374,-0.4872 L -0.5946,-0.5311 L -0.5526,-0.5707 L -0.5111,-0.6066 L -0.4700,-0.6390 L -0.4290,-0.6681 L -0.3882,-0.6942 L -0.3474,-0.7174 L -0.3066,-0.7378 L -0.2659,-0.7555 L -0.2250,-0.7706 L -0.1842,-0.7831 L -0.1433,-0.7930 L -0.1024,-0.8004 L -0.0614,-0.8053 L -0.0205,-0.8078 L 0.0205,-0.8078 L 0.0615,-0.8053 L 0.1024,-0.8004 L 0.1433,-0.7930 L 0.1842,-0.7831 L 0.2251,-0.7706 L 0.2659,-0.7555 L 0.3067,-0.7378 L 0.3474,-0.7174 L 0.3882,-0.6942 L 0.4290,-0.6681 L 0.4700,-0.6389 L 0.5111,-0.6066 L 0.5526,-0.5707 L 0.5946,-0.5310 L 0.6374,-0.4871 L 0.6814,-0.4383 L 0.7274,-0.3835 L 0.7764,-0.3211 L 0.8302,-0.2482 L 0.8945,-0.1566 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.8252,-0.1159 L -0.7248,-0.1800 L -0.6443,-0.2288 L -0.5739,-0.2688 L -0.5102,-0.3024 L -0.4510,-0.3309 L -0.3951,-0.3551 L -0.3417,-0.3757 L -0.2901,-0.3930 L -0.2399,-0.4073 L -0.1908,-0.4188 L -0.1424,-0.4276 L -0.0947,-0.4338 L -0.0472,-0.4375 L -0.0000,-0.4388 L 0.0472,-0.4375 L 0.0946,-0.4338 L 0.1424,-0.4276 L 0.1908,-0.4188 L 0.2399,-0.4073 L 0.2901,-0.3930 L 0.3417,-0.3757 L 0.3951,-0.3551 L 0.4510,-0.3309 L 0.5101,-0.3024 L 0.5739,-0.2688 L 0.6443,-0.2288 L 0.7248,-0.1800 L 0.8252,-0.1159 L 1.0000,0.0000" />
<path d="M -1.0000,0.0000 L -0.7255,-0.0539 L -0.5768,-0.0812 L -0.4615,-0.1002 L -0.3626,-0.1143 L -0.2740,-0.1248 L -0.1918,-0.1322 L -0.1137,-0.1370 L -0.0376,-0.1393 L 0.0376,-0.1393 L 0.1136,-0.1370 L 0.1918,-0.1322 L 0.2740,-0.1248 L 0.3626,-0.1143 L 0.4615,-0.1002 L 0.5768,-0.0812 L 0.7255,-0.0539 L 1.0000,0.0000" />
</g>
<g stroke="none" fill="var(--svg-bg-color)">
<circle cx="-1" cy="0" r="0.58" />
<circle cx="1" cy="0" r="0.58" />
</g>
<g stroke="var(--svg-color)" fill="none" stroke-width="0.043">
<circle cx="-1" cy="0" r="0.4" />
<circle cx="1" cy="0" r="0.4" />
</g>
</g>
<rect x="0" y="3" width="160" height="120" fill="none" stroke-width="28" stroke="#fff" />
</svg>
<p>
<a href=" notes/electromagnetism/charge/">Электрический заряд</a> <br> <a href="notes/electromagnetism/electrostatics/">Электростатика</a>
<br> <a href="notes/electromagnetism/potential/">Электростатический потенциал</a>
<br> <a href="notes/electromagnetism/magnetism/">Магнетизм</a>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(46,26)" stroke-linecap="round">
<path fill="none" stroke-linejoin="round" d="M5.5 5.5 h50 m4 4
v9 l4 4 l-8 4 l8 4 l-8 4 l8 4 l-8 4 l8 4 l -4 4 v9 m-4 4
h-50 m-4 -4
v-23 m-12 0 h24 m-6 -4 h-12 m6 0 v-23"></path>
<g stroke="none">
<circle cx="1.5" cy="5.5" r="1.5" />
<circle cx="59.5" cy="5.5" r="1.5" />
<circle cx="59.5" cy="63.5" r="1.5" />
<circle cx="1.5" cy="63.5" r="1.5" />
</g>
</g>
</svg>
<p>
<a href="notes/circuits/electricity/">Электричество</a>
<br> <a href="notes/circuits/power/">Мощность</a>
<br> <a href="notes/circuits/kirchoff/">Законы Кирхгофа</a>
<br> <a href="notes/circuits/components/">Электрические компоненты</a>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(27,66)" stroke-linecap="round">
<g fill="none">
<path d="M3 2.5 h44 M55 2.5 h44
M0.5 -2 s25.5 -70, 49 0
M52.5 6.5 s25.5 70, 49 0"></path>
</g>
<g stroke="none" stroke-width="2.5">
<circle cx="-1" cy="2.5" r="1.5" />
<circle cx="51" cy="2.5" r="1.5" />
<circle cx="103" cy="2.5" r="1.5" />
</g>
</g>
</svg>
<p>
<a href="notes/waves/waves/">Волны</a>
<br> <a href="notes/waves/waveproperties/">Интерференция волн</a>
<br> <a href="notes/waves/light/">Свет</a>
<br> <a href="notes/waves/quantum/">Квантовая механика</a>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(78,75)" stroke-linecap="round">
<g fill="var(--svg-bg-color)">
<path d="M-34 -34 l31 31 m6 6 l31 31
M34 -34 l-31 31 m-6 6 l-31 31"></path>
</g>
<ellipse cx="0" cy="35" rx="34.5" ry="7" fill="var(--svg-bg-color)" />
<ellipse cx="0" cy="-35" rx="34.5" ry="7" fill="var(--svg-bg-color)" />
<g stroke="none">
<circle cx="0" cy="0" r="1.5" />
</g>
</g>
</svg>
<p>
<br><a href="notes/relativity/special/">Специальная теория относительности</a>
<br><a href="notes/relativity/general/">Общая теория относительности</a>
<br>
<br>
</p>
</li>
<li>
<svg class="SVG-title" width="160" height="120">
<g fill="var(--svg-color)" stroke="var(--svg-color)" stroke-width="1" transform="translate(48,90)" stroke-linecap="round">
<g fill="none">
<path d="M4.78 -2.07 l51.44 -30.86"></path>
<path d="M5.5 0.5 h50" stroke-dashoffset="0.7" stroke-dasharray="3"></path>
<path d="M60.5 -4.5 v-28" stroke-dashoffset="0.8" stroke-dasharray="3"></path>
</g>
<g stroke="none">
<circle cx="0.5" cy="0.5" r="1.5" />
<circle cx="60.5" cy="0.5" r="1.5" />
<circle cx="60.5" cy="-35.5" r="1.55" />
</g>
</g>
</svg>
<p>
<br><a href="notes/review/units/">Единицы измерения</a>
<br> <a href="notes/review/vectors/">Векторы и скаляры</a>
<br>
<br>
</p>
</li>
</ul>
<article>
<div>
<h2 class='underlined'>О сайте</h2>
<p>
Этот сайт содержит заметки по курсу физики на основе <a href="https://explorabl.es/">этих</a> и <a href="http://worrydream.com/ExplorableExplanations/">этих</a> объяснений.
Я все еще добавляю контент на 2021-2022 годы. Дайте мне знать, если у вас есть какие-либо идеи или Вы нашли одну из многочисленных ошибок.
</p>
<p>
</p>
<p>
Это проект с открытым исходным кодом, размещенным на <a href="https://github.com/landgreen/physics">GitHub</a>.
<br class="hide-on-mobile">Его можно использовать бесплатно в соответствии с <a href="https://github.com/landgreen/physics/blob/master/LICENSE">GNU General Public License v3.0</a>.
<br class="hide-on-mobile">Диаграммы - это SVG-картинки, созданные в текстовом редакторе.
<br class="hide-on-mobile">Формулы отображается с помощью библиотеки <a href="https://katex.org/">KaTeX</a>.
<br class="hide-on-mobile">Интерактивные модели созданы с помощью JavaScript, рисованием на Canvas или SVG.
<br class="hide-on-mobile">При моделировании столкновений используются <a href="http://brm.io/matter-js/">Matter.js</a> 2D физический движок.
</p>
</div>
<h2 class='underlined'>Ссылки</h2>
<br>
<ul class="listing">
<li>
<strong>Общие</strong>
<a href="https://landgreen.github.io/physics/index.html">Оригинал</a>
<a href="https://drive.google.com/open?id=1uhqsIn5Ryggmndnt40ReF8v-x0t65vJi">Файлы студентов</a>
<a style="padding-bottom: 22px;" href="https://goo.gl/photos/E7jTHpgHRFgT6C7p6">Фотографии в классе</a>
<strong>Особые исследования</strong>
<a href="notes/waves/waveproperties/#standing-wave-sim">Стоячая волна</a>
<a href="notes/energy/thermo/#entropy">Энтропия</a>
<a href="notes/waves/waveproperties/#harmony">Созвучие и диссонанс</a>
<a href="notes/circuits/electricity/#current">Электрический ток</a>
<a href="notes/motion/motion/">Частицы</a>
<a href="notes/momentum/momentum/#conservation">Импульс</a>
<a href="notes/force/friction/">Трение скольжения</a>
<a href="notes/energy/conservation/#spring-mass-gravity">Пружина и масса</a>
<a href="notes/motion/kinematics/#tank-sim">Баллистика</a>
<a href="notes/gravity/gravitation/#gravity-potential-sim">Гравитационная энергия</a>
</li>
<li>
<strong>Изучайте физику</strong>
<a href="https://phet.colorado.edu/en/simulations/category/html">Моделирование PhET</a>
<a href="https://www.exploratorium.edu/snacks">Научные "закуски"</a>
<a href="http://www.falstad.com/mathphysics.html">Falstad Моделирование</a>
<a style="padding-bottom: 22px;" href="https://openstax.org/details/books/college-physics">Учебник физики</a>
<strong>YouTube</strong>
<a href="https://www.youtube.com/playlist?list=PLGO_AWB1C4GQz6JF3-0yZHpoKfqZb7O5z">Physics Girl</a>
<a href="https://www.youtube.com/user/flippingphysics/playlists">Flipping Physics</a>
<a href="https://www.youtube.com/playlist?list=PL8dPuuaLjXtN0ge7yDk_UA0ldZJdhwkoV">Crash Course</a>
<a href="https://www.youtube.com/channel/UCUHW94eEFW7hkUMVaZz4eDg">Minute Physics</a>
<a href="https://www.youtube.com/user/msadaghd/">ElectroBOOM</a>
<a href="https://www.youtube.com/channel/UCBbnbBWJtwsf0jLGUwX5Q3g">Journey to the Microcosmos</a>
<a href="https://www.youtube.com/channel/UC7_gcs09iThXybpVgjHZ_7g">PBS Space Time</a>
<a href="https://www.youtube.com/c/CaptainDisillusion/videos">Captain Disillusion</a>
</li>
</ul>
</article>
<footer>
<a href="../">Назад</a>
</footer>
</body>
</html>