physics/projects/projectile/index.js

138 lines
2.8 KiB
JavaScript
Raw Normal View History

2021-10-03 18:41:52 +02:00
2021-10-03 21:34:25 +02:00
let t=0;
2021-10-06 15:32:23 +02:00
let vy0=50
let vx0=vy0
let x0=140
let y0=80
2021-10-03 21:34:25 +02:00
let g=9.81
2021-10-03 18:41:52 +02:00
2021-10-05 11:20:57 +02:00
let projectile= function (p){
2021-10-04 17:53:12 +02:00
let width=800
let height=300
2021-10-06 15:32:23 +02:00
let dots=[] // Dots that show the projectile path
2021-10-05 11:20:57 +02:00
let end=false;
2021-10-04 17:53:12 +02:00
2021-10-05 11:20:57 +02:00
p.setup = function() {
c=p.createCanvas(Math.min(window.innerWidth,width), height);
2021-10-05 20:12:35 +02:00
2021-10-06 15:32:23 +02:00
vy0t=p.createElement('span', '');
katex.render("v_0", vy0t.elt);
2021-10-05 09:26:35 +02:00
2021-10-05 11:20:57 +02:00
r=p.createElement('span', '');
2021-10-05 09:26:35 +02:00
katex.render("\\vec{r}(t)", r.elt);
2021-10-05 11:20:57 +02:00
vt=p.createElement('span', '');
2021-10-05 09:26:35 +02:00
katex.render("v(t)", vt.elt);
2021-10-05 15:50:11 +02:00
vi=p.createElement('span', '');
katex.render("\\vec{i}", vi.elt);
vj=p.createElement('span', '');
katex.render("\\vec{j}", vj.elt);
2021-10-03 18:41:52 +02:00
};
2021-10-06 15:32:23 +02:00
// See explanations in html
2021-10-05 11:20:57 +02:00
function xt(t) {
2021-10-06 15:32:23 +02:00
return x0+vx0*t
2021-10-03 18:41:52 +02:00
}
2021-10-05 11:20:57 +02:00
function yt(t) {
2021-10-06 15:32:23 +02:00
return height - (-1/2 * g * t**2 + vy0 * t + y0)
2021-10-03 18:41:52 +02:00
}
2021-10-06 15:32:23 +02:00
function vx(t) {
return vx0
2021-10-05 09:26:35 +02:00
}
2021-10-06 15:32:23 +02:00
function vy(t) {
return -g * t + vy0
}
2021-10-05 11:20:57 +02:00
let draw_vectors=function(x,y,skiparrow=false){
p.push()
p.stroke(199, 141, 107)
2021-10-06 15:32:23 +02:00
draw_arrow(p,x,y,x+vx(t),y-vy(t),vt,c,skiparrow)
2021-10-05 11:20:57 +02:00
p.stroke(200)
draw_arrow(p,x0,height-y0,x,y,r,c,skiparrow)
2021-10-06 15:32:23 +02:00
2021-10-05 15:50:11 +02:00
p.stroke(181, 107, 199)
2021-10-06 15:32:23 +02:00
draw_arrow(p,x0,height-y0,x0+vx0,height-(y0+vy0),vy0t,c,skiparrow)
2021-10-05 15:50:11 +02:00
p.stroke(121, 199, 107)
2021-10-05 20:12:35 +02:00
draw_arrow(p,x0,height-y0,x0,height-y0-50,vj,c,skiparrow,true)
2021-10-06 15:32:23 +02:00
2021-10-05 15:50:11 +02:00
p.stroke(199,119,107)
2021-10-05 20:12:35 +02:00
draw_arrow(p,x0,height-y0,x0+50,height-y0,vi,c,skiparrow)
2021-10-05 15:50:11 +02:00
2021-10-05 11:20:57 +02:00
p.pop()
}
2021-10-04 17:53:12 +02:00
2021-10-05 11:20:57 +02:00
p.draw = function() {
p.clear()
let x=xt(t)
let y=yt(t)
// Draw projectile and path
p.push()
p.noStroke()
p.fill(100)
dots.forEach((elt)=>{p.ellipse(elt[0],elt[1],5,5);})
p.fill(0)
p.ellipse(x,y,20,20);
p.pop()
// Draw vectors
draw_vectors(x,y)
2021-10-06 15:32:23 +02:00
p.push()
p.stroke(0)
p.ellipse(x0,height-y0,8)
p.pop()
2021-10-05 11:20:57 +02:00
// Check simulation state and update it
if(t>50 || (height-y0)<y){
2021-10-06 15:32:23 +02:00
end=true
p.noLoop()
2021-10-05 11:20:57 +02:00
}
2021-10-05 15:50:11 +02:00
// Update state
2021-10-05 11:20:57 +02:00
if(!end){
t+=0.1
dots.push([x,y])
2021-10-05 09:26:35 +02:00
}
2021-10-03 18:41:52 +02:00
};
2021-10-04 17:53:12 +02:00
2021-10-05 11:20:57 +02:00
p.windowResized = function(){
p.resizeCanvas(Math.min(window.innerWidth,width), height);
2021-10-04 10:32:14 +02:00
}
2021-10-03 18:41:52 +02:00
};
2021-10-03 21:34:25 +02:00
refresh=function(){
t=0
x0=parseFloat(app.x0)
y0=parseFloat(app.y0)
2021-10-06 15:32:23 +02:00
vx0=parseFloat(app.vx0)
vy0=parseFloat(app.vy0)
2021-10-03 21:34:25 +02:00
g=parseFloat(app.g)
p5Load()
}
project_init=function(){
app = new Vue({
el: '#app',
data :{
x0:x0,
y0:y0,
2021-10-06 15:32:23 +02:00
vy0:vy0,
vx0:vx0,
2021-10-03 21:34:25 +02:00
g:g
}
})
p5Load()
}