SlideShare una empresa de Scribd logo
1 de 20
Descargar para leer sin conexión
UNIVERSIDAD NACIONAL PEDRO RUIZ GALLO
FACULTAD DE INGENIERÍA QUÍMICA E
INDUSTRIAS ALIMENTARIAS
CINETICA ENZIMATICA
“PROGRAMACION EN MATLAB”
DOCENTE
Ing. ADA BARTUREN QUISPE
AUTORES
Cubas Castillo Luis David
Lambayeque – Perú
2019
CINETICA ENZIMATICA
La cinética de crecimiento de Acetobacter Cloacae en un medio de
crecimiento con glicerol como sustrato limitante
DATOS DE
ENTRADA
Xo(g/L) 0.2
So(g/L) 3
Xa(g/L) 0
Sa(g/L) 3
Vol(L) 100
t(h) 0-3
Δt 0.006
ECUACIONES
𝑈 =
𝑈𝑚𝑎𝑥 ∗ 𝑆
𝐾𝑠 + 𝑆
𝑑𝑥
𝑑𝑡
= 𝑈 ∗ 𝑋 + [
𝐹( 𝑋𝑎 − 𝑋)
𝑉𝑜 + 𝐹 ∗ 𝑡
𝑑𝑠
𝑑𝑡
=
𝑈 ∗ 𝑋
𝑌 𝑋
𝑆⁄
+ [
𝐹( 𝑆𝑎 − 𝑆)
𝑉𝑜 + 𝐹 ∗ 𝑡
𝑋1 = 𝑋 𝑂 +
𝑑𝑥
𝑑𝑡
∗ ∆𝑡 ; (BIOMASA)
𝑆1 = 𝑆 𝑂 +
𝑑𝑆
𝑑𝑡
∗ ∆𝑡 ; (SUSTRATO)
𝑃(
𝑔
𝑙 ∗ ℎ⁄ ) =
𝑋(
𝑔
𝑙⁄ )
𝑡(ℎ)
PARÁMETROS
CINÉTICOS
Umax(h-1) 0.85
Ks(g/L) 0.0123
Yx/s
(gBiomasa/gGlicerol) 0.53
PROGRAMACION EN MATLAB
clear,clc
disp('*cinetica enzimatica*')
disp('*datos de entrada*')
Xo=input('entrada biomasa'); %(gr/lt)
So=input('entrada sustrato'); %(gr/lt)
Xa=input('biomasa a'); %(gr/lt)
Sa=input('sustrato a'); %(gr/lt)
dt=input('diferencia de tiempo'); %horas
Vo=input('volumen'); %(litros)
disp('*parametros cineticos*')
Umax=input('velocidad maxima'); %(horas^-1)
Ks=input('constante sustrato'); %(gr/lt)
Yxs=input('rendimiento'); %(gr Biomasa/ gr Sustrato)
f=input('alimentacion');
if f==0
disp('batch')
elseif f~=0
disp('feed batch')
end
tf=input('tiempo de reaccion'); %(horas)
to=0;
Uo=(Umax*So)/(Ks+So); %u en tiempo 0
dxdto=Uo*Xo+(f*(Xa-Xo)/(Vo+f*to)); %dxdt en tiempo 0
dsdto=-Uo*Xo/Yxs+(f*(Sa-So)/(Vo+f*to)); %dsdt en tienpo 0
po=Xo/to;
t1=to+dt;
X1=Xo+dxdto*dt; %X1 en tiempo de 0 a 3 horas
S1=So+dsdto*dt; %S1 en tiempo de 0 a 3 horas
U1=Umax*S1/(Ks+S1) %U en cada intervalo de tiempo
dxdt1=U1*X1+(f*(Xa-X1)/(Vo+f*t1)); %DXDT en cada intervalo de tiempo
dsdt1=-U1*X1/Yxs+(f*(Sa-S1)/(Vo+f*t1)); %DSDT en cada intervalo de tiempo
p1=X1/t1;
t(1)=t1;
X(1)=X1;
S(1)=S1;
U(1)=U1;
dxdt(1)=dxdt1;
dsdt(1)=dsdt1;
P(1)=p1;
for i=1
to(i);
Xo(i);
So(i);
Uo(i);
dxdto(i);
dsdto(i);
po(i);
end
for i=1:500
t(i+1)=t(i)+dt;
X(i+1)=X(i)+dxdt(i)*dt;
S(i+1)=S(i)+dsdt(i)*dt;
U(i+1)=Umax*S(i+1)/(Ks+S(i+1));
dxdt(i+1)=U(i+1)*X(i+1)+(f*(Xa-X(i+1))/(Vo+f*t1));
dsdt(i+1)=-U(i+1)*X(i+1)/Yxs+(f*(Sa-S(i+1))/(Vo+f*t1));
p(i+1)=X(i+1)/t(i+1);
end
%plot(X,t,'-k',S,t,'--r');legend('Biomasa','Sustrato');ylabel('Tiempo')
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento
Cinetica de crecimiento

Más contenido relacionado

Último

ANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZ
ANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZ
ANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZ
gustavoiashalom
 

Último (20)

Aportes a la Arquitectura de Le Corbusier y Mies Van der Rohe
Aportes a la Arquitectura de Le Corbusier y Mies Van der RoheAportes a la Arquitectura de Le Corbusier y Mies Van der Rohe
Aportes a la Arquitectura de Le Corbusier y Mies Van der Rohe
 
27311861-Cuencas-sedimentarias-en-Colombia.ppt
27311861-Cuencas-sedimentarias-en-Colombia.ppt27311861-Cuencas-sedimentarias-en-Colombia.ppt
27311861-Cuencas-sedimentarias-en-Colombia.ppt
 
Tippens fisica 7eDIAPOSITIVAS TIPENS Tippens_fisica_7e_diapositivas_33.ppt
Tippens fisica 7eDIAPOSITIVAS TIPENS Tippens_fisica_7e_diapositivas_33.pptTippens fisica 7eDIAPOSITIVAS TIPENS Tippens_fisica_7e_diapositivas_33.ppt
Tippens fisica 7eDIAPOSITIVAS TIPENS Tippens_fisica_7e_diapositivas_33.ppt
 
Análisis_y_Diseño_de_Estructuras_con_SAP_2000,_5ta_Edición_ICG.pdf
Análisis_y_Diseño_de_Estructuras_con_SAP_2000,_5ta_Edición_ICG.pdfAnálisis_y_Diseño_de_Estructuras_con_SAP_2000,_5ta_Edición_ICG.pdf
Análisis_y_Diseño_de_Estructuras_con_SAP_2000,_5ta_Edición_ICG.pdf
 
“Análisis comparativo de viscosidad entre los fluidos de yogurt natural, acei...
“Análisis comparativo de viscosidad entre los fluidos de yogurt natural, acei...“Análisis comparativo de viscosidad entre los fluidos de yogurt natural, acei...
“Análisis comparativo de viscosidad entre los fluidos de yogurt natural, acei...
 
Determinación de espacios en la instalación
Determinación de espacios en la instalaciónDeterminación de espacios en la instalación
Determinación de espacios en la instalación
 
PRESENTACION DE LAS PLAGAS Y ENFERMEDADES DEL PALTO
PRESENTACION DE LAS PLAGAS Y ENFERMEDADES DEL PALTOPRESENTACION DE LAS PLAGAS Y ENFERMEDADES DEL PALTO
PRESENTACION DE LAS PLAGAS Y ENFERMEDADES DEL PALTO
 
CONEXIONES SERIE, PERALELO EN MÓDULOS FOTOVOLTAICOS.pdf
CONEXIONES SERIE, PERALELO EN MÓDULOS FOTOVOLTAICOS.pdfCONEXIONES SERIE, PERALELO EN MÓDULOS FOTOVOLTAICOS.pdf
CONEXIONES SERIE, PERALELO EN MÓDULOS FOTOVOLTAICOS.pdf
 
ANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZ
ANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZ
ANALISIS Y DISEÑO POR VIENTO, DE EDIFICIOS ALTOS, SEGUN ASCE-2016, LAURA RAMIREZ
 
Lineamientos del Plan Oferta y Demanda sesión 5
Lineamientos del Plan Oferta y Demanda sesión 5Lineamientos del Plan Oferta y Demanda sesión 5
Lineamientos del Plan Oferta y Demanda sesión 5
 
semana-08-clase-transformadores-y-norma-eep.ppt
semana-08-clase-transformadores-y-norma-eep.pptsemana-08-clase-transformadores-y-norma-eep.ppt
semana-08-clase-transformadores-y-norma-eep.ppt
 
Estadística Anual y Multianual del Sector Eléctrico Ecuatoriano
Estadística Anual y Multianual del Sector Eléctrico EcuatorianoEstadística Anual y Multianual del Sector Eléctrico Ecuatoriano
Estadística Anual y Multianual del Sector Eléctrico Ecuatoriano
 
Sistemas de Ecuaciones no lineales-1.pptx
Sistemas de Ecuaciones no lineales-1.pptxSistemas de Ecuaciones no lineales-1.pptx
Sistemas de Ecuaciones no lineales-1.pptx
 
2. Cristaloquimica. ingenieria geologica
2. Cristaloquimica. ingenieria geologica2. Cristaloquimica. ingenieria geologica
2. Cristaloquimica. ingenieria geologica
 
ESPECIFICACIONES TECNICAS COMPLEJO DEPORTIVO
ESPECIFICACIONES TECNICAS COMPLEJO DEPORTIVOESPECIFICACIONES TECNICAS COMPLEJO DEPORTIVO
ESPECIFICACIONES TECNICAS COMPLEJO DEPORTIVO
 
ELASTICIDAD PRECIO DE LA DEMaaanANDA.ppt
ELASTICIDAD PRECIO DE LA DEMaaanANDA.pptELASTICIDAD PRECIO DE LA DEMaaanANDA.ppt
ELASTICIDAD PRECIO DE LA DEMaaanANDA.ppt
 
Six Sigma Process and the dmaic metodo process
Six Sigma Process and the dmaic metodo processSix Sigma Process and the dmaic metodo process
Six Sigma Process and the dmaic metodo process
 
2024 GUIA PRACTICAS MICROBIOLOGIA- UNA 2017 (1).pdf
2024 GUIA PRACTICAS MICROBIOLOGIA- UNA 2017 (1).pdf2024 GUIA PRACTICAS MICROBIOLOGIA- UNA 2017 (1).pdf
2024 GUIA PRACTICAS MICROBIOLOGIA- UNA 2017 (1).pdf
 
Sistema de lubricación para motores de combustión interna
Sistema de lubricación para motores de combustión internaSistema de lubricación para motores de combustión interna
Sistema de lubricación para motores de combustión interna
 
Minería convencional: datos importantes y conceptos
Minería convencional: datos importantes y conceptosMinería convencional: datos importantes y conceptos
Minería convencional: datos importantes y conceptos
 

Destacado

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Destacado (20)

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 

Cinetica de crecimiento

  • 1. UNIVERSIDAD NACIONAL PEDRO RUIZ GALLO FACULTAD DE INGENIERÍA QUÍMICA E INDUSTRIAS ALIMENTARIAS CINETICA ENZIMATICA “PROGRAMACION EN MATLAB” DOCENTE Ing. ADA BARTUREN QUISPE AUTORES Cubas Castillo Luis David Lambayeque – Perú 2019
  • 2. CINETICA ENZIMATICA La cinética de crecimiento de Acetobacter Cloacae en un medio de crecimiento con glicerol como sustrato limitante DATOS DE ENTRADA Xo(g/L) 0.2 So(g/L) 3 Xa(g/L) 0 Sa(g/L) 3 Vol(L) 100 t(h) 0-3 Δt 0.006 ECUACIONES 𝑈 = 𝑈𝑚𝑎𝑥 ∗ 𝑆 𝐾𝑠 + 𝑆 𝑑𝑥 𝑑𝑡 = 𝑈 ∗ 𝑋 + [ 𝐹( 𝑋𝑎 − 𝑋) 𝑉𝑜 + 𝐹 ∗ 𝑡 𝑑𝑠 𝑑𝑡 = 𝑈 ∗ 𝑋 𝑌 𝑋 𝑆⁄ + [ 𝐹( 𝑆𝑎 − 𝑆) 𝑉𝑜 + 𝐹 ∗ 𝑡 𝑋1 = 𝑋 𝑂 + 𝑑𝑥 𝑑𝑡 ∗ ∆𝑡 ; (BIOMASA) 𝑆1 = 𝑆 𝑂 + 𝑑𝑆 𝑑𝑡 ∗ ∆𝑡 ; (SUSTRATO) 𝑃( 𝑔 𝑙 ∗ ℎ⁄ ) = 𝑋( 𝑔 𝑙⁄ ) 𝑡(ℎ) PARÁMETROS CINÉTICOS Umax(h-1) 0.85 Ks(g/L) 0.0123 Yx/s (gBiomasa/gGlicerol) 0.53
  • 3. PROGRAMACION EN MATLAB clear,clc disp('*cinetica enzimatica*') disp('*datos de entrada*') Xo=input('entrada biomasa'); %(gr/lt) So=input('entrada sustrato'); %(gr/lt) Xa=input('biomasa a'); %(gr/lt) Sa=input('sustrato a'); %(gr/lt) dt=input('diferencia de tiempo'); %horas Vo=input('volumen'); %(litros) disp('*parametros cineticos*') Umax=input('velocidad maxima'); %(horas^-1) Ks=input('constante sustrato'); %(gr/lt) Yxs=input('rendimiento'); %(gr Biomasa/ gr Sustrato) f=input('alimentacion'); if f==0 disp('batch') elseif f~=0 disp('feed batch') end tf=input('tiempo de reaccion'); %(horas) to=0; Uo=(Umax*So)/(Ks+So); %u en tiempo 0 dxdto=Uo*Xo+(f*(Xa-Xo)/(Vo+f*to)); %dxdt en tiempo 0 dsdto=-Uo*Xo/Yxs+(f*(Sa-So)/(Vo+f*to)); %dsdt en tienpo 0 po=Xo/to; t1=to+dt; X1=Xo+dxdto*dt; %X1 en tiempo de 0 a 3 horas S1=So+dsdto*dt; %S1 en tiempo de 0 a 3 horas U1=Umax*S1/(Ks+S1) %U en cada intervalo de tiempo dxdt1=U1*X1+(f*(Xa-X1)/(Vo+f*t1)); %DXDT en cada intervalo de tiempo dsdt1=-U1*X1/Yxs+(f*(Sa-S1)/(Vo+f*t1)); %DSDT en cada intervalo de tiempo p1=X1/t1; t(1)=t1; X(1)=X1; S(1)=S1; U(1)=U1; dxdt(1)=dxdt1; dsdt(1)=dsdt1; P(1)=p1; for i=1 to(i); Xo(i); So(i); Uo(i); dxdto(i); dsdto(i); po(i); end for i=1:500 t(i+1)=t(i)+dt; X(i+1)=X(i)+dxdt(i)*dt; S(i+1)=S(i)+dsdt(i)*dt; U(i+1)=Umax*S(i+1)/(Ks+S(i+1)); dxdt(i+1)=U(i+1)*X(i+1)+(f*(Xa-X(i+1))/(Vo+f*t1));