/* Example programs from the book Scientific and Engineering Programming in C++: An Introduction with Advanced Techniques and Examples, Addison-Wesley, 1994. (c) COPYRIGHT INTERNATIONAL BUSINESS MACHINES CORPORATION 1994. ALL RIGHTS RESERVED. See README file for further details. */ template const SIConstants::Mass SIConstants::kilogram = 1; template const SIConstants::Length SIConstants::meter = 1; template const SIConstants::Force SIConstants::newton = 1; template const SIConstants::Time SIConstants::second = 1; template const SIConstants::Acceleration SIConstants::meter_per_sec2 = 1; template const SIConstants::Acceleration SIConstants::g = 9.80665;