You are on page 1of 1

clear all;

close all;
clc;

rpm=[800 1000 1500 1750 2500 3250 3750 4500 5250 5750 6200]
kgm=[11.63 14.32 28.64 57.29 48.70 46.27 43.35 37.40 31.37 27.77 25.41];

figure(1);

plot(rpm,kgm);
xlabel('Régimen (rpm)');
ylabel('kgm');
title('Graf.Par Motor');
grid;

clear all;
close all;
clc;

rpm=[800 1000 1500 1750 2500 3250 3750 4500 5250 5750 6200]
pot=[13 20 60 140 170 210 227 235 230 223 220]
figure(1);

plot(rpm,pot);
xlabel('Régimen (rpm)');
ylabel('Potencia(KW)');
title('Graf.Potencia');
grid;

You might also like