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_FL_1208(voltage)
names = ["Weg_FL", "Kraft_FL"];
kraft = -16339.86928 * voltage + 34173.20261;
weg = -2.875816993 * voltage + 6.04248366;
kraft = -16339.86928 * voltage/1000 + 34173.20261;
weg = -2.875816993 * voltage/1000 + 6.04248366;
end