00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _ElectricPotential_cc
00026 #define _ElectricPotential_cc
00027
00028 #include "Quantity/Variable.h"
00029
00030 #include "PhysicalQuantities/ElectricPotential.h"
00031
00032 namespace quantity {
00033 namespace electricPotential {
00034
00035
00036
00037
00038 template<> const std::string Volts::Basename = "Volt";
00039 template<> const std::string Volts::Basesymbol = "V";
00040 template<> const bool Volts::SI = true;
00041
00042
00043
00044 template<> const std::string Gau::Namestring = "Gau";
00045 template<> const std::string Gau::Symbolstring = "erg/Fr";
00046 template<> const bool Gau::SI = false;
00047
00048
00049
00050 template<> const std::string MeanInternationalVolt::Namestring
00051 = "MeanInternationalVolt";
00052 template<> const std::string MeanInternationalVolt::Symbolstring = "";
00053 template<> const bool MeanInternationalVolt::SI = false;
00054
00055
00056
00057 template<> const std::string USInternationalVolt::Namestring
00058 = "USInternationalVolt";
00059 template<> const std::string USInternationalVolt::Symbolstring = "";
00060 template<> const bool USInternationalVolt::SI = false;
00061
00062
00063
00064 template<> const std::string Atomic::Namestring = "Atomic";
00065 template<> const std::string Atomic::Symbolstring = "e/4pi epsilon0 a0";
00066 template<> const bool Atomic::SI = false;
00067
00068 template<> const double Standard<Volts>::ratio = 1.0;
00069 template<> const bool Standard<Volts>::exact = true;
00070
00071 template<> const double Standard<Gau>::ratio = 299.792458;
00072 template<> const bool Standard<Gau>::exact = true;
00073
00074 template<> const double Standard<MeanInternationalVolt>::ratio
00075 = 1.00034;
00076 template<> const bool Standard<MeanInternationalVolt>::exact = true;
00077
00078 template<> const double Standard<USInternationalVolt>::ratio = 1.00033;
00079 template<> const bool Standard<USInternationalVolt>::exact = true;
00080
00081 template<> const double Standard<Atomic>::ratio = 27.2114;
00082 template<> const bool Standard<Atomic>::exact = false;
00083
00084 }
00085
00086 template<> const std::string
00087 Name<electricPotential::Quantity>::String = "electric potential";
00088 template<>
00089 const std::string Symbol<electricPotential::Quantity>::String = "E";
00090
00091 }
00092
00093 #endif