linearization problem Linear Parameter Varying (LPV) approximation of Simmechanics model

Hi guys,
I am trying to get the Linear Parameter Varying model of my simmechanics model but encountering a problem. Actually, my simmechanics system has 20 states and during the design phase i need all of the states but after applying linearization process, the outcome of the
linsys = linearize(mdl, op, io);
code line reduces the states to 10. My question is how could I avoid the state reduction ? Because it is vital to get the linearized system with 20 states with original number of the nonlinear one...
Thanks in advance...
Mert...

 採用された回答

Sebastian Castro
Sebastian Castro 2015 年 10 月 23 日
The linearize function can take as a 4th argument a set of linearization options.
Does the following work for your model?
>> options = linearizeOptions('BlockReduction','off');
>> linsys = linearize(sys,op,io,options)
- Sebastian

1 件のコメント

mert onkol
mert onkol 2015 年 10 月 27 日
Thank you very much Sebastian. Gracias. it is working

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeTrimming and Linearization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by