Está en la página 1de 10

GRAFICO N° 01:

SCRIPT
x=[0:2:18];
y=[0, 0.33, 4.13, 6.29, 6.85, 11.19, 13.19, 13.96, 16.33, 18.17];
plot(x,y)
title('Experimento de laboratorio 1')
xlabel('Tiempo, seg')
ylabel('Distancia, pies')
grid on

Experimento de laboratorio 1
20

18

16

14
Distancia, pies

12

10

0
0 2 4 6 8 10 12 14 16 18
Tiempo, seg
GRAFICO N° 02:

SCRIPT
FOSFORO=[4.5; 8; 5.5; 39; 19.5; 17.5; 21];
CLOROFILA=[0.8; 2; 1.2; 11; 4.4; 3.8; 5.5];
A=[4.5 1; 8 1; 5.5 1; 39 1; 19.5 1; 17.5 1; 21 1];
((A'*A)^-1)*A'*CLOROFILA
plot(FOSFORO,CLOROFILA)
title('CONCENTRACION DE FOSFORO Y CLOROFILA')
xlabel('FOSFORO')
ylabel('CLOROFILA')
grid on

CONCENTRACION DE FOSFORO Y CLOROFILA


12

10

8
CLOROFILA

0
0 5 10 15 20 25 30 35 40
FOSFORO
GRAFICO N° 03

SCRIPT
z=[0.5; 1; 2; 3; 4; 5; 6; 7; 8; 9]
d=[7; 5.2; 3.8; 3.2; 2.5; 2.1; 1.8; 1.5; 1.2; 1.1]
A=[0.5; 1; 2; 3; 4; 5; 6; 7; 8; 9]
((A'*A)^-1)*A'*d
plot(z,d)
title('POBLACION INICIAL')
xlabel('t, HR')
ylabel('p, T')
grid on

POBLACION INICIAL
7

5
p, T

1
0 1 2 3 4 5 6 7 8 9
t, HR
GRAFICO N° 04

SCRIPT
x=0:pi/100:2*pi;
yl=cos(x*4);
plot(x,yl)
y2=sin(x)
hold on
plot(x, y2)

0.8

0.6

0.4

0.2

-0.2

-0.4

-0.6

-0.8

-1
0 1 2 3 4 5 6 7
GRAFICO N°05:
SCRIPT

x=[1:10];
y=[ 58.5, 63.8, 64.2, 67.3, 71.5, 88.3, 90.1, 90.6, 89.5, 90.4];
plot(x,y,'ok')

95

90

85

80

75

70

65

60

55
1 2 3 4 5 6 7 8 9 10
GRAFICO N°06:
SCRIPT

x=[1:10];
y=[ 58.5, 63.8, 64.2, 67.3, 71.5, 88.3, 90.1, 90.6, 89.5, 90.4];
plot(x,y,'ok')
plot(x,y,'-sg',x,y*2,'--xr',x,y/2,'-.dm')

200

180

160

140

120

100

80

60

40

20
1 2 3 4 5 6 7 8 9 10
GRAFICO N°07:

SCRIPT:
x=[1:10];
y=[ 58.5, 63.8, 64.2, 67.3, 71.5, 88.3, 90.1, 90.6, 89.5, 90.4];
plot(x,y,'ok')
plot(x,y,'-sg',x,y*2,'--xr',x,y/2,'-.dm')
title('EFECTO EN EL CRECIMIENTO BACTERIANO')
xlabel('Bacterias ppm')
ylabel('pH')
legend('pH=6', 'pH=7', 'pH=4')
text(6,190,'Crecimiento Optimo')
text(4,100,'Concentracion Toxica')
text(4,145,'pH=7')
text(3,78,'pH=6')
text(2,40,'pH=4')

EFECTO EN EL CRECIMIENTO BACTERIANO


200
Crecimiento Optimo pH=6
180 pH=7
pH=4
160

pH=7
140

120
pH

100 Concentracion Toxica

80 pH=6

60

40 pH=4

20
1 2 3 4 5 6 7 8 9 10
Bacterias ppm
GRAFICO N°08:
SCRIPT

%EJEMPLO 5.1
%Con la ecuación Clausius-Clapeyron, encontar la
%presion de vapor de saturación para agua a diferentes
%temperaturas
TF=[-60:10:120]; %Define matriz temp en F
TK=(TF + 459.6)/1.8; %Convierte temp a K
Delta_H=2.45e6; %Define calorlatentet de vaporizacion
R_air=461; %Define constante gas ideal para el aire
%Calcula las presiones de vapor
Vapor_Pressure=6.11*exp((Delta_H/R_air)*(1/273 - 1./TK));4
%Depliega los resultados en una tabla
my_results=[TF',Vapor_Pressure']
%Crea una grafica x-y
plot(TF,Vapor_Pressure)
title('Comportamiento Clausius-Clapeyron')
xlabel('Temperatura, F')
ylabel('Presion de vapor de saturación, mbar')

Comportamiento Clausius-Clapeyron
120
Presion de vapor de saturación, mbar

100

80

60

40

20

0
-60 -40 -20 0 20 40 60 80 100 120
Temperatura, F
GRAFICO N°09:

SCRIPT
%EJEMPLO 5.1
%Con la ecuación Clausius-Clapeyron, encontar la
%presion de vapor de saturación para agua a diferentes
%temperaturas
TF=[-60:10:120]; %Define matriz temp en F
TK=(TF + 459.6)/1.8; %Convierte temp a K
Delta_H=2.45e6; %Define calorlatentet de vaporizacion
R_air=461; %Define constante gas ideal para el aire
%Calcula las presiones de vapor
Vapor_Pressure=6.11*exp((Delta_H/R_air)*(1/273 - 1./TK));4
%Depliega los resultados en una tabla
my_results=[TF',Vapor_Pressure']
%Crea una grafica x-y
plot(TF,Vapor_Pressure)
plot(TF,Vapor_Pressure,':sb')
title('Comportamiento Clausius-Clapeyron')
xlabel('Temperatura, F')
ylabel('Presion de vapor de saturación, mbar')
legend('punto declive')
text(80,15,'Punto Declive')
Comportamiento Clausius-Clapeyron
120
punto declive

Presion de vapor de saturación, mbar


100

80

60

40

20
Punto Declive

0
-60 -40 -20 0 20 40 60 80 100 120
Temperatura, F

También podría gustarte