Steady States for dynamic equations

Hello all! I have a set of dynamic equations that need to be solved. Can matlab be used to calculate the steady state values and if yes, how do i go by it. Thank you

Réponses (1)

Torsten
Torsten le 17 Juin 2023
Déplacé(e) : Torsten le 17 Juin 2023

0 votes

Use "fsolve" together with the function you used to describe your dynamical system.

4 commentaires

Bismark
Bismark le 17 Juin 2023
With fsolve how do i add the time dependent variables.? For instance k(+1)
If your dynamic system reads
dy/dt = f(y)
your steady-state equations read
0 = f(y)
Use "fsolve" to solve this system for y to get the steady-state variables.
Bismark
Bismark le 17 Juin 2023
Modifié(e) : Torsten le 17 Juin 2023
K = (1-a)K(-1)+I
It looks like this sir
syms a K I
eqn = K == (1-a)*K+I
eqn = 
solve(eqn, K)
ans = 

Connectez-vous pour commenter.

Produits

Version

R2023a

Question posée :

le 17 Juin 2023

Modifié(e) :

le 17 Juin 2023

Community Treasure Hunt

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

Start Hunting!

Translated by