Effacer les filtres
Effacer les filtres

Symbolic Toolbox Exponential Equations

19 vues (au cours des 30 derniers jours)
PB75
PB75 le 2 Avr 2020
Commenté : Ameer Hamza le 6 Avr 2020
Hi Everyone
Getting started with symbolic tool box and live editor.
Trying to enter the below Wiebe Function equation using symbolic toolbox so i can find the derivative and build up the governing equations for the system.
However, getting stuck on simply entering the equation with the syms function, doh, as the e term has (t/td) to the power m+1, can you help with how i actually code this in the live editor so i can use and later solve for dxWiebe Function Equation
Thanks everyone.;-)
My attempt at creating x
syms x exp t t_d m
t_d = sym('t_d')
x = 1 - exp(-6.908*(t/t_d))^(m+1)

Réponses (1)

Ameer Hamza
Ameer Hamza le 2 Avr 2020
Modifié(e) : Ameer Hamza le 2 Avr 2020
exp is a built-in function. Don't define it as a variable.
syms x t t_d m
x = 1 - exp(-6.908*(t/t_d)^(m+1));
dxdt = diff(x,t)
Result
dxdt =
(1727*exp(-(1727*(t/t_d)^(m + 1))/250)*(t/t_d)^m*(m + 1))/(250*t_d)
If you use live script, it will also render the equation to be displayed properly
  6 commentaires
PB75
PB75 le 6 Avr 2020
Thanks
Ameer Hamza
Ameer Hamza le 6 Avr 2020
Glad to be of help.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by