2020-03-11 19:39:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2021-03-16 09:32:28 +01:00
|
|
|
#include <units/physical/si/density.h>
|
2020-03-11 19:39:23 +00:00
|
|
|
|
|
|
|
|
namespace units{
|
|
|
|
|
namespace experimental{
|
|
|
|
|
|
|
|
|
|
namespace density {
|
|
|
|
|
|
|
|
|
|
template<typename Rep = double>
|
2020-05-08 22:39:24 +02:00
|
|
|
using kg_per_m3 = units::physical::si::density<units::physical::si::kilogram_per_metre_cub, Rep>;
|
2020-03-11 19:39:23 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}} // units::experimental
|
|
|
|
|
|
|
|
|
|
|