Skip to content

Commit

Permalink
updated m690 params
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Nov 9, 2023
1 parent 42d7204 commit ade7011
Show file tree
Hide file tree
Showing 2 changed files with 205 additions and 164 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,52 @@
uav_mass: 3.5
uav_mass: 4.65

motor_params:
n_motors: 4
a: 0.1917
a: 0.19174
b: -0.15

# these model parameters can be used when
# - 'control group', and/or
# - 'actuator control'
# are accepted by the HW API.
model_params:

arm_length: 0.345 # [m]
body_height: 0.20 # [m]

propulsion:

# force [N] = force_constant * rpm^2
force_constant: 0.00000096809

# torque [Nm] = torque_constant * force [N]
torque_constant: 0.07

prop_radius: 0.2286 # [m]

# allocation motors -> torques

# quadrotor X configuration
# hexarotor X configuration
# [roll torque, [ [RPM_1^2,
# pitch torque, = Alloc * RPM_2^2,
# yaw torque, Matrix ...
# thrust force] ] RPM_n_motors^2]
allocation_matrix: [
-0.707, 0.707, 0.707, -0.707, # *= force_constant*arm_length
-0.707, 0.707, -0.707, 0.707, # *= force_constant*arm_length
-1, -1, 1, 1, # *= torque_constant*force_constant
1, 1, 1, 1, # *= force_constant
]

# The UAV's inertia is approximated as a cilinder using the parameters above
# Alternatively, you can provide inertia matrix directly using the following parameter:
# inertia_matrix: []

rpm:
min: 801.55 # [revolutions/minute]
max: 5337.0 # [revolutions/minute]

mrs_uav_managers:

constraint_manager:
Expand Down
Loading

0 comments on commit ade7011

Please sign in to comment.