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

5
functions/SLS_FR.m Normal file
View File

@ -0,0 +1,5 @@
function [names, weg, kraft] = SLS_FR(voltage)
names = ["Weg_FR", "Kraft_FR"];
kraft = (voltage/1000 - 2.384 - 2000 * (-0.287/5000)) / (-0.287/5000);
weg = (voltage/1000 - 2.384 - 0.38 * (-0.287/0.86)) /(-0.287/0.86);
end