-
Notifications
You must be signed in to change notification settings - Fork 0
/
param_init_DC.py
27 lines (20 loc) · 1 KB
/
param_init_DC.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
""" Parameters of the PVTOL nonlinear dynamics (subset of the full dynamics)
x2' = (g + u1)*sin(x1) ] f1 = (g + u)*sin(x)
] ==>
x3' = (g + u1)*cos(x1) - g ] f2 = (g + u)*cos(x) - g
(c) Martin Doff-Sotta, University of Oxford ([email protected])
"""
import numpy as np
import param_init as param
## Physical parameters
g = param.g # Gravity acceleration (m/s^2)
## State and input constraints
u_max = param.u_max[0] # max input
u_min = -u_max # min input
x_max = param.x_max[0] # max state
x_min = -x_max # min state
ctr = np.array([[x_min, x_max],
[u_min, u_max]]) # gather all in one array
## Nonlinear dynamics
f1 = lambda alpha, u: (u + g)*np.sin(alpha)
f2 = lambda alpha, u: (u + g)*np.cos(alpha) - g