Sie sind auf Seite 1von 7

Universidad Nacional del Callao

Facultad de Ingeniera Elctrica y Electrnica


Escuela profesional de Ingeniera Elctrica

"UNIVERSIDAD NACIONAL DEL CALLAO"


ARROYO RAMIREZ CHRISTOPHER ADRIAN
Cdigo de estudiante: 1113120094
Correo electrnico: adrianmsn_genius@hotmail.com

Curso:

METODOS NUMERICOS

Ciclo- Grupo horario:

5TO CICLO- 01T

Profesor Gua:
ING. MENDOZA APASA

Universidad Nacional del Callao


Facultad de Ingeniera Elctrica y Electrnica
Escuela profesional de Ingeniera Elctrica

PROBLEMA N 1:

Solucion:

t0 = 1984; P0 = 480;
a =0.034;
t =(1984:1:1999)';
P =P0*exp(a*(t-t0));
disp('PICO ENCONTRADO - GW')
disp([t, P])
plot(t, P), grid
xlabel('AO'), ylabel('PROMEDIO DE DEMANDA POR POTENCIA (GW)')
title('\bfPRoblema N1-ARROYO RAMIREZ CHRISTOPHER', 'FontName','Courier',
'FontSize', 14)
POTENCIA_1999 =P0*exp(a*(1999 - t0))
/////////////////////
PICO ENCONTRADO - GW
1.0e+003 *
1.9840
1.9850
1.9860
1.9870
1.9880
1.9890

0.4800
0.4966
0.5138
0.5315
0.5499
0.5689

Universidad Nacional del Callao


Facultad de Ingeniera Elctrica y Electrnica
Escuela profesional de Ingeniera Elctrica

1.9900
1.9910
1.9920
1.9930
1.9940
1.9950
1.9960
1.9970
1.9980
1.9990

0.5886
0.6090
0.6300
0.6518
0.6744
0.6977
0.7218
0.7468
0.7726
0.7993

POTENCIA_1999 =
799.3398
///////////////////////////////

Grafica:

Universidad Nacional del Callao


Facultad de Ingeniera Elctrica y Electrnica
Escuela profesional de Ingeniera Elctrica

PROBLEMA N 2:

Solucion:

EL INDICE DE CRECIMIENTO DE a
2 P0 P0 e10 a
ln 2 10 a

EL VALOR DE a OBTENIDO ES:


a

ln 2
0.0693 6.93%
10

Universidad Nacional del Callao


Facultad de Ingeniera Elctrica y Electrnica
Escuela profesional de Ingeniera Elctrica

PROBLEMA N 3:

Solucion:
Desarrollo:
data=[0 1 8; 1 2 6; 2 3 4; 3 4 2; 4 5 6; 5 6 12; 6 7 16; 7 8 14; 8 9 10; 9 10 4; 10 11 6; 11 12 8]
///////////////
data =
0

12

16

Universidad Nacional del Callao


Facultad de Ingeniera Elctrica y Electrnica
Escuela profesional de Ingeniera Elctrica

14

10

10

10

11

11

12 8

/////////////////////////////////////////
data=[0 1 8; 1 2 6; 2 3 4; 3 4 2; 4 5 6; 5 6 12; 6 7 16; 7 8 14; 8 9 10; 9 10 4; 10 11 6; 11 12 8]
P= data(:,3);
Dt=data(:,2)-data(:,1);
W=P'*Dt;
pavg=W/sum(Dt)
peak=max(P)
lf=(pavg/peak)*100
f=data(:,2);
barcycle(data);
xlabel('TIEMPO (MESES)'), ylabel('P (MW)')
title('\bfPROBLEMA N 3 ARROYO RAMIREZ CHRISTOPHER', 'FontName','Courier',
'FontSize', 14)
/////////
text(6.2, 8.5, 'pavg = 8')
text(6.2, 7, 'peak = 16')
text(6.2, 5.5, 'lf = 50')
grid

Funcion :
function barcycle( data )
L=length(data);
tt = [data(:,1) data(:,2)];
t = sort(reshape(tt, 1, 2*L));
PP=data(:,3);
for n = 1:L
P(2*n-1)=PP(n);
P(2*n)=PP(n);
End
plot(t,P)
end

Universidad Nacional del Callao


Facultad de Ingeniera Elctrica y Electrnica
Escuela profesional de Ingeniera Elctrica

Grafica:

Das könnte Ihnen auch gefallen