Pith. sign in

REVIEW 2 major objections 5 minor 31 references

MOMAV: A highly symmetrical fully-actuated multirotor drone using optimizing control allocation

T0 review · 2 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read This paper establishes that a six-rotor drone with arms at the vertices of an octahedron, each able to rotate continuously, can hover in any orientation while wasting little thrust, and that its SQP-based control allocation keeps tracking…

desk verdict A real flying octahedral rotating-arm drone with honest flight data and a citable geometry analysis, but the efficiency claims outrun the power measurements and the SQP equations carry a sign error. read the letter →

arxiv 2506.08868 v1 pith:APUNEGOF submitted 2025-06-10 cs.RO

classification cs.RO
keywords fullyactuatedmultirotoromnidirectionalflightcontrolallocationsequentialquadraticprogrammingoctahedronarmconfigurationslip-ringsrotatingdroneover-actuated
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper introduces MOMAV, a fully actuated multirotor drone whose six rotor arms point at the vertices of an octahedron and can each rotate continuously about their long axis. The author's central claim is that this highly symmetric rotating-arm geometry lets the drone control position and orientation independently, with flight efficiency that varies little with orientation. Compared to other fully actuated designs, the octahedron wastes less thrust fighting itself and needs less surplus total thrust for hover. Flight tests support the claim with mean position and orientation errors of a few millimeters and degrees during sweeping setpoints, and the paper argues that the slack from twelve actuators can be spent on efficiency rather than mere controllability.

What carries the argument

The central mechanism is the octahedral arm configuration with six rotating arms, each carrying a propeller whose thrust direction is a function of the arm angle. Two efficiency metrics, X1 and X2, are defined through an optimization that minimizes the sum of squared motor forces subject to the hover wrench; these metrics isolate the effect of arm geometry and show that the octahedron, tetrahedron, and cube are nearly equivalent and superior to planar rotating-arm and fixed-tilt designs. The second carrying element is a sequential quadratic programming (SQP) control allocation that minimizes squared throttles and arm-rotation velocity penalties while satisfying the desired force and torque, avoiding the arm-angle singularity that plagues pseudoinverse allocation. The slip-ring rotating-arm assembly is what makes continuous arm rotation physically possible without cable winding.

What would settle it

Measure the electrical power input to the six motors while MOMAV hovers in many fixed orientations, and compare measured power to the X1 and X2 predictions from the squared-throttle minimization: if power draw varies strongly with orientation even though X1 and X2 stay nearly flat, or if single-arm thrust at fixed throttle depends on arm angle and rotation history, the linear thrust model and the squared-force proxy fail.

Watch

Extended reading notes

Core claim

The core discovery is that the combination of a three-dimensionally symmetric arm layout (octahedron, tetrahedron, or cube) with actively rotating arms yields the best efficiency across all orientations for fully actuated drones. For the octahedron, the paper defines and computes two efficiency metrics: X1, the fraction of thrust directed upward at hover, and X2, the fraction of total installed thrust usable for hover. It reports X1 between 0.82 and 1.00 and X2 between 0.67 and 0.82, meaning that at worst 18 percent of thrust is canceled by opposing motors and at worst a third of total thrust must be surplus. The paper further shows that MOMAV achieves independent position and orientation control in flight, with mean errors of 6.6 mm and 2.1 degrees during position sweeps and 11.8 mm and 3.3 degrees during orientation sweeps, and that replacing pseudoinverse allocation with the proposed SQP method reduces peak position errors during arm-angle singularities.

Load-bearing premise

The load-bearing premise is that each motor's force and torque are linear functions of throttle with constant coefficients, and that minimizing the sum of squared motor forces is a valid proxy for minimizing power; the author's own flight data suggest wake interactions and angle-dependent slip-ring losses already strain this premise.

Editorial extensions

If this is right

  • Fully actuated drones need not sacrifice efficiency for omnidirectionality; an octahedral rotating-arm layout keeps most thrust pointing upward at any hover orientation.
  • Using SQP with arm-angle velocity penalties removes the vertical-arm singularity problem that causes position errors in pseudoinverse-based controllers.
  • Slip-rings permit unlimited arm rotation, enabling maneuvers such as sustained multi-revolution rolls that would otherwise wind up motor cables.
  • The efficiency metrics X1 and X2 give a simple, mass-independent way to compare arm configurations of fully actuated drones before building them.
  • Future nonlinear or learned thrust models could further shrink the already small tracking errors by accounting for wake interactions and angle-dependent slip-ring losses.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same efficiency analysis generalizes: any highly symmetric three-dimensional arrangement of rotating thrusters, such as a cube or tetrahedron, should show similarly flat efficiency across orientations, making the octahedron one instance of a broader design rule.
  • The slip-ring measurement, showing nearly 100 percent relative efficiency when placed between battery and motor driver, suggests a simple redesign of MOMAV would recover the roughly 10 percent of power currently lost.
  • Since the SQP objective is user-tunable, the same allocation framework could be extended to incorporate learned thrust models, propeller wake interactions, or per-arm temperature limits, turning the control allocation into a place where aerodynamic knowledge enters.
  • The reported position-error reduction near singularities is a statistical effect over 12 instances; a targeted experiment with repeated identical singularity passages could confirm it more directly.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 5 minor

Summary. The paper presents MOMAV, a six-rotor fully actuated multirotor whose arms lie along octahedron vertices and can rotate continuously about their long axes by means of modified servos and slip rings. The authors propose two thrust-based metrics X1 and X2 to compare hover efficiency of arm configurations, document the mechanical design and single-arm slip-ring measurements, and introduce an SQP-based control allocation that distributes force/torque setpoints across throttles and arm angles. Flight tests with OptiTrack report mean position errors of 6.6 mm and orientation errors of 2.1° during position sweeps, and 11.8 mm and 3.3° during orientation sweeps, with a ten-revolution roll flight enabled by the slip rings.

Significance. The main strength is the demonstrated hardware capability: full decoupling of position and orientation, continuous arm rotation, quantitative tracking errors, and a statistical comparison showing that the SQP allocation reduces position peaks near arm-angle singularities relative to pseudoinverse allocation. The paper is unusually open, providing source code, 3D models, and raw test data. The claimed efficiency advantage is only weakly supported, however, because X1 and X2 are geometric thrust-utilization indices rather than measured power, and the paper's own slip-ring tests show a substantial hover power penalty. The printed SQP derivation also contains a sign error that would make the algorithm incorrect as written. These issues are local enough that the central hardware claims remain credible.

major comments (2)
  1. [Section IV, Eqs. (11)-(14) and Algorithm 1] The Newton step for the KKT system has the wrong sign. Eq. (11) states Hδ + K = 0, so the correct solution is δ = -H^{-1}K, yet Eq. (14) and Algorithm 1 use H^{-1}K. Since K is the gradient of the Lagrangian, the printed step is an ascent direction for the minimization; as written the algorithm would not converge to a constrained minimum. Please correct Eq. (14) and Algorithm 1 (or explicitly solve Hδ = -K), and state whether the implemented code already uses the correct sign.
  2. [Abstract and Section II, Eqs. (1)-(3), with Sections III-B and V] The paper labels X1 and X2 as 'flight efficiency' and claims high efficiency largely unaffected by orientation, but these metrics are computed from a thrust-only optimization and are not measurements of electrical power. X1 is a thrust-direction utilization ratio and X2 is a static thrust-margin index; neither accounts for the motor/propeller power curve, wake interaction, or the angle-dependent slip-ring losses mentioned in Section V. Section III-B reports a relative thrust efficiency of 90% at hover thrust for the implemented slip-ring placement, which is a measured ~10% power penalty. Since no whole-vehicle power draw or hover endurance as a function of orientation is reported, the abstract's efficiency claims overstate the evidence. The same gap affects Section IV's statement that the objective O is chosen with the intention of minimizing power consumption: Eq. (5) penalizes squared throttles and arm velocities, which is a heuristic proxy, not a measured power model. Please add power measurements or restrict the claims to geometric thrust-utilization metrics.
minor comments (5)
  1. [Section IV, Eq. (6)] The notation in Eq. (6) is incomplete as printed; please define the quaternion rotation operation explicitly, for example n_i = q(a_i, x_i) z_i q(a_i, x_i)^{-1}, rather than relying on a parenthetical note that quaternions are multiplied with vectors.
  2. [Section III-B, marked thrust setpoints] The displayed expressions 'X2,min·mg/6 = 4.8 N' and 'X2,max·mg/6 = 5.9 N' do not evaluate to the stated values. The per-motor hover thrusts at the two orientations are mg/(6 X2,max) ≈ 4.8 N and mg/(6 X2,min) ≈ 5.9 N; please correct the formulas.
  3. [Section II, paragraph after Fig. 3] The phrase 'the ODAR configuration (Fig. 2C, like in [5])' appears to reference the wrong figure; ODAR is a fixed-tilt design and should be among the fixed-tilt configurations in Fig. 3.
  4. [Section V, SQP versus pseudoinverse comparison] Please state which hypothesis test was used for p = 0.0003 and whether the 12 instances are paired before/after comparisons.
  5. [Table I and Section IV] The symbol H is used both for the quaternion space in Table I and for the KKT matrix in Eqs. (11)-(12); rename one of these to avoid ambiguity.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the efficiency metrics and control allocation are derived from independent geometric optimization, and the flight-tracking errors are measured externally.

full rationale

The paper's central claims are supported by self-contained derivations and independent measurements, not by fitting parameters to the predicted outputs. The efficiency metrics X1 and X2 are defined by an optimization problem (Eq. 1) over thrust directions and arm geometry, and the paper explicitly notes that they depend only on thrust-direction constraints and motor locations, not on mass, gravity, or inertia. These metrics are then evaluated across orientations for several configurations as a static geometric comparison; they are not fitted to the subsequent flight results. The control allocation algorithm minimizes a stated objective (Eq. 5) subject to the force/torque constraint (Eq. 9), and the reported tracking errors come from OptiTrack ground-truth measurements during test flights. The motor constants mu and tau in Eqs. 7 and 8 are inputs adopted from the physical actuator/propeller setup, and they do not by themselves force the observed 6.6 mm and 2.1 degree errors. There are no load-bearing self-citations: the author cites only external prior hardware and algorithms, not a uniqueness theorem or prior result of the present author that would make the choice of octahedral geometry or SQP allocation forced by definition. The acknowledged limitations, such as the simplified linear thrust/torque model and the measured 10% slip-ring power loss, are honest empirical caveats rather than circular dependencies; they concern model accuracy and hardware efficiency, not a derivation that assumes its own conclusion. Therefore no step in the paper reduces, by construction or by self-citation, to its own inputs.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The central claims rest on a linear motor model with unstated constants, a hand-tuned PID loop, and a proxy efficiency metric that is not experimentally validated. No new physical entities are introduced. The free parameters are typical for a robotics paper, but the lack of reported values reduces reproducibility.

free parameters (3)
  • Motor thrust constant mu = not stated
    Used in Eq. 7 to map throttle to force; must be identified from motor/propeller tests. The paper does not report its value or identification procedure.
  • Motor torque constant tau = not stated
    Used in Eq. 8 to map throttle to torque. Same identification gap as mu.
  • PID controller gains = not stated
    Position and orientation PID gains are manually tuned (Section IV) and directly affect the reported tracking errors; values are not given.
assumptions (3)
  • domain assumption Linear thrust and torque model (Eqs. 7 and 8): motor force equals mu times throttle times direction, and motor torque is a linear combination of position cross force and spin torque, with constant mu and tau.
    Assumed in the control allocation; the paper's own flight data suggest wake interactions and slip-ring losses violate this linearity.
  • ad hoc to paper Hover efficiency metrics X1 and X2 are a valid proxy for power efficiency.
    The paper minimizes the sum of squared thrusts without demonstrating that this corresponds to electrical power consumption.
  • domain assumption In Eq. 1, for rotating-arm configurations, thrust directions can be freely chosen within the arm geometry, with no penalty on arm motion or actuator limits.
    Needed to compute the quoted X1 and X2 ranges; steady hover has zero arm velocity, so the velocity limits do not bind.

how reviews work

0 comments
Cite this review

Pith. "Pith review of MOMAV: A highly symmetrical fully-actuated multirotor drone using optimizing control allocation." pith.science (2026). https://pith.science/paper/APUNEGOF

@misc{pith2026250608868,
  author       = {Pith},
  title        = {Pith review of: MOMAV: A highly symmetrical fully-actuated multirotor drone using optimizing control allocation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/APUNEGOF}},
  note         = {Machine review of arXiv:2506.08868}
}
read the original abstract

MOMAV (Marco's Omnidirectional Micro Aerial Vehicle) is a multirotor drone that is fully actuated, meaning it can control its orientation independently of its position. MOMAV is also highly symmetrical, making its flight efficiency largely unaffected by its current orientation. These characteristics are achieved by a novel drone design where six rotor arms align with the vertices of an octahedron, and where each arm can actively rotate along its long axis. Various standout features of MOMAV are presented: The high flight efficiency compared to arm configuration of other fully-actuated drones, the design of an original rotating arm assembly featuring slip-rings used to enable continuous arm rotation, and a novel control allocation algorithm based on sequential quadratic programming (SQP) used to calculate throttle and arm-angle setpoints in flight. Flight tests have shown that MOMAV is able to achieve remarkably low mean position/orientation errors of 6.6mm, 2.1{\deg} ({\sigma}: 3.0mm, 1.0{\deg}) when sweeping position setpoints, and 11.8mm, 3.3{\deg} ({\sigma}: 8.6mm, 2.0{\deg}) when sweeping orientation setpoints.

Figures

Figures reproduced from arXiv: 2506.08868 by the authors.

Figure 1
Figure 1. Prototype drone MOMAV continuous arm rotation using slip-rings. It serves to simplify the constraints placed on the control allocation. Not doing so would require a more sophisticated solution to prevent the cables powering the propeller motors from winding up around the arms after multiple rotations. II. ARM CONFIGURATION Many arm configurations for fully-actuated drones featuring ingenious mechanical solutions hav… view at source ↗
Figure 2
Figure 2. Flight efficiency X1, X2 depending on orientation for a selection of drones with rotating arms Two metrics are calculated to compare flight efficiencies of various arm configurations. X1 is the fraction of thrust directed upwards during hovering flight (Eq. 2). The remainder (1 − X1) is thrust, that is wasted by motors having to push against each other instead of upwards. X2 on the other hand is the fraction of tota… view at source ↗
Figure 3
Figure 3. Flight efficiency X1, X2 depending on orientation for a selection of drones with fixed-tilt arms never shown to be capable of flying in arbitrary orientations. As expected, designs using fixed-tilt arms (Fig. 3A–3D, like in [3–6]) show significantly worse X1 and X2 efficiencies across all orientations. Notably, the ODAR configuration (Fig. 2C, like in [5]), which was optimized for wrench generation across orientatio… view at source ↗
Figures from the paper (9 more)
Figure 4
Figure 4. Figure 4: Views of the octahedral body implementation showing [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 6
Figure 6. Figure 6: Arm actuator step responses (A) and frequency re [PITH_FULL_IMAGE:figures/full_fig_p004_6.png]
Figure 5
Figure 5. Figure 5: Rotating arm assembly with a section view showing [PITH_FULL_IMAGE:figures/full_fig_p004_5.png]
Figure 7
Figure 7. Figure 7: Slip-ring efficiency analysis performed on a single a [PITH_FULL_IMAGE:figures/full_fig_p005_7.png]
Figure 8
Figure 8. Figure 8: Penalty functions used in optimization objective [PITH_FULL_IMAGE:figures/full_fig_p006_8.png]
Figure 9
Figure 9. Figure 9: Test flight sweeping through orientations and keepin [PITH_FULL_IMAGE:figures/full_fig_p008_9.png]
Figure 10
Figure 10. Figure 10: Test flight with a trajectory like in Fig. 9, but using [PITH_FULL_IMAGE:figures/full_fig_p009_10.png]
Figure 11
Figure 11. Figure 11: Test flight with ten revolutions in roll while mainta [PITH_FULL_IMAGE:figures/full_fig_p009_11.png]
Figure 12
Figure 12. Figure 12: Test flight sweeping through positions and keeping t [PITH_FULL_IMAGE:figures/full_fig_p010_12.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

31 extracted references · 31 canonical work pages

  1. [1]

    Past, present, and future of aerial robotic manipulators,

    A. Ollero, M. Tognon, A. Suarez, D. Lee, and A. Franchi, “Past, present, and future of aerial robotic manipulators, ” IEEE T-RO, pp. 626–645, 2022

  2. [2]

    Fully actuated multirotor uavs: A litera- ture review,

    R. Rashad, J. Goerres, R. Aarts, J. Engelen, and S. Stramigioli, “Fully actuated multirotor uavs: A litera- ture review,” IEEE RA Magazine , pp. 97–107, 2020

  3. [3]

    The lynch- pin—a novel geometry for modular, tangential, omnidi- rectional flight,

    T. Howard, C. Molter, C. Seely, and J. Y ee, “The lynch- pin—a novel geometry for modular, tangential, omnidi- rectional flight,” SAE Int. J. Aerosp. 16(3) , pp. 291–303, 2023

  4. [4]

    Design, modeling and control of an omni-directional aerial vehicle,

    D. Brescianini and R. D’Andrea, “Design, modeling and control of an omni-directional aerial vehicle,” IEEE ICRA, pp. 3261–3266, 2016

  5. [5]

    Odar: Aerial manipulation platform en- abling omnidirectional wrench generation,

    S. Park, J. Lee, J. Ahn, M. Kim, J. Her, G.-H. Y ang, and D. Lee, “Odar: Aerial manipulation platform en- abling omnidirectional wrench generation,” IEEE/ASME, vol. 23, no. 4, pp. 1907–1918, 2018

  6. [6]

    Omni-plus-seven (o7+): An omnidirectional aerial prototype with a minimal number of unidirectional thrusters,

    M. Hamandi, K. Sawant, M. Tognon, and A. Franchi, “Omni-plus-seven (o7+): An omnidirectional aerial prototype with a minimal number of unidirectional thrusters,” ICUAS, pp. 754–761, 2020

  7. [7]

    Fully actuated hexa-rotor uav: Design, construction, and control. simulation and experimental validation,

    A. Flores and G. Flores, “Fully actuated hexa-rotor uav: Design, construction, and control. simulation and experimental validation,” ICUAS, pp. 1497–1503, 2022

  8. [8]

    Adrc-backstepping- compensation control for a novel aerial manipulator system,

    L. Ma, Y . Y AN, Z. Li, and J. Liu, “Adrc-backstepping- compensation control for a novel aerial manipulator system,” 2021

Show all 31 references
  1. [9]

    Port- hamiltonian passivity-based control on se(3) of a fully ac- tuated uav for aerial physical interaction near-hovering,

    R. Rashad, F. Califano, and S. Stramigioli, “Port- hamiltonian passivity-based control on se(3) of a fully ac- tuated uav for aerial physical interaction near-hovering, ” IEEE RA Letters , vol. 4, no. 4, pp. 4378–4385, 2019

  2. [10]

    Omnidirectional aerial vehi - cles with unidirectional thrusters: Theory, optimal desig n, and control,

    M. Tognon and A. Franchi, “Omnidirectional aerial vehi - cles with unidirectional thrusters: Theory, optimal desig n, and control,” IEEE RA Letters , vol. 3, no. 3, pp. 2277– 2282, 2018

  3. [11]

    Disturbance rejec- tion in multi-rotor unmanned aerial vehicles using a novel rotor geometry,

    F. von Frankenberg and S. Nokleby, “Disturbance rejec- tion in multi-rotor unmanned aerial vehicles using a novel rotor geometry,” CDSR, 2017

  4. [12]

    Aerodynamic design on the non-planar rotor system of a multi-rotor flying robot (mfr),

    Y . Lei, Y . Ji, C. Wang, Y . Bai, and Z. Xu, “Aerodynamic design on the non-planar rotor system of a multi-rotor flying robot (mfr),” IEEE ROMA , pp. 1–5, 2017

  5. [13]

    Hexrotor uav platform enabling dextrous interaction with structures-flight test,

    G. Jiang and R. V oyles, “Hexrotor uav platform enabling dextrous interaction with structures-flight test,” IEEE SSRR, pp. 1–6, 2013

  6. [14]

    Research and development of double tetrahedron hexa-rotorcraft (dot-hr),

    D. Toratani, “Research and development of double tetrahedron hexa-rotorcraft (dot-hr),” 2012. [Online]. Available: https://api.semanticscholar.org/ CorpusID:195778790

  7. [15]

    Me- chanical design, modelling and control of a novel aerial manipulator,

    A. Nikou, G. Gavridis, and K. Kyriakopoulos, “Me- chanical design, modelling and control of a novel aerial manipulator,” IEEE ICRA , pp. 4698–4703, 2015

  8. [16]

    An omnidirectional aerial manipulation platform for contact-based inspec- tion,

    K. Bodie, M. Brunner, M. Pantic, S. Walser, P . Pfndler, U. Angst, R. Siegwart, and J. Nieto, “An omnidirectional aerial manipulation platform for contact-based inspec- tion,” RSS, 2019

  9. [17]

    The voliro omnidirectional hexacopter: An agile and maneuverable tiltable-rotor aerial vehicle,

    M. S. Kamel, S. V erling, O. Elkhatib, C. Sprecher, P . Wulkop, Z. Taylor, R. Siegwart, and I. Gilitschen- ski, “The voliro omnidirectional hexacopter: An agile and maneuverable tiltable-rotor aerial vehicle,” IEEE RA Magazine, vol. PP , pp. 1–1, 2018

  10. [18]

    Design and control of a micro overactuated aerial robot with an origami delta manipulator,

    E. Cuniato, C. Geckeler, M. Brunner, D. Str¨ ubin, E. B¨ ahler, F. Ospelt, M. Tognon, S. Mintchev, and R. Siegwart, “Design and control of a micro overactuated aerial robot with an origami delta manipulator,” 2023

  11. [19]

    The new dexterity omnirotor platform: Design, modeling, and control of a modular, versatile, all- terrain vehicle,

    J. Buzzatto, P . Mendes, N. Perera, K. Stol, and M. Liarokapis, “The new dexterity omnirotor platform: Design, modeling, and control of a modular, versatile, all- terrain vehicle,” IEEE/RSJ IROS , pp. 6336–6343, 2021

  12. [20]

    Backstepping control for a tandem rotor uav robot with two 2-dof tiltable coaxial rotors,

    X. Xiongshi, K. Watanabe, and I. Nagai, “Backstepping control for a tandem rotor uav robot with two 2-dof tiltable coaxial rotors,” Journal of Robotics and Control (JRC), vol. 2, 2021

  13. [21]

    Fully actuated autonomous flight of thruster-tilting mul- tirotor,

    S. J. Lee, D. Lee, J. Kim, D. Kim, I. Jang, and J. Kim, “Fully actuated autonomous flight of thruster-tilting mul- tirotor,” IEEE/ASME, vol. 26, no. 2, pp. 765–776, 2021

  14. [22]

    Tiltdrone: A fully-actuated tilting quadrotor platform,

    P . Zheng, X. Tan, B. B. Kocer, E. Y ang, and M. Kovac, “Tiltdrone: A fully-actuated tilting quadrotor platform, ” IEEE RA Letters , vol. 5, no. 4, pp. 6845–6852, 2020

  15. [23]

    Modeling and control of fast-hex: A fully-actuated by synchronized- tilting hexarotor,

    M. Ryll, D. Bicego, and A. Franchi, “Modeling and control of fast-hex: A fully-actuated by synchronized- tilting hexarotor,” IEEE/RSJ IROS, pp. 1689–1694, 2016

  16. [24]

    A fully actu- ated quadrotor uav with a propeller tilting mechanism: Modeling and control,

    M. Odelga, P . Stegagno, and H. B¨ ulthoff, “A fully actu- ated quadrotor uav with a propeller tilting mechanism: Modeling and control,” IEEE AIM , pp. 306–311, 2016

  17. [25]

    Fully ac- tuated tricopter with pilot-supporting control,

    D. Kastelan, M. Konz, and J. Rudolph, “Fully ac- tuated tricopter with pilot-supporting control,” IF AC- PapersOnLine, vol. 48, no. 9, pp. 79–84, 2015

  18. [26]

    The tilt- quadrotor: Concept, modeling and identification,

    A. Moutinho, E. Mateos, and F. Cunha, “The tilt- quadrotor: Concept, modeling and identification,” IEEE ICARSC, pp. 156–161, 2015

  19. [27]

    A novel overactu- ated quadrotor unmanned aerial vehicle: Modeling, con- trol, and experimental validation,

    M. Ryll, H. B¨ ulthoff, and P . Giordano, “A novel overactu- ated quadrotor unmanned aerial vehicle: Modeling, con- trol, and experimental validation,” IEEE TCST , vol. 23, no. 2, pp. 540–556, 2015

  20. [28]

    A novel actuation concept for a multi rotor uav,

    P . Segui-Gasco, Y . Al-Rihani, H.-S. Shin, and A. Sav- varis, “A novel actuation concept for a multi rotor uav,” ICUAS, pp. 373–382, 2013

  21. [29]

    Design and im- plementation of a dual-axis tilting quadcopter,

    A. Bin Junaid, A. Diaz De Cerio Sanchez, J. Betan- cor Bosch, N. Vitzilaios, and Y . Zweiri, “Design and im- plementation of a dual-axis tilting quadcopter,” Robotics, vol. 7, no. 4, 2018

  22. [30]

    Introducing proportional on measurement,

    B. Beauregard, “Introducing proportional on measurement,” http://brettbeauregard.com/blog/2017/ 06/introducing-proportional-on-measurement/, 2017 (accessed 27 May 2024)

  23. [31]

    Numerical optimization,

    S. Wright, J. Nocedal et al. , “Numerical optimization,” Springer Science , vol. 35, no. 67-68, p. 7, 1999

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.