Merge remote-tracking branch 'origin/master'

This commit is contained in:
Dane Sabo 2024-10-31 11:27:24 -04:00
commit 26ae12907f
6 changed files with 112 additions and 4 deletions

View File

@ -56,5 +56,5 @@
"lastExportDirectory": {
"linux": "/home/danesabo/Downloads"
},
"lastExportType": "Markdown"
"lastExportType": "Latex"
}

View File

@ -4,5 +4,8 @@
"zoteroGroups": [],
"renderCitations": true,
"renderCitationsReadingMode": true,
"renderLinkCitations": true
"renderLinkCitations": true,
"pathToBibliography": "/home/danesabo/Documents/Dane's Vault/201 Metadata/My Library.bib",
"enableCiteKeyCompletion": true,
"cslStyleURL": "https://raw.githubusercontent.com/citation-style-language/styles/master/ieee.csl"
}

View File

@ -0,0 +1,55 @@
---
date: 2024-10-31
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/10 October/2024-10-30]] | [[1 Daily Notes/2024/10 October/2024-11-01 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-10-30]]
# Tasks for today
1. GSA meeting for halloween event
2. Seminar
3. Group Meeting
4. Mini Project
5. Qualifying Exam
## Due
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Scheduled
```dataview
task
where
scheduled
and scheduled <= date(this.date)
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Tasks in Progress
```dataview
task
where
status != "-"
and status = "/"
sort due asc
group by file.folder
```
## Completed
```dataview
task
where
completed
and completion = date(this.date)
sort due asc
group by file.folder
```
# Calendar Tasks

View File

@ -0,0 +1,50 @@
---
date: 2024-11-01
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/10 October/2024-10-31]] | [[1 Daily Notes/2024/10 October/2024-11-04 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-10-30]]
# Tasks for today
## Due
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Scheduled
```dataview
task
where
scheduled
and scheduled <= date(this.date)
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Tasks in Progress
```dataview
task
where
status != "-"
and status = "/"
sort due asc
group by file.folder
```
## Completed
```dataview
task
where
completed
and completion = date(this.date)
sort due asc
group by file.folder
```
# Calendar Tasks

View File

@ -6,5 +6,5 @@ endDate: 2024-10-30
completed: false
type: single
---
- [ ] Homework 6 📅 2024-10-29
- [x] Homework 6 📅 2024-10-29 ✅ 2024-10-30
#Homework

View File

@ -40,7 +40,7 @@ Where $\Delta$ is a variable stable transfer function with $||\Delta||_\infty <
The 'disk' part of the multiplicative disk uncertainty comes from analysis in the complex domain, specifically looking at the Nyquist Stability Criterion. Stability according to this criterion is determined when the loop gain $L$ of a system does not pass through the point -1 during a sweep of all frequencies on the imaginary access. For robust stability, we examine if a system is still stable when calculating the Nyquist plot of $W_2 L$. If it is, then all perturbed plants $\tilde P = (1+\Delta W_2)P$ are also stable.
This is useful for us. If we can find an uncertainty transfer function $W_2$ that we are satisfied with, and pair it with a design of a controller that maintains the Nyquist criterion, then we know our system is robust to any perturbations captured by $||\Delta||_\infty <1$. Robust performance can be achieved using a similar process @doyleFeedbackControlTheory2009 .
This is useful for us. If we can find an uncertainty transfer function $W_2$ that we are satisfied with, and pair it with a design of a controller that maintains the Nyquist criterion, then we know our system is robust to any perturbations captured by $||\Delta||_\infty <1$. Robust performance can be achieved using a similar process @doyleGuaranteed2009.
$\Delta$ is almost always considered a free variable transfer function. Since $||\Delta||_\infty < 1 \text{ } \forall \omega$, $\Delta$ will not decrease the minimum robustness margin. This is fine for developing a controller, but when it comes to actually verifying robustness of a controller implementation, $\Delta$ cannot be a variable. To create a plant to simulate a perturbed plant, $\Delta$ must have an expression.