Skip to content

Commit ba1ff1b

Browse files
committed
minor doc corrrections
1 parent a106c68 commit ba1ff1b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/src/index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ The package depends on [`ControlSystemsBase.jl`](https://github.com/JuliaControl
77
for the linear systems and [`JuMP.jl`](https://github.com/jump-dev/JuMP.jl) for the solving.
88

99
The objective is to provide a simple and clear framework to quickly design model predictive
10-
controllers (MPCs) in Julia, while keeping the flexibility for advanced optimization. Modern
11-
MPCs based on closed-loop state estimators are the main focus of the package, but classical
12-
approaches that rely on internal models are also possible. The `JuMP.jl` interface allows
13-
to easily test different solvers if the performance of the default settings is not
14-
satisfactory.
10+
controllers (MPCs) in Julia, while preserving the flexibility for advanced real-time
11+
optimization. Modern MPCs based on closed-loop state estimators are the main focus of the
12+
package, but classical approaches that rely on internal models are also possible. The
13+
`JuMP.jl` interface allows to easily test different solvers if the performance of the
14+
default settings is not satisfactory.
1515

1616
The documentation is divided in two parts:
1717

1818
- **[Manual](@ref man_lin)** — This section includes step-by-step guides to design
19-
predictive controllers or multiple case studies.
20-
- **[Functions](@ref func_sim_model)**This part contains the documentation of
21-
methods and types that are exported by the package. The "Internals" section provides
22-
implementation details of functions that are not exported.
19+
predictive controllers on multiple case studies.
20+
- **[Functions](@ref func_sim_model)**Documentation of methods and types exported by the
21+
package. The "Internals" section provides implementation details of functions that are
22+
not exported.
2323

2424
## Manual
2525

docs/src/manual/nonlinmpc.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ res = sim!(mpc, 65, [180.0], plant=plant, x0=zeros(plant.nx), x̂0=zeros(mpc.est
9292
plot(res)
9393
```
9494

95-
The controller seems robust enough to variations on ``K`` coefficient. Moreover, starting
96-
from this inverted position, the closed-loop response to a step disturbances of 10° on ``θ``
97-
is also satisfactory:
95+
The controller seems robust enough to variations on ``K`` coefficient. Starting from this
96+
inverted position, the closed-loop response to a step disturbances of 10° is also
97+
satisfactory:
9898

9999
```@example 1
100100
res = sim!(mpc, 65, [180.0], plant=plant, x0=[π, 0], x̂0=[π, 0, 0], y_step=[10])

0 commit comments

Comments
 (0)