MIDA 2 Flashcards
[Intro] What is the difference between White-Box and Black-Box modeling?
- White-box uses first-principle equations and requires knowledge of the system’s physical parameters.
- Black-box relies on data collected from experiments and doesn’t require knowledge of the underlying physical system
[Intro] What is Software Sensing?
It’s an algorithmic approach to estimate un-measurable variables using indirect measurements.
[Intro] What are some advantages and disadvantages to Software Sensing?
+ Measures variables otherwise unmeasurable
+ Reduces the need for physical sensors, saving costs.
+ Eliminates maintenance and fault risks of physical sensors.
- Development costs for designing and calibrating the algorithm
- Potential for higher variance in sensing errors due to indirect measurement.
[Ch1] What are the three main mathematical representations of discrete-time linear systems?
1.- State Space (Internal representation)
2.- Transfer Function (external representation)
3.- Impulse Response (I.R.)
[Ch1] What equations define the state-space representation?
- State Equation: x(t+1) = Fx(t) + Gu(t)
- Output Equation: y(t) = Hx(t) + Du(t)
[Ch1] What do the matrices F, G, H, and D represent in state-space representation?
- F: State Matrix
- G: Input Matrix
- H: Output Matrix
- D: Direct Transmission Matrix (0 for strictly proper systems.
[Ch1] What’s the formula to transform from State-Space to Transfer Function representation?
W(z) = H(z I - F)^-1 G
[Ch1] What is the Z-transform? What does it mean?
The Z-transform converts discrete-time signals into the transform domain, simplifying the analysis of linear systems. It is crucial for moving between IR and TF representations..
[Ch1] How is the impulse response representation defined?
It represents the output y(t) as the convolution of the input u(t) with the system’s impulse response:
y(t) = SUMk=0∞ w(k)u(t-k)
with w(k) being the impulse response
[Ch1] Why is the impulse response representation rarely used in practice?
It requires all values of the impulse response to be noise-free and fully known, often impractical.
[Ch1] How can the eigenvalues of the state matrix F determine system stabillity in state-space representation?
- If all eigenvalues of F lie within the unit circle in the complex plane, the system is asymptotically stable.
- Eigenvalues on the unit circle indicate simple stability.
- Eigenvalues outside the unit circle indicate instability.
[Ch1] What’s the difference between asymptotical stability and simple stability?
Asy. stability guarantees that the system returns to it’s equilibrium after disturbances. Simple stability does not guarantee convergence, posing risk in dynamic systems.
[Ch1] How does the concept of “Strictly Proper” systems relate to the impulse response?
Strictly proper systems ensure that the output doesn’t respond instantaneously to an input jump. This reflects physical system behavior without abrupt changes.
[Ch1] What’s the formula to transfrom from a state-space representation to an Impulse Response?
y(t)= H F^(t-1) G for t>0
[Ch1] Why is transformation from impulse response to state-space representation challenging (not recommended)?
It requires reconstructing state matrices from measured impulse responses, which are sensitive to noise and involves complex calculations.