From 2ac145b3bb6d2de3887ab08e0cf26423b5e6c5ee Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 25 Feb 2026 20:33:36 +0100 Subject: Changes to run, reworking meta reporting for easier estimation of runtime parameters --- lib/core/c++/converter.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/core/c++/converter.hpp') diff --git a/lib/core/c++/converter.hpp b/lib/core/c++/converter.hpp index 5c19c68..4370a2c 100644 --- a/lib/core/c++/converter.hpp +++ b/lib/core/c++/converter.hpp @@ -50,6 +50,14 @@ public: return second_conv_*saw::data>{1.0}; } + auto delta_v() const { + return (meter_conv_ / second_conv_) * saw::data>{1.0}; + } + + auto delta_a() const { + return (meter_conv_ / (second_conv_*second_conv_)) * saw::data>{1.0}; + } + saw::data> meter_si_to_lbm(const saw::data>& m_si) const { return m_si / meter_conv_; } -- cgit v1.2.3