summaryrefslogtreecommitdiffstats
path: root/uav_ctrl_nominal.m
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2024-04-01 14:00:16 +0200
committerNao Pross <np@0hm.ch>2024-04-01 14:00:16 +0200
commit47ce5760b1c45fc5513e56dce92e29b9363bb03e (patch)
tree8494b4f43f7b5da3615cc9b973726e69a3d5e5c5 /uav_ctrl_nominal.m
parentWhitespace (diff)
downloaduav-47ce5760b1c45fc5513e56dce92e29b9363bb03e.tar.gz
uav-47ce5760b1c45fc5513e56dce92e29b9363bb03e.zip
Update a lot of small things and add SIMULINK model
Diffstat (limited to 'uav_ctrl_nominal.m')
-rw-r--r--uav_ctrl_nominal.m11
1 files changed, 6 insertions, 5 deletions
diff --git a/uav_ctrl_nominal.m b/uav_ctrl_nominal.m
index d46a1ef..1030233 100644
--- a/uav_ctrl_nominal.m
+++ b/uav_ctrl_nominal.m
@@ -9,13 +9,13 @@ function [ctrl] = uav_ctrl_nominal(params, model)
% Define penalties according to following priorities
-q_pos = 10; % penalty on position
-q_vel = 1; % penalty on linear velocity
+q_pos = 1; % penalty on position
+q_vel = 10; % penalty on linear velocity
q_ang = 100; % high penalty on angles
-q_rate = 1000; % very high penalty on angular velocities
+q_rate = 100; % very high penalty on angular velocities
r_ang = 1; % flap movement is cheap
-r_thrust = 10; % thrust is more expensive on the battery
+r_thrust = 100; % thrust is more expensive on the battery
nx = model.linear.Nx;
nu = model.linear.Nu;
@@ -34,4 +34,5 @@ N = zeros(nx, nu); % no cross terms
ctrl = struct();
ctrl.K = K;
-end \ No newline at end of file
+end
+% vim: ts=2 sw=2 et: