JuliaControl / JuliaControl/RobustAndOptimalControl.jl
νgap barycenter synthesis
Nobody has claimed this yet.
- Dominant language
- Julia
- Stars
- 67
- Forks
- 10
- Avg merge
- 1h 21m
- Merged PRs (30d)
- 3
Description
For an uncertain system Gu represented by multiple models (e.g., Particles), one could design a controller that is guaranteed to be stabilizing for all plants in Gu by first finding a nominal plant which is the νgap barycenter of Gu (central plant in the νgap metric), and then constrain the control design to have NCF margin greater than the largest νgap between the nominal plant and any realization in Gu.
To compute the νgap barycenter, see https://research.abo.fi/ws/portalfiles/portal/25079057/HaggblomFinal.pdf
A simple first approach would be to use a user-selected nominal model, or the coefficient mean. For a small number of models, one can compute all pairwise νgaps and select the model that has the smallest maximum. For sampled models, this might do well, but it might do poorly for a set of "corner models".
The νgap computation is somewhat expensive, but not prohibitive.
julia> P1 = ssrand(5,5,20);
julia> P2 = ssrand(5,5,20);
julia> @btime nugap($P1, $P2)
3.417 ms (2893 allocations: 4.09 MiB)
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reading the linked ν-gap barycenter paper and inspecting the existing nugap functionality demonstrated in the issue. Compare the suggested user-selected, coefficient-mean, and pairwise minimax approaches, including the corner-model concern. Done means providing a defined barycenter-synthesis path for uncertain model sets with appropriate validation of the resulting nominal model.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100