In boost units, I usually assign values by multiplying with one of the static consts:
e.g.
using namespace boost::units;
quantity<si::angular_velocity> av = 0.5 * si::radians_per_second;
But how can I do it when there is no multiplier const defined?
e.g. This doesn't compile because boost::units::si::radians_per_second_per_second isn't defined.
quantity<si::angular_acceleration> aa = 0.5 * si::radians_per_second_per_second;