Test runs

This commit is contained in:
2025-12-03 20:43:55 +01:00
parent 5dcb617991
commit ad33d47794
5 changed files with 3069 additions and 12 deletions

5
run1.m
View File

@@ -1,6 +1,6 @@
close all
result = readmatrix("SaveData/2025_12_03_16_23_RUN1_ADC.csv");
result = readmatrix("001rec_ADC_data.csv");
%result = result(14430:end, : );
result(:,14) = result(:,14)./2;
time = result(:,1);
@@ -17,7 +17,6 @@ scatter(time,weight,10)
title("load cell in Kg")
xlabel("Time in ms")
ylabel("KG")
xlim([1101179 1134450+5000])
for x = 1:7
figure()
@@ -25,7 +24,6 @@ for x = 1:7
title(sprintf("Pressure channel %d",x))
xlabel("Time in ms")
ylabel("Pressure")
xlim([1101179 1134450+5000])
end
for x = 1:6
@@ -34,5 +32,4 @@ for x = 1:6
title(sprintf("temperature channel %d",x))
xlabel("Time in ms")
ylabel("Temprature in C")
xlim([1101179 1134450+5000])
end