Currently some hard unit checks which have to be adapted for doses per bodyweight.
try:
(dose.units/self.Q_("liter")).to(concentration.units)
except DimensionalityError as err:
warnings.warn(f"dose.units/liter ({dose.units}/liter) must be convertible "
f"to concentration ({concentration.units}). Check that dose "
f"units are correct.")
raise err
Currently some hard unit checks which have to be adapted for doses per bodyweight.