Converts a value given in base unit of a quantity into the display unit of a quantity
Examples
simPath <- system.file("extdata", "simple.pkml", package = "ospsuite")
sim <- loadSimulation(simPath)
par <- getParameter("Organism|Liver|Volume", sim)
# Converts the value in base unit (1L) to display unit
valueInMl <- toDisplayUnit(par, 1)
valuesInDisplayUnit <- toDisplayUnit(par, c(1, 5, 5))