00001
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _Acceleration_cc
00025 #define _Acceleration_cc
00026
00027 #include "Quantity/Variable.h"
00028
00029 #include "PhysicalQuantities/Acceleration.h"
00030
00031 namespace Quantities {
00032 namespace AccelerationUnits {
00033
00034
00035
00036
00037 template<> const double Gal::StandardRatio = 1.0e-2;
00038 template<> const std::string Gal::Namestring = "gal";
00039 template<> const std::string Gal::Symbolstring = "Gal";
00040 template<> const bool Gal::SI = false;
00041 template<> const bool Gal::Exact = true;
00042
00043
00044
00045 template<> const double StandardAccelerationOfFreeFall::StandardRatio
00046 = 9.80665;
00047 template<> const
00048 std::string StandardAccelerationOfFreeFall::Namestring
00049 = "standardaccelerationoffreefall";
00050 template<> const
00051 std::string StandardAccelerationOfFreeFall::Symbolstring = "g";
00052 template<> const bool StandardAccelerationOfFreeFall::SI = false;
00053 template<> const bool StandardAccelerationOfFreeFall::Exact = true;
00054
00055 }
00056
00057 const std::string Name<AccelerationQuantities>::String = "acceleration";
00058 const std::string Symbol<AccelerationQuantities>::String = "a";
00059
00060 }
00061
00062 #endif