update pendulum
This commit is contained in:
parent
5a7d797c16
commit
bfe99d9bc6
|
@ -151,7 +151,8 @@ function centerOfMass(samples) {
|
||||||
|
|
||||||
function simulate()
|
function simulate()
|
||||||
{
|
{
|
||||||
acc = -m*g*L*sin(theta) / inertia - 2 * vel;
|
acc = -m*g*L*sin(theta) / inertia;
|
||||||
|
if(abs(theta) > 0.0001) acc -= 2 * vel;
|
||||||
console.log(degrees(theta));
|
console.log(degrees(theta));
|
||||||
vel += acc * deltaTime / 10000;
|
vel += acc * deltaTime / 10000;
|
||||||
var dtheta = theta;
|
var dtheta = theta;
|
||||||
|
|
Loading…
Reference in a new issue