我正在尝试自学 Boost Unit,但在使用单位作为浮动替代品时遇到了一些问题。
我正在使用自定义的道尔顿/amu 单位进行计算。我的旧代码就像
float baseMass = 14.95; float totalMass = baseMass * 12;
但是,对单位做同样的事情(dalton_t 是数量的 typedef)
dalton_t baseMass = 14.95 * units::dalton_mass; dalton_t totalMass = baseMass * 12;
提供错误“二进制表达式的无效操作数”。这是否意味着 12 应该是某种无量纲单位?
我还使用质量作为无序集中的键。
typedef boost::unordered_set<types::dalton_t> DaltonSet; DaltonSet dSet; dalton_t testMass(13384.384 * phobos::units::dalton_mass); dSet.insert(testMass);
这会提供一个错误“No matching function for call to hash_value”,即使它是在单元的头文件中定义的。
对其中任何一个有什么想法吗?
单位头文件如下:
#ifndef UNITS_H_
#define UNITS_H_
#include <boost/functional/hash.hpp>
#include <boost/units/conversion.hpp>
#include <boost/units/io.hpp>
#include <boost/units/pow.hpp>
#include <boost/units/systems/si.hpp>
#include <boost/units/systems/si/prefixes.hpp>
namespace phobos {
namespace units {
using boost::units::mass_dimension;
using boost::units::pow;
using boost::units::root;
using boost::units::quantity;
using boost::units::unit;
struct amu_mass_base_unit :
boost::units::base_unit<amu_mass_base_unit, mass_dimension, 1> {
static std::string name() { return "atomic mass unit"; }
static std::string symbol() { return "u"; }
};
typedef boost::units::make_system<amu_mass_base_unit>::type amu_system;
typedef unit<mass_dimension, amu_system> amu_mass;
static const amu_mass dalton_mass;
} /* namespace units */
namespace types {
using boost::units::quantity;
typedef quantity<units::amu_mass, float> amu_t;
typedef amu_t dalton_t;
} /* namespace types */
} /* namespace phobos */
BOOST_UNITS_DEFINE_CONVERSION_FACTOR(phobos::units::amu_mass_base_unit,
boost::units::si::kilogram_base_unit,
float, 1.66053892173e-27);
std::size_t hash_value(const phobos::types::amu_t &amu) {
return boost::hash_value(amu.value());
}
#endif /* UNITS_H_ */
先感谢您!
亚当