From 83f94fb96951f70f1cc9a322f17e18cc6ca4b11d Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 4 Oct 2021 17:53:12 +0200 Subject: [PATCH] Update project --- projects/projectile/index.html | 15 +++++++++++++-- projects/projectile/index.js | 14 ++++++++------ template.html | 6 ++---- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/projects/projectile/index.html b/projects/projectile/index.html index 455b6b6..d56edd3 100644 --- a/projects/projectile/index.html +++ b/projects/projectile/index.html @@ -15,7 +15,7 @@
-
\(v_0\)
+
\(v_{0,x},v_{0,y}\)
\(m.s\)
@@ -34,4 +34,15 @@


Projectile Motion

-\[ \int_{0}^{10} \frac{56}{875} \] +

To determine to position of the projectile we should compute the position vector \(\vec{r}=x(t)\vec{i}+y(t)\vec{i}\).

+
\(x(t)\):
+

We know from Newton second law that \(\sum \vec{F} = m\times \vec{a}_x = m\times a_x(t)\vec{i}\)

+

However, the projectile as a constant speed along \(\vec{i}\). Hence, \(a_x(t) = 0 \).

+

Thus:

+\[ x(t) = \int_{t_0}^t v_{0,x}dt = v_{0,x}t + C = v_{0,x}t + x_0\] +
\(y(t)\):
+

We know from Newton second law that \(\sum \vec{F} = m\times \vec{a}_y = m\times a_y(t)\vec{i}\)

+

The projectile is under the influence of the gravity that is oriented downwarde. Hence, \(a_y(t) = -g \).

+

Thus:

+\[ v_y(t) = \int_{t_0}^t a_{y}(t)dt = -gt+C = -gt + v_{0,y}\] +\[ y(t) = \int_{t_0}^t v_y(t)dt = -\frac{1}{2}gt^2 + v_{0,y}t+C=-\frac{1}{2}gt^2 + v_{0,y}t+y_0\] diff --git a/projects/projectile/index.js b/projects/projectile/index.js index 29ebfba..9d11e8c 100644 --- a/projects/projectile/index.js +++ b/projects/projectile/index.js @@ -6,19 +6,18 @@ let y0=50 let g=9.81 let projectile= function (node){ - + let width=800 + let height=300 + let dots=[] // Dots that show projectile path + node.setup = function() { c=node.createCanvas(width, height); v0t=node.createElement('p', ''); katex.render("v_0", v0t.elt); v0t.elt.style.color="#b4b4b4" }; - let width=800 - let height=300 - - - let dots=[] + // See explanations function x(t) { return x0+v0*t } @@ -27,6 +26,7 @@ let projectile= function (node){ return height - (-1/2 * g * t**2 + v0 * t + y0) } + node.draw = function() { node.background(70); node.noStroke(); @@ -47,8 +47,10 @@ let projectile= function (node){ v0t.position(c.position().x+m.x,c.position().y+m.y) node.pop() }; + node.windowResized = function(){ v0t.position(c.position().x+m.x,c.position().y+m.y) + node.resizeCanvas(Math.min(window.innerWidth,width), height); } }; diff --git a/template.html b/template.html index cb27812..0f838b7 100644 --- a/template.html +++ b/template.html @@ -46,10 +46,8 @@

-
-
-
-
+
+