필터 지우기
필터 지우기

I have to try this code on Matlab's successful work. I want to try the subject in connection with external Arduino

조회 수: 1 (최근 30일)
I have to try this code on MATLAB's successful work. I want to try the subject in connection with an external Arduino. how can i do it pleas ??
The théori code is :
clear all;
close all
%%Load Data
load('IdealContollerData.mat')
load('OverdampedContollerData.mat')
load('UnderdampedContollerData.mat')
time = linspace(0,20,length(distance3));
%%Ideal Case
input = 20.*(time==0)+30.*((time~=0) & (time<=10)) + 20.*(time>10);
Gp = tf(0.617,[1 0 0]);
Gc = tf([1.4 0.6],1);
sys = feedback(Gp*Gc, 1);
figure
plot(time, input, 'g')
hold on
plot(time, distance,'r')
input2 = 10.*(time<=10);
y = lsim(sys,input2,time);
plot(time,y+20)
xlabel('Time (s)')
ylabel('Distance (cm)')
ylim([10,40])
title('Ideal Input & Response')
legend('Input','Experimental Response','Theoretical Response')
hold off
%%Underdamped Case
input = 20.*(time==0)+30.*((time~=0) & (time<=10)) + 20.*(time>10);
Gp = tf(0.617,[1 0 0]);
Gc = tf([1.3 0.8],1);
sys = feedback(Gp*Gc, 1);
figure
plot(time, input, 'g')
hold on
plot(time, distance2,'r')
input2 = 10.*(time<=10);
y = lsim(sys,input2,time);
plot(time,y+20)
xlabel('Time (s)')
ylabel('Distance (cm)')
ylim([10,40])
title('Underdamped Input & Response')
legend('Input','Experimental Response','Theoretical Response')
hold off
%%Overdamped Case
input = 20.*(time==0)+30.*((time~=0) & (time<=10)) + 20.*(time>10);
Gp = tf(0.617,[1 0 0]);
Gc = tf([2.5 0.3],1);
sys = feedback(Gp*Gc, 1);
figure
plot(time, input, 'g')
hold on
plot(time, distance3,'r')
input2 = 10.*(time<=10);
y = lsim(sys,input2,time);
plot(time,y+20)
xlabel('Time (s)')
ylabel('Distance (cm)')
ylim([10,40])
title('Overdamped Input & Response')
legend('Input','Experimental Response','Theoretical Response')
hold off

답변 (0개)

카테고리

Help CenterFile Exchange에서 Arduino Hardware에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by