Gyroscope simulation using State space
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Saleem Jallet
am 16 Dez. 2022
Kommentiert: Sam Chak
am 20 Dez. 2022
I have to simulate a gyroscope using Statespace or TF but I dont get how!
I need to solve this task with the C lvl which is the SS model

0 Kommentare
Akzeptierte Antwort
Sam Chak
am 20 Dez. 2022
You didn't provide the transfer function of the gyroscope with sensor dynamics.
In short, you need to provide the mathematical part for the modeling problem, so that we can show you the technical part of MATLAB. Anyhow, here is an example of simulation:
If a system is given by
, where
,
,
then the transfer function probably looks like this:
s = tf('s');
Gp = 1/(s^2 + 2*s + 1)
step(Gp, 10)
The state-space model can be obtained by making a conversion from the transfer function.
sys = ss(Gp)
As expected, the simulation of the state-space should produce the same result as the step response of 
step(sys)
3 Kommentare
Sam Chak
am 20 Dez. 2022
Based on the "possible sensor parameters", it suggests that a 1st-order system:
s = tf('s');
H = 10/(0.2*s + 1)
From the "possible noise parameters", the hints suggest the Gaussian Noise Model.
You can check the following:
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Electrical Block Libraries finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

