#pragma once #include #include namespace kel { namespace lbm_type { struct meter { static constexpr std::string_view name = "meter_l"; static constexpr std::string_view short_name = "m_l"; }; struct second { static constexpr std::string_view name = "second_l"; static constexpr std::string_view short_name = "s_l"; }; } template using lbm_meter = unit>; template using lbm_second = unit>; template using lbm_velocity = unit, unit_component>; template using lbm_acceleration = unit, unit_component>; }