com.barrybecker4.simulation.common.PhysicsConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bb4-simulation Show documentation
Show all versions of bb4-simulation Show documentation
bb4-simulations java code.
/** Copyright by Barry G. Becker, 2000-2011. Licensed under MIT License: http://www.opensource.org/licenses/MIT */
package com.barrybecker4.simulation.common;
/**
* @author Barry Becker
*/
public class PhysicsConstants {
/** gravity in m/s^2 */
public static final double GRAVITY = 9.80;
/** atmospheric pressure = 1e5 N/m^2 or .1 g /(mm s^2) */
public static final double ATMOSPHERIC_PRESSURE = 0.90;
private PhysicsConstants() {}
}