added missing SLS functions

This commit is contained in:
2025-09-23 15:55:13 +02:00
parent a259e3928e
commit 587c609542
7 changed files with 22 additions and 12 deletions

5
functions/SLS_RR.m Normal file
View File

@ -0,0 +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;
end