ece6554:project_ductedfan
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ece6554:project_ductedfan [2019/03/20 11:22] – [Equations of Motion] pvela | ece6554:project_ductedfan [2024/08/20 21:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 10: | Line 10: | ||
\begin{split} | \begin{split} | ||
m \ddot q & = -d \dot q + R(\theta) f - m \vec g \\ | m \ddot q & = -d \dot q + R(\theta) f - m \vec g \\ | ||
- | J \ddot \theta & = r\, \pi_1(f) | + | J \ddot \theta & = r\, \pi_2(f) |
\end{split} | \end{split} | ||
\end{equation} | \end{equation} | ||
Line 27: | Line 27: | ||
\begin{split} | \begin{split} | ||
m \ddot q & = -d \dot q + R(\theta) R(-\psi) \begin{bmatrix} 0 \\ \tau \end{bmatrix} - m \vec g \\ | m \ddot q & = -d \dot q + R(\theta) R(-\psi) \begin{bmatrix} 0 \\ \tau \end{bmatrix} - m \vec g \\ | ||
- | J \ddot \theta & = r\, \pi_1 ( e_1(-\psi) \tau ) | + | J \ddot \theta & = r\, \pi_2 ( e_1(-\psi) \tau ) |
\end{split} | \end{split} | ||
\end{equation} | \end{equation} | ||
Line 34: | Line 34: | ||
\begin{split} | \begin{split} | ||
m \ddot q & = -d \dot q + R(\theta) e_2(-\psi) \tau - m \vec g \\ | m \ddot q & = -d \dot q + R(\theta) e_2(-\psi) \tau - m \vec g \\ | ||
- | J \ddot \theta & = r\, \pi_1 ( e_2(\psi) \tau ) = - r \sin(\psi) \tau | + | J \ddot \theta & = - r \sin(\psi) \tau |
\end{split} | \end{split} | ||
\end{equation} | \end{equation} | ||
+ | where $e_2(\cdot)$ is the second column of the rotation matrix $R(\cdot)$. | ||
+ | This system is underactuated in that there are three state coordinates and only two control coordinates. Usually this system, and other aerial systems with similar properties, are reduced to output tracking systems where the angular coordinate is not perfectly tracked. | ||
+ | ==== Parameters and Limits ==== | ||
- | ===== Activities ====== | + | ^ Parameter ^ Value ^ |
+ | | $m$ | 4.25 kg | | ||
+ | | $d$ | 0.1 kg/sec | | ||
+ | | $g$ | 9.8 m/sec | | ||
+ | | $r$ | 0.26 m | | ||
+ | | $J$ | 0.0475 kg m$^2$ | | ||
+ | |||
+ | The thrust vector angle range should be $\psi \in [-\pi/3, \pi/3]$. Make sure to implement these limits in the simulation. | ||
+ | |||
+ | ===== Implementation ===== | ||
+ | |||
+ | Functional code stubs for the implementation are provided in the {{ ECE6554: | ||
+ | ====== Activities | ||
----------------------- | ----------------------- | ||
These activities sketch what should be done, but do not necessarily indicate what should be turned in. By now you should have seen enough solution postings and possibly also read enough papers on control that you should have an understanding of what should be turned in. This would include the mathematics or derivations, | These activities sketch what should be done, but do not necessarily indicate what should be turned in. By now you should have seen enough solution postings and possibly also read enough papers on control that you should have an understanding of what should be turned in. This would include the mathematics or derivations, | ||
- | ==== Step 1: Linear Control | + | ===== Step 1: Linear |
- | Linearize the equations of motion about hover at $\theta | + | ==== Linear Control Model ==== |
- | ==== Step 2: Model Mismatch and Adaptive Control ==== | + | Linearize the equations of motion about hover at $\theta = 0$ (radians), so that the linearized state and control inputs have an equiblirium at the origin with zero linearized control input. The primary objective is to track a translational signal while staying close to hover. Establish performance specifications for the system and design a linear feedback controller that will stabilize the system and meet the performance specifications. Make sure to not be too aggressive regarding the lateral (or $x$ coordinate) stabilization rate. It will lead to large pitch rates and angles, which will violate the linearity assumption. |
+ | |||
+ | Turn in the linearized equations and the linearized control law for achieving the desired closed-loop response. | ||
+ | |||
+ | ==== Model Mismatch and Adaptive Control ==== | ||
Modify by 10-20% some of the model parameters of the system and compare the outcomes under a traditional linear controller. | Modify by 10-20% some of the model parameters of the system and compare the outcomes under a traditional linear controller. | ||
- | Here, you should consider two cases. | + | Here, you should consider two cases. |
+ | |||
+ | **Considerations: | ||
+ | |||
+ | Likewise, for better tracking some feedforward term can be added that looks a lot like a reference signal. The feedforward term to add is the acceleration needed to track the desired height of the ducted fan. It is recovered from the second derivative of the desired height (the $y$ coordinate). Adding this term will remove some of the gain/phase differences between the desired trajectory and the model reference trajectory, which means that the ducted fan will better track the desired trajectory. | ||
+ | |||
+ | ===== Step 2: Nonlinear Controller ===== | ||
+ | |||
+ | Rearrange the equations to see if they can be put into a form that looks more like a linear system plus a non-linear defect. Design a controller with nonlinear cancelling terms. | ||
+ | Compare this controller with the purely linear approach and quantify performance differences if any. Do not consider parameter mismatch, just solve this as a standard control problem. | ||
+ | |||
+ | //Tip:// The ducted fan is similar to the bi-rotor but has the added challenge of being non-minimum phase. The same transformation of state described in the bi-rotor project should apply to the ducted fan. You can use it as one approach to creating an adaptive controller for the nonlinear system. | ||
+ | |||
+ | ===== Step 3: Nonlinear Controller with Adaptation ===== | ||
+ | |||
+ | Now consider parameter mismatch and augment the nonlinear controller to be an adaptive one. Repeat the same procedure as for Step 1 with parameter mismatch and demonstrate improved performance relative to the static nonlinear controller design. | ||
+ | |||
+ | //Note:// One thing to be careful about is the initial transient experienced by the adaptive controllers. | ||
- | ==== Step 3: Nonlinear Controller | + | ====== |
+ | ------------------------ | ||
- | Rearrange | + | Because there are more control signals relative to the typical homework assignments, |
- | ==== Step 4: Nonlinear Control Lyapunov Approach, the PWMN Controller ==== | + | The report should include the appropriate controlled equations of motion for the different realizations (linear, nonlinear, transformed nonlinear if done, etc). It should cover the controller design and control synthesis for static and adaptive cases. If using adaptive controllers covered in class, then only their setup and final adaptive laws should be covered. This should be the case if following the Steps. If attempting an adaptive structures slightly different from what was covered in the lectures, then its derivation should be included; this most likely won't be the case unless you do not follow the Steps. |
+ | Just like in homeworks, attention should be paid to highlighting how the static controller fails to perform under incorrect parameters estimates. Otherwise, the Final Deliverable assignment item should cover what's needed. | ||
- | ==== Step 5: Performance Reference Adaptive Control ===== | + | When possible, try to stick to canonical control forms. |
- | ===== References ====== | + | ====== References |
------------------------ | ------------------------ | ||
There are some references below whose equations might differ from the ones above. | There are some references below whose equations might differ from the ones above. |
ece6554/project_ductedfan.1553095359.txt.gz · Last modified: 2024/08/20 21:38 (external edit)