This commit is contained in:
2025-08-19 14:36:38 +02:00
parent 6b39e6ea17
commit d8306475ad
3 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,5 @@
function [names, weg, kraft] = SLS_FL(voltage)
names = ["Weg_FL", "Kraft_FL"];
kraft = (voltage/1000 - 1.969 - 2000 * (-0.306/5000)) / (-0.306/5000);
weg = (voltage/1000 - 1.969 - 0.38 * (-0.306/0.88)) /(-0.306/0.88);
end