Files
ClassicalMechanicsPrograms/index.html
2021-09-04 11:01:39 -07:00

213 lines
6.7 KiB
HTML

<!--
This work is licensed under CC BY-NC-ND 4.0
Link to license: http://creativecommons.org/licenses/by-nc-nd/4.0/
Attribute to Russell Georgi
-->
<html>
<head>
<title>
List of programs
</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
td {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
th {
border: 1px solid #dddddd;
text-align: center;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<td>
Number
</td>
<td>
Description
</td>
</tr>
<tr>
<th colspan = "2">
<t>Chapter 1: Strategies for Solving Problems</t>
</th>
</tr>
<tr>
<td>
<a href='circularPendulum.html'>Circular pendulum</a>
</td>
<td>
<t>Circular pendulum example problem</t>
</td>
</tr>
<tr>
<td>
<a href='1-7.html'>Problem 1-7</a>
</td>
<td>
<t>Two masses, one swinging</t>
</td>
</tr>
<tr>
<th colspan = "2">
<t>Chapter 3: Using F=ma</t>
</th>
</tr>
<tr>
<td>
<a href='throwingABall.html'>Throwing a Ball Example</a>
</td>
<td>
<t>Maximization of distance with relation to ground slope</t>
</td>
</tr>
<tr>
<td>
<a href='3-1.html'>Problem 3-1</a>
</td>
<td>
<t>Basic Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-2.html'>Problem 3-2</a>
</td>
<td>
<t>Double Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-3.html'>Problem 3-3</a>
</td>
<td>
<t>Infinite Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-8.html'>Problem 3-8</a>
</td>
<td>
<t>Block on a moving inclined plane</t>
</td>
</tr>
<tr>
<td>
<a href='3-11.html'>Problem 3-11</a>
</td>
<td>
<t>Chain falling off a table</t>
</td>
</tr>
<tr>
<td>
<a href='3-27.html'>Problem 3-27</a>
</td>
<td>
<t>A more complicated Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-28.html'>Problem 3-28</a>
</td>
<td>
<t>Another Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-29.html'>Problem 3-29</a>
</td>
<td>
<t>Yet another Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-30.html'>Problem 3-30</a>
</td>
<td>
<t>ANOTHER Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-31.html'>Problem 3-31</a>
</td>
<td>
<t>Haven't there been enough Atwood's machines yet?</t>
</td>
</tr>
<tr>
<td>
<a href='3-32.html'>Problem 3-32</a>
</td>
<td>
<t>Nope, one more</t>
</td>
</tr>
<tr>
<th colspan = "2">
<t>Chapter 4: Oscillations</t>
</th>
</tr>
<tr>
<td>
<a href='dampedAndDrivenSpring.html'>Damped and driven spring</a>
</td>
<td>
<t>Damped and driven spring resonance example</t>
</td>
</tr>
<tr>
<td>
<a href='twoMassesThreeSprings.html'>Two masses, three springs</a>
</td>
<td>
<t>Other example problem from chapter 4</t>
</td>
</tr>
<tr>
<th colspan = "2">
<t>Chapter 8: Angular momentum part 1</t>
</th>
</tr>
<tr>
<td>
<a href='8-20.html'>Problem 8-20</a>
</td>
<td>
<t>Superball bouncing</t>
</td>
</tr>
<tr>
<td>
<a href='8-66.html'>Exercises 8-66 & 8-77</a>
</td>
<td>
<t>Superball bouncing under a table</t>
</td>
</tr>
</table>
<p xmlns:cc="http://creativecommons.org/ns#" >
This work is licensed under
<a href="http://creativecommons.org/licenses/by-nc-nd/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-NC-ND 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nd.svg?ref=chooser-v1"></a></p>
</body>
</html>