3D Robotics
I had a full day of autonomous flight testing in 20 knot winds, and it's clear that the default PID gains in ArduPilot were not high enough to handle any significant wind. So I upped them from 15 to 30 and the Superstar suddenly regained its tracking authority and was able to circle overhead well. I've modified the standard code in the repository with these higher gains so others who saw "flyaway" behavior in wind should now have sufficient rudder authority to stay on track. If you want to tweak your own PID gains, they're in the first tab of the code. The current gains are as follows: //PID max and mins #define heading_max 30 #define heading_min -30 Please note that with this higher rudder gain, it's important to ensure that your FMA Co-Pilot is doing its job with wing-leveling. Once you're in the air, set it to the highest gain it can take without oscillating (if it's a clear day and you've calibrated it right, that should be the maximum rotation of your gain knob on your transmitter). Another issue with using ArduPilot 1.0 in high wind is that altitude hold is pretty sloppy and it has trouble making progress upwind. That's because ArduPilot 1.0 just uses the throttle for altitude control. When the plane is going into the wind, it tends to rise. ArduPilot will then cut the throttle, but in a good headwind, the plane may not descend. Instead, it will just hover or even move backwards a bit. That's why we're shifting to elevator+throttle altitude control in the ArduPilot 2.0 software. With that the plane will point its nose down a bit and keep the throttle going to make headway against the wind. It's a much better way to control altitude. Jordi's testing it this weekend and may have the code ready to release this week.
E-mail me when people leave their comments –

You need to be a member of diydrones to add comments!

Join diydrones

Comments

  • can some one tell me what is the algorithm behind the waypoint navigation... like how you control the heading of the airplane w.r.t longitude and latitude... i mean to say is how you all control navigation controls such that the airplane navigates to the selected waypoint
  • 3D Robotics
    @Tom: Yes, 5Hz GPS modules will be supported in 2.2, out in a few weeks. The NEMA parser is not specific to any GPS module. We have not benchmarked the LS20031 against the Ublox, but they're both good.
  • I assume there is enough memory now in the 328 Atmega chip to accomodate both binary (EM406 and GS406) and NEMA (LS20021 and others) codes in one program. Is there enough processing power for 4-5 HZ updates? I understand that the new version of the software coming out around early June will have support for both GPS (at 4-5 HZ?).

    Not knowing the programming side much, does the LS20031 NEMA code incorporated into 2.2 and higher verisons provide equally good GPS-related performance as the GS406 4 hz (UBox) in binary?
  • 3D Robotics
    Tychoc: The 2.0 code will initially just support the standard EM406, which is what most people have. But we'll add LS20031 support over time. There's no technical hitch, we're just trying to minimize the number of code bases and there isn't enough memory in the atmega to support both in the same code.
  • Did I read somewhere that we who bought the locosys + daughterboard will not be able to use the 2.0 code?

    thanks,
    tychoc
  • I am using the small locosys LS20033.
    But simulating a em406 via software at 4800bps give the same results
    Tinkering with the code, I found that If I put some serial.print(lat) to see how lat is being calculated, this does the trick and the AP fixes home.
    This behaviour is puzzling me, it doesn't follow a trend.
  • Moderator
    So no reason not to move onto the 2.0 code?
  • 3D Robotics
    Yes, the 2.0 code will replace the FMA Co-Pilot. I'll post it tomorrow.
  • Moderator
    Chris - Like always I just have a ton going on so it makes it hard to keep up with with ArduPilot. I'm working on testing w/Ardupilot 1.0 code but am wondering if there is a reason not to move forward to the ArduPilot 2.0 code? I'm also wondering if this 2.0 code is the same code that can replace FMA Co-Pilot? Thanks -Brian
  • 3D Robotics
    jalves: we're not seeing that problem with the EM406. What GPS module are you using?
This reply was deleted.