From 5fcdcaf9e6705be70848ddf923b691da631de69f Mon Sep 17 00:00:00 2001 From: zepumph Date: Tue, 7 Sep 2021 10:49:32 -0600 Subject: [PATCH] min of gravity range to 1 m/s/s, https://github.com/phetsims/projectile-motion/issues/263 --- js/common/ProjectileMotionConstants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/common/ProjectileMotionConstants.js b/js/common/ProjectileMotionConstants.js index a03f0826..42a7bcf9 100644 --- a/js/common/ProjectileMotionConstants.js +++ b/js/common/ProjectileMotionConstants.js @@ -49,7 +49,7 @@ const ProjectileMotionConstants = { PROJECTILE_DRAG_COEFFICIENT_RANGE: new Range( 0.04, 1.2 ), // teardrop to almost hemisphere shape ALTITUDE_RANGE: new Range( 0, 5000 ), // meters, max is arbitrary but in upper stratosphere - GRAVITY_RANGE: new Range( 5, 20 ), // in m/s/s + GRAVITY_RANGE: new Range( 1, 20 ), // in m/s/s // projectile and trajectory AIR_RESISTANCE_ON_PATH_COLOR: 'rgb( 252, 40, 252 )',