Test runs
This commit is contained in:
16
run2.m
16
run2.m
@@ -1,9 +1,9 @@
|
||||
close all
|
||||
|
||||
result = readmatrix("SaveData/2025_12_03_13_26_COLD_FIRE_ADC.csv");
|
||||
result = readmatrix("SaveData/2025_12_03_17_40_RUN2_ADC.csv");
|
||||
%result = result(14430:end, : );
|
||||
result(:,14) = result(:,14)./2;
|
||||
time = result(:,1);
|
||||
time = result(:,1)./1000;
|
||||
|
||||
temp = 0.000111 .* result(:,4:9) + 2.31991;
|
||||
|
||||
@@ -15,24 +15,24 @@ weight = -1.166759307845543e-04 .* 0.5.*(load_cell(:,1) + load_cell(:,2)) + 4.97
|
||||
figure()
|
||||
scatter(time,weight,10)
|
||||
title("load cell in Kg")
|
||||
xlabel("Time in ms")
|
||||
xlabel("Time in s")
|
||||
ylabel("KG")
|
||||
xlim([1038760 1082100+5000])
|
||||
xlim([878.207 920.111+5.000])
|
||||
|
||||
for x = 1:7
|
||||
figure()
|
||||
scatter(time,pressure(:,x),10)
|
||||
title(sprintf("Pressure channel %d",x))
|
||||
xlabel("Time in ms")
|
||||
xlabel("Time in s")
|
||||
ylabel("Pressure")
|
||||
xlim([1038760 1082100+5000])
|
||||
xlim([878.207 920.111+5.000])
|
||||
end
|
||||
|
||||
for x = 1:6
|
||||
figure()
|
||||
scatter(time,temp(:,x),10)
|
||||
title(sprintf("temperature channel %d",x))
|
||||
xlabel("Time in ms")
|
||||
xlabel("Time in s")
|
||||
ylabel("Temprature in C")
|
||||
xlim([1038760 1082100+5000])
|
||||
xlim([878.207 920.111+5.000])
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user