fixed voltage multiplier

This commit is contained in:
2025-09-23 17:42:36 +02:00
parent e43132aa4a
commit 0fc24f7f6e
4 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
function [names, weg, kraft] = SLS_RR(voltage)
names = ["Weg_RR", "Kraft_RR"];
kraft = -36036.03604 * voltage + 112126.1261;
weg = -4.624624625 * voltage + 14.48285285;
kraft = -36036.03604 * voltage/1000 + 112126.1261;
weg = -4.624624625 * voltage/1000 + 14.48285285;
end