Effacer les filtres
Effacer les filtres

how to incorporate input in state space model while solving it by ode45

1 vue (au cours des 30 derniers jours)
jasaswini mohanty
jasaswini mohanty le 5 Mai 2013
i want to solve state space model of a bldc motor by ode 45. it is working without input(with initial condition) but, now i want to incorporate the input. how to do that? my program is-
function xdot=fcn1(t,x)
xdot(1)=-573.77*x(1)-0.5128* fcnfa(x(5))*x(4);
xdot(2)=-573.77*x(2)-0.5128* fcnfb(x(5))*x(4);
xdot(3)=-573.77*x(3)-0.5128* fcnfc(x(5))*x(4);
xdot(4)=2564* fcnfa(x(5))*x(1)+2564* fcnfb(x(5))*x(2)+2564* fcnfc(x(5))*x(3)-10*x(4);
xdot(5)=2*x(4);
xdot=xdot';
the fcnfa, fcnfb,fcnfc are some functions that are already defined.
and the inputs are 3 phase voltage each 120 degree apart and load torque. so, how to pass these inputs into the program. will making these inputs global will work? if yes, then what will be the command of ode45 in that case?

Réponses (1)

Jan
Jan le 5 Mai 2013
I'm not sure what you mean by "inputs". Perhaps you are looking for: http://www.mathworks.com/matlabcentral/answers/1971.

Catégories

En savoir plus sur Oil, Gas & Petrochemical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by