1
1
"""
2
- get_linearization_func(NT, f!, h!, nu, nx, ny, nd, p) -> linfunc!
2
+ get_linearization_func(NT, f!, h!, nu, nx, ny, nd, p, backend ) -> linfunc!
3
3
4
4
Return the `linfunc!` function that computes the Jacobians of `f!` and `h!` functions.
5
5
6
6
The function has the following signature:
7
7
```
8
- linfunc!(xnext, y, A, Bu, C, Bd, Dd, x, u, d, cst_x, cst_u, cst_d) -> nothing
8
+ linfunc!(xnext, y, A, Bu, C, Bd, Dd, backend, x, u, d, cst_x, cst_u, cst_d) -> nothing
9
9
```
10
- and it should modifies in-place all the arguments before `x`. The `cst_x`, `cst_u`, `cst_d`
11
- and are `DifferentiationInterface.Constant` objects with the linearization points.
10
+ and it should modifies in-place all the arguments before `backend`. The `backend` argument
11
+ is an `AbstractADType` backend from `DifferentiationInterface`. The `cst_x`, `cst_u` and
12
+ `cst_d` are `DifferentiationInterface.Constant` objects with the linearization points.
12
13
"""
13
- function get_linearization_func (NT, f!, h!, nu, nx, ny, nd, p)
14
+ function get_linearization_func (NT, f!, h!, nu, nx, ny, nd, p, backend )
14
15
f_x! (xnext, x, u, d) = f! (xnext, x, u, d, p)
15
16
f_u! (xnext, u, x, d) = f! (xnext, x, u, d, p)
16
17
f_d! (xnext, d, x, u) = f! (xnext, x, u, d, p)
17
18
h_x! (y, x, d) = h! (y, x, d, p)
18
19
h_d! (y, d, x) = h! (y, x, d, p)
19
- backend = AutoForwardDiff ()
20
20
strict = Val (true )
21
21
xnext = zeros (NT, nx)
22
22
y = zeros (NT, ny)
@@ -31,7 +31,7 @@ function get_linearization_func(NT, f!, h!, nu, nx, ny, nd, p)
31
31
Bd_prep = prepare_jacobian (f_d!, xnext, backend, d, cst_x, cst_u; strict)
32
32
C_prep = prepare_jacobian (h_x!, y, backend, x, cst_d ; strict)
33
33
Dd_prep = prepare_jacobian (h_d!, y, backend, d, cst_x ; strict)
34
- function linfunc! (xnext, y, A, Bu, C, Bd, Dd, x, u, d, cst_x, cst_u, cst_d)
34
+ function linfunc! (xnext, y, A, Bu, C, Bd, Dd, backend, x, u, d, cst_x, cst_u, cst_d)
35
35
# all the arguments before `x` are mutated in this function
36
36
jacobian! (f_x!, xnext, A, A_prep, backend, x, cst_u, cst_d)
37
37
jacobian! (f_u!, xnext, Bu, Bu_prep, backend, u, cst_x, cst_d)
@@ -183,10 +183,11 @@ end
183
183
function linearize_core! (linmodel:: LinModel , model:: SimModel , x0, u0, d0)
184
184
xnext0, y0 = linmodel. buffer. x, linmodel. buffer. y
185
185
A, Bu, C, Bd, Dd = linmodel. A, linmodel. Bu, linmodel. C, linmodel. Bd, linmodel. Dd
186
- cx = Constant (x0)
187
- cu = Constant (u0)
188
- cd = Constant (d0)
189
- model. linfunc! (xnext0, y0, A, Bu, C, Bd, Dd, x0, u0, d0, cx, cu, cd)
186
+ cst_x = Constant (x0)
187
+ cst_u = Constant (u0)
188
+ cst_d = Constant (d0)
189
+ backend = model. jacobian
190
+ model. linfunc! (xnext0, y0, A, Bu, C, Bd, Dd, backend, x0, u0, d0, cst_x, cst_u, cst_d)
190
191
return nothing
191
192
end
192
193
0 commit comments