Filter löschen
Filter löschen

How to solve system of coupled ode's which are dynamically increasing in every time step using ode23t?

2 Ansichten (letzte 30 Tage)
I am solving a set of coupled differential equation using ode23t. There are three differential equations which needs to be solved. Writing here the algorithm in sequence. For a given time loop,
  1. First I want to solve , where are constants. Based on the value of X, I will calculate a parameter K. Let's say, , where w is some constant. This gives an integer value of K.
  2. Then, I will be solving , for all .
  3. Then using the values of calculated, I aim to solve, . f is some constant.
I am facing problem in implementing this in ode23t as number of differential equations increases in every time loop, owing to the value of K.

Antworten (1)

Kartik Saxena
Kartik Saxena am 12 Jun. 2024
Hi,
While calling the 'ode23t' function as given below:
[t, y] = ode23t(@odefun, tspan, y0);
we can dynamically update the size of the state vector and the equations in the 'odefun' function.
The size of the state vector 'y' and the number of equations can be dynamically adjusted based on the value of K. This allows us to handle the changing number of differential equations in each time loop.
Hope it helps!

Kategorien

Mehr zu Numerical Integration and Differential Equations finden Sie in Help Center und File Exchange

Produkte


Version

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by