vote up 5 vote down star
1

For example, would it be incredibly dangerous to do it for avionics software?

Note, I don't completely understand Agile.

flag

55% accept rate

8 Answers

vote up 12 vote down check

I've worked on Air-Traffic Control systems using an essentially waterfall process, and those projects could definitely have benefited from agile practices. I don't like to think about how much of that code worked "by accident", without any kind of unit-level automated regression testing. And the requirements-up-front thing is something of a red herring. While it's true that aerospace systems are probably as close as you can get to having set-in-stone requirements up front, you still have arguments over the meaning of ambiguous requirements which only turn up when the system is supposed to be in acceptance testing. Or you have throughput issues which no one had considered that show up late in the game because of big-bang integration. Test-first, spike solutions, continuous integration, pair-programming - I think all of these would have improved the projects I worked on.

UPDATE: Not to mention how often the "design documents" were a pack of lies by the end of the project, because the design necessarily evolved in the face of reality. Agile recognizes the fact of emergent design, which is just as real in Waterfall projects as in any other, rather than trying to pretend you can get the design right before ever beginning to write code.

link|flag
1  
that's a nice term for un-tested code: "working by accident". I feel the same way about un-tested code – casademora Oct 24 '08 at 14:53
vote up 8 vote down

I work in aerospace (satellites specifically), and we use a hybrid approach because we face two different concerns: real-world requirements and business processes requirements.

We use a waterfall-ish approach for spacecraft requirements and critical sections because changes to the satellite are slow and rare, and screwing up there is bad.

But for the ever changing business processes we use an agile-ish approach because how they fly the spacecraft is constantly changing due to customer demands. Screwing up there means in the worst case the user gets not-as-nice results.

link|flag
vote up 6 vote down

I don't have enough experience in that field (other than a user of aviation systems) to form my own truly independent opinion. However, all the things that I keep reading about the critical systems that have the best track record leads me to believe that waterfall is actually the best way. It's possible because people are willing to allow for the extra waste of freezing requirements in order to promote safety. Trade-offs are a bit different in that case I guess.

link|flag
vote up 4 vote down

Determining the Applicability of Agile Practices to Mission and Life-Critical Systems

Agile Suitability Filters

In short, there is no "Agile" programming. There is a set of practices. Some lend themselves better than others, but in general, any project will benefit from some of the practices.

The biggest area people are typically concerned with is Modeling and Architecture. There are plenty of teams out there using agile practices - for example, I know members of the Fun3d team with NASA - they use agile practices and deal with things like Space Shuttle support.

There are several groups out there devoted to this type of work - so it is possible. You just have to be aware of your risks - like any other methodology.

link|flag
vote up 2 vote down

Agile should be a disciplined process. Whatever your process, safety issues in this case should be tackled up front. I don't see how delivering in iterations, using a continuous build system, calculating programmer burn rates, having stand up meetings, having the customer active engaged, etc would negatively impact safety.

link|flag
1  
The problem, IMO, if the requirements aren't right up front, you might be missing a security feature that would show itself in an iteration. – Thomas Owens Oct 24 '08 at 14:25
1  
That's assuming you'd actually discover everything up front, and that your requirements aren't going to change along the way. I've personally never seen either actually happen. – Cory Foy Oct 24 '08 at 14:30
1  
I've never worked on a life-critical system, but from what I've read and been told, they spend much longer on requirements than most projects do. – Thomas Owens Oct 24 '08 at 15:00
vote up 1 vote down

I think that depends how the security-demands integrated in the process. If they are a extra set of testing, that's nothing that is in contradiction to agile programming. I think that agile methods can help you to produce more secure software, because agile projects tend to be of higher quality than waterfall-projects. Important will be, that the additional quality-assurance you have installed is also in use for the agile-methods.

But if the security-demands are applied to the building-process, that may be in contradiction to agile methods.

link|flag
vote up 0 vote down

You could use the agile approach, but the first pass would have to include your safety and security aspects, or at least provide for them, so that you don't shoot yourself in the foot and end up rewriting the whole thing. But I agree with Brian, you're probably better off using the Waterfall approach for such projects.

link|flag
vote up 0 vote down

Actually, there is a variation of the waterfall model called the V-model, that is favoured by IEC61508 for example. It is waterfall-sort-of, but with provisions for re-iteration(s) of the basic project cycle. The main purpose of the re-iterations in this case is to deal with issues detected in various stages in the process. The basic idea is that the later down the road you encounter an issue, the further back in your process you have to go to take care of and review the impact of your changes.

So it's not really Agile, but... :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.