Effacer les filtres
Effacer les filtres

solution of coupled first order odes numerically

1 vue (au cours des 30 derniers jours)
Sattik Basu
Sattik Basu le 20 Juin 2018
Commenté : Sattik Basu le 26 Juin 2018
eqn1 = coeff1*var1 + coeff2*diff(var1) + coeff3*var2 +coeff4*diff(var2) == 0;
eqn2 = coeff5*var1 + coeff6*diff(var1) + coeff7*var2 +coeff8*diff(var2) == 0;
bc1 = var1(0) == const1
bc2 = var2(0) == const2
i have all the coeffs defined as function handles. dsolve doesnt give solution as no explicit solution is present. How do i solve them numerically?
This can be easily done in Mathematica with NDSolve. However, i cant seem to think how i can appl oe45 or whatever is needed.

Réponse acceptée

Torsten
Torsten le 21 Juin 2018
Use the mass matrix option of the ODE solvers.
Or explicitly solve your equations for diff(var1) and diff(var2) (2 linear equations in 2 unknowns).
Best wishes
Torsten.
  1 commentaire
Sattik Basu
Sattik Basu le 26 Juin 2018
I ended up converting the system in a matrix form and solved them hassle free. This worked great with initial values.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by