diff --git a/circularPendulum.html b/circularPendulum.html index cd79cf4..c2eb12a 100644 --- a/circularPendulum.html +++ b/circularPendulum.html @@ -37,7 +37,7 @@ .greenSlider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; - background: #66ff77; + background: #000000; border-radius: 50%; width: 15px; height: 15px; @@ -45,7 +45,7 @@ } .greenSlider::-moz-range-thumb { - background: #66ff77; + background: #000000; border-radius: 50%; width: 15px; height: 15px; @@ -92,7 +92,7 @@ wRSlider.oninput = function() { - theta = this.value; + theta = parseFloat(this.value); w = Math.sqrt(980 / (l * Math.cos(theta))); } diff --git a/problem3-1.html b/problem3-1.html new file mode 100644 index 0000000..5d5323f --- /dev/null +++ b/problem3-1.html @@ -0,0 +1,194 @@ + + + + + Problem 3-1 + + + + + + Your browser does not support the HTML5 canvas tag. +
+ M1 + +
+ M2 + +
+ + + +

+ This work is licensed under + CC BY-NC-ND 4.0

+ \ No newline at end of file diff --git a/problem3-2.html b/problem3-2.html new file mode 100644 index 0000000..1387412 --- /dev/null +++ b/problem3-2.html @@ -0,0 +1,242 @@ + + + + + Problem 3-2 + + + + + + Your browser does not support the HTML5 canvas tag. +
+ M1 + +
+ M2 + +
+ M3 + +
+ + + +

+ This work is licensed under + CC BY-NC-ND 4.0

+ \ No newline at end of file