Slashdot Mirror


Boeing 787s To Create Half a Terabyte of Data Per Flight

Qedward writes "Virgin Atlantic is preparing for a significant increase in data as it embraces the Internet of Things, with a new fleet of highly connected planes each expected to create over half a terabyte of data per flight. IT director David Bulman said: 'The latest planes we are getting, the Boeing 787s, are incredibly connected. Literally every piece of that plane has an internet connection, from the engines, to the flaps, to the landing gear. If there is a problem with one of the engines we will know before it lands to make sure that we have the parts there. It is getting to the point where each different part of the plane is telling us what it is doing as the flight is going on. We can get upwards of half a terabyte of data from a single flight from all of the different devices which are internet connected.'"

14 of 213 comments (clear)

  1. What could possibly go wrong? by stoploss · · Score: 5, Funny


    dave@console:~ ssh dave@hal-787
    [dave@hal-787 ~]$ echo "1" > /dev/landing-gear-doors
    echo: I'm sorry, Dave, I can't do that.
    [dave@hal-787 ~]$ sudo echo "1" > /dev/landing-gear-doors
    dave@console:~ Connection to hal-787 lost.

    1. Re:What could possibly go wrong? by Agent+ME · · Score: 5, Informative


      [dave@hal-787 ~]$ sudo echo "1" > /dev/landing-gear-doors

      You don't want to run echo as superuser; a regular user can echo 1 to the program's own stdout just as easily as superuser. The shell is what opens the output file (/dev/landing-gear-doors), so you either need to run the shell as superuser or have a different program as superuser which opens the file. Either of these will work:


      [dave@hal-787 ~]$ sudo sh -c 'echo "1" > /dev/landing-gear-doors'
      [dave@hal-787 ~]$ echo "1" | sudo tee /dev/landing-gear-doors

  2. Internet != Network by scsirob · · Score: 5, Insightful

    Connecting flight controls to "The Internet" would be the stupidest of all ideas. If they do this, anyone getting on board would be a candidate for the Darwin awards.

    I'm sure they meant to say that all these systems are networked together, using ARINC or other aviation network technologies.

    --
    To Terminate, or not to Terminate, that's the question - SCSIROB
  3. Re:internet-connected plane by ls671 · · Score: 5, Informative

    Hopefully, they meant a TCP/IP connection, not "Internet" connected ;-)

    --
    Everything I write is lies, read between the lines.
  4. Much less data than you think by Anonymous Coward · · Score: 5, Funny

    Sources say it's an XML dump. Maybe 100KB of actual data in there.

  5. Re:Usage of data in a flight simulator by Anonymous Coward · · Score: 5, Interesting

    Sufficient data for playing back flights in simulators has been recorded by the black boxes for a couple of decades already. It's done to evaluate the crew's actions (and compare those with what they've been trained to do) as well as to test if alternative actions could've prevented the accident. A good example was Swissair 111 (in 1998) which had a fire on board and crashed before the crew could land the aircraft. The crew didn't even try to get it to the nearest airport as fast as they could because they wanted to dump fuel, prepare the cabin and were reluctant to land at the very closest airport at first since they wanted one with Swissair mechanics. As part of the investigation crews in simulators got exactly the same fire scenario at the same point and among other things tested if they had been able to reach the airport if they didn't dump fuel and land overweight. In those scenarios too, however, it would've taken too long from the point the fire was first detected.

  6. Re:Internet connected by The_Wilschon · · Score: 5, Funny

    They'd be better off using Monster Cables.

    --
    SIGSEGV caught, terminating

    wait... not that kind of sig.
  7. Re:internet-connected plane by Richard_at_work · · Score: 5, Interesting

    This isn't exactly new - Rolls Royce, GE and Pratt & Whitney all do "power by the hour" rented engines, which are permanently connected (allowing for coverage issues) to data receiver centers which manage them. If they need maintenance, are running hot or have a vibration issue (its amazing how much you can discern about an engine due to its vibration levels), the engine manufacturer can determine before the flight has even ended whether or not the engine needs that maintenance at that point, needs replacing, or can suffice until the aircraft can be rotated to a full maintenance center to be swapped out.

    On PBTH engines, its typical that the airline will be called by the manufacturer to report the issue before the crew flying the aircraft ever notices anything.

    Its also a service engine purchasing airlines can select.

  8. Re:internet-connected plane by ls671 · · Score: 5, Funny

    woosh...

    --
    Everything I write is lies, read between the lines.
  9. Re:internet-connected plane by Anonymous Coward · · Score: 5, Funny

    wget http://www.vigrin-atlatic.com/flight/12321/manage.aspx?flags=down&gear=up&parachutes=deploy

  10. 787 On-Board Network by Required+Snark · · Score: 5, Interesting
    In less then two minutes on Google I found this article with a description of the 787 on-board network: http://www.avionics-intelligence.com/articles/2011/06/boeing-787-avionics.html

    The Core Network, which is standard on the 787, uses computing servers and networks based on commercial open standards. It also has a variety of third-party applications to manage the onboard data flow to improve airline efficiency. The Common Data Network (CDN from Rockwell Collins is a, bi-directional copper and fiber optic network that utilizes ARINC 664 standards and protocols to manage the data flowing between the 787's onboard systems. It is based on Ethernet technology and enabled for avionics systems. The CDN has higher data rates, expanded connectivity, and reductions in overall aircraft weight when it is contrasted with point to point topologies, Rockwell Collins officials say.

    Another quick search on ARINC 664 yields the following: http://en.wikipedia.org/wiki/Avionics_Full-Duplex_Switched_Ethernet

    AFDX is a next-generation aircraft data network (ADN). It is based upon IEEE 802.3 Ethernet and utilizes commercial off-the-shelf hardware thereby reducing costs and development time. AFDX is one implementation of deterministic Ethernet defined by ARINC Specification 664 Part 7. AFDX was developed by Airbus Industries for the A380, initially to address real-time issues for flight-by-wire system development. A similar implementation of deterministic Ethernet is used on the Boeing 787 Dreamliner. AFDX bridges the gap on reliability of guaranteed bandwidth from the original ARINC 664 standard. It utilizes a cascaded star topology network, where each switch can be bridged together to other switches on the network. By utilizing this form of network structure, AFDX is able to significantly reduce wire runs thus reducing overall aircraft weight. Additionally, AFDX provides dual link redundancy and Quality of Service (QoS).

    So both the Airbus 380 and the 787 use COTS hardware and Ethernet, as does the Internet. Although slightly sloppy, describing the network as an "internet" is technically correct. Asserting that the data is "bloated XML" or that their is bad scripting, spam or cookies involved is grossly stupid.

    I have worked with previous ARINC formats, and the data is very compact. It fact, it is positively cryptic, and generally you use software to turn it into a more human friendly form, like a line graph. So if there is a half terabyte per flight, it is all "real" data. Any of the posts that assume otherwise are a combination of arrogance and ignorance, which is typical for what passes as comments on Slashdot these days. Hence my sig:

    --
    Why is Snark Required?
  11. Re:What could go wrong? by halltk1983 · · Score: 5, Funny

    I would prefer it if my aircrafts sensors weren't censored.

    /I'm so very sorry, I'm not normally a Grammar Nazi

    --
    Watch for Penguins, they eat Apples and throw rocks at Windows.
  12. Re:internet-connected plane by wvmarle · · Score: 5, Insightful

    Not likely that it'd be streamed in real time.

    500 GB per flight, say six hours of flight time for an average flight, and I'm at almost 24 MB/s on data production. That's 240 Mb/s. 4G mobile phone can't do that, and when flying you'll often be out of reach of a mobile phone network. So you need satellite - while that may be able to handle the data, it's costing you an arm and a leg. Besides, most of the data is not that interesting.

    What would be viable, though, is for errors to be automatically transmitted. Like an engine that detects an anomaly, indicating it needs maintenance, that such a little bit of information is forwarded to the ground.

  13. Only on /.... by Opportunist · · Score: 5, Insightful

    ...could a discussion about plane travel and safety descend into a bickering about the correct use of the Linux console...

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.