100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Ejercicios de aproximación por Runge Kutta $15.49   Add to cart

Other

Ejercicios de aproximación por Runge Kutta

 2 views  0 purchase
  • Course
  • Institution

Método de Runge Kutta de aproximación numérica para el desarrollo de ejercicios con código en Octave

Preview 4 out of 32  pages

  • April 18, 2024
  • 32
  • 2022/2023
  • Other
  • Unknown
avatar-seller
Curso: Métodos Numéricos


Tarea 5




ℎ = 0.1
𝑦 ′ = 3 cos(𝑦 − 5𝑥) , 𝑦(0) = 0

Planteamiento:
El método de Runge Kutta es aplicable en el momento de realizar las
aproximaciones numéricas de las soluciones de ecuaciones diferenciales de
primer grado cuando estas cuentan con condiciones iniciales, de esta forma se
establece un intervalo bajo el cual se deberá proceder con las iteraciones y
obtención de valores y un valor de una constante h que indicará la distancia que
existe entre uno y otro valor dentro del intervalo principal para la obtención de
una tabla de valores, con el fin de aplicar este método como primer paso se
establece el código en el programa octave, mismo que nos responderá con una
tabla de datos para la variable independiente x y la dependiente y, además de
que se graficará la curva procedente de la ecuación ingresada en el intervalo
dado.
Resolución:
Código en Octave “rungeKutta”
f = @(x,t) 3*cos(t-5*x);
xi = input("ingrese el valor inicial xi: ");
xf = input("ingrese el valor final xf: ");
h = input("ingrese el valor de paso h: ");
function [x, y] = rungeKutta(f, xi , xf, h)
x = xi:h:xf; % [ xi , xi=xi+h... xf ]
y(1) = 0; %asignando el primer valor al vector
for i=1:length(x)-1
k1 = f(x(i), y(i));
k2 = f(x(i) + (h/2), y(i) + ((k1*h)/2));

, k3 = f(x(i) + (h/2), y(i) + ((k2*h)/2));
k4 = f(x(i) + h, y(i)+ k3*h);
y(i+1) = y(i) + (1/6)*(k1 + 2*k2 + 2*k3 + k4)*h;
endfor
endfunction
[x, y] = rungeKutta(f, xi, xf, h);
fprintf("%s\t %s\n", "x" ,"y");
for i=1:length(x)
fprintf("%.4f\t", x(i));
fprintf("%.4f", y(i));
fprintf("\n");
endfor
plot(x, y,"r*")
xlabel("Eje x")
ylabel("Eje y")
title("grafica runge - kutta "

,Conclusión:
Se puede concluir que este método es bastante efectivo realizarlo en un
programa matemático e iterativo, ya que, como se puede observar, cuando el
intervalo es grande y el valor de h es pequeño, el numero de pares ordenados
que se consideran en la tabla de valores resultante es bastante grande, por ende,
se recomienda el uso del programa para la resolución del ejercicio.




Planteamiento:

, Con el fin de dar solución al ejercicio, se emplearán los métodos vistos en clases
sincrónicas y solicitados por el enunciado con el fin de encontrar una
aproximación a la solución numérica de la ecuación diferencial dada.
Resolución:
𝟏
a) 𝒚′ = 𝒕(𝒚𝟐 +𝒚) , 𝒚(𝟏) = 𝟐; 𝒕 ∈ [𝟏, 𝟑]

Método de Euler
𝑦(1) = 𝑦0 = 2
121
𝑦(1.1) = 𝑦1 = 2 + 0.1𝑓(1,2) = = 2.016
60
𝑦(1.2) = 𝑦2 = 2.016 + 0.1𝑓(1.1,2.016) = 2.0316
𝑦(1.3) = 𝑦3 = 2.0316 + 0.1𝑓(1.2,2.0316) = 2.0451
𝑦(1.4) = 𝑦4 = 2.0451 + 0.1𝑓(1.3,2.0451) = 2.0575





Método de Heun
𝑦(1) = 𝑦0 = 2
241
𝑦1∗ = 2 + 0.1𝑓(1,2) = = 2.016
120
0.1
𝑦(1.1) = 𝑦1 = 2 + [𝑓(1,2) + 𝑓(1.1,2.016)] = 2.0158
2

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller paulaestrada. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $15.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

85169 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$15.49
  • (0)
  Add to cart