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_RL(voltage)
names = ["Weg_RL", "Kraft_RL"];
kraft = -40677.9661 * voltage + 93769.49153;
weg = -5.254237288 * voltage + 12.21355932;
kraft = -40677.9661 * voltage/1000 + 93769.49153;
weg = -5.254237288 * voltage/1000 + 12.21355932;
end