vote up 56 vote down star
21

Edit
What software practices are being used in mission-critical industries where safety is paramount? For example nuclear power plant.

Update
Originally this question was: How would you develop software for a nuclear plant? I have changed it to save good answers. I'm also making this question community wiki. Please help to word it better!

flag
10  
+1 and +reopen. Interesting question - I'm sure lots of us could learn something. – RichieHindle Jul 1 at 23:19
3  
If there were any, they would probably not be allowed to make that information public. – shoosh Jul 1 at 23:25
10  
The software practices, at least a decade ago, were simple: No safety precaution or operating control would rely on software, since it couldn't be properly analyzed for failure modes. Sofware was only used for log keeping, communication facilities, etc. So there isn't much to learn in terms of how to build reliable SW. I think you might be better off looking to "Safety of flight" rated systems. – mpez0 Jul 1 at 23:32
2  
"Safety of flight" would be interesting in light of the recent Air France loss. – Nosredna Jul 1 at 23:34
7  
Reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeally carefully. – Wayne Koorts Jul 2 at 0:27
show 10 more comments

38 Answers

1 2 next
vote up 19 vote down

I am not an expert. I just tell you what I heard.

For mission critical systems, the reference language is Ada. The development process is very strict and focuses on a test driven strategy with very small and highly tested (and stressed) routines. To address the potential of a crash, there is not only one system, but multiple redundant systems (in terms of sensors and processing units) which perform a "voting" procedure.

I don't know more than this.

link|flag
6  
It's Ada, not ADA. Ada is not an initialism or acronym, it was named after Ada Lovelace. – Bryan Oakley Jul 2 at 22:10
show 5 more comments
vote up 10 vote down

I remember about a month or so ago there was an article on slashdot about how NASA developed defect free software (that's how it was referred to) - it had a specific example from NASA. They made sure that they had very clear specs (written IIRC using Z), and had lots of testing, etc. You can find one of their documents here.

I am trying to find the link, but can't see it atm. Will post it later when I can find it.

In general, I would say that the following would be important:

  • Make sure that you have very specific specifications (use Z or some other formal language)
  • You can never write too many tests (for such a high risk application)
  • Make sure that you choose the correct framework / language / development environment (e.g. IIRC the Java license does not even permit the use of Java in nuclear plants)


EDIT: marcc found this link (second link shows everything on one page), which explains a bit more about how NASA operate, but isn't the link I was looking for.

link|flag
3  
I think the article you refer to is at fastcompany.com/magazine/06/… – marcc Jul 2 at 22:04
show 2 more comments
vote up 5 vote down

Very carefully. Or not at all.

link|flag
vote up 11 vote down

A formal specification language such as Z or Object-Z is a must. The software producing organization should have a high CMMI level as well, 4 or 5.

link|flag
show 3 more comments
vote up 68 vote down

Well, not Java. According to the license agreement ...

You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility

link|flag
30  
I guess I will have to use PHP then ... – too much php Jul 2 at 0:52
15  
Wait, so Sun is an inappropriate name for the company. lulz – Overflown Jul 2 at 1:04
4  
We had to rewrite an iTunes-based reactor control system for the very same reason – dbr Jul 3 at 1:18
5  
@1alstew1 Sun is really pushing for the use of solar power as they have complete monopoly in that market. – too much php Jul 3 at 6:26
show 2 more comments
vote up 3 vote down

Can you say what you are trying to learn from answers to this question?

Possibly you're wondering "could we do more to make sure our software doesn't break? What if we wrote software like they do for nuclear power plants"?

If so, then I don't think you've found the correct analogy. The cost of bugs in the systems of a nuclear power plant would be so high that, it's possible that software is not even permitted.

If this is what you're looking for, then I think you should look for examples of software where failure would be very expensive, but would not be life-threatening. Maybe systems that deal in millions of dollars per second, I don't know. But I think you want something achievable.

Chances are the differences aren't so much in QA, as in process, to make sure the bugs never get into the code in the first place.

link|flag
1  
Actually I just wanted to hear some war stories but apparently there is no such thing as "software that controls nuclear plant". – Pavel Chuchuva Jul 2 at 3:20
2  
War stories from people who design software for nuclear power plants? O_o – Eric Jul 2 at 22:00
show 1 more comment
vote up 9 vote down

You wouldn't believe how much stuff runs on 30-year old software.

But that's besides the point - the answer you're looking for is that nuclear power plants, and pretty much most power plants, and all other kind of objects don't rely on software for their running operations. Think of it, ... how old are some powerplants, how long is their predicted lifetime (and a lot of them exceedes that lifetime) ... do you really wish to make them rely on buggy software on operating systems that change every 10 years ?

No, when it comes to that kind of objects, you have physical controlling mechanisms (from valves up to releys, up to ...), with alarms, then some more valves, then some more alarms and human monitoring, and then maybe some software controlling of processes (but that software still can't avoid the valve) ... you see my point probably.

How that old saying goes ?

If architects builded buildings like programmers build software,
the first woodpecker that came would destroy the civilization.

link|flag
7  
"If architects builded buildings like programmers build software ..." - I'm kind of offended by this. Architects and programmers are not the same ... architects aren't usually asked to use a building material beyond its capabilities or completely restructure the foundation near project completion? I can't tell you how many times I've had to defend my software from a client who wants to add functionality to the UI specific to an external Add-On, or combine multiple data into 1 column, or combine unrelated databases into one. It's a sad state, but mostly because the material is so malleable. – John MacIntyre Jul 2 at 23:25
1  
@John - I'm sorry you feel offended by it. I didn't said it, I just quoted it. Although, I agree with it. As far as your complaint goes, all jobs have their demands. Programmers are not the only ones with unrealistic (crazy?) client demands. – ldigas Jul 2 at 23:33
1  
@Idigas - I would say that it's a little unfair to tarnish all programmers with the same brush. It's a gross overgeneralization that as a stereotype I don't think I could refute. However, at least in this instance I'd say that developers in this type of environment don't write your average business application and don't think or program in the same mindset. Every line of code is designed with the thought "what needs to happen if this line of code fails". Most general business programmers however don't consider this until after the fact. – BenAlabaster Jul 2 at 23:41
1  
@balabaster - Most sayings of this type are based on stereotypes. But, why does it bother you that much? I thought it as funny, until now. However, I really don't feel like starting a flame war, so if it offends you, I'll delete it. As for the other part of your comment, no, not really, they're not written with that thought in mind. You'd be suprised. People's ideas how powerplants work, operate and ... are grossly misguided by media. – ldigas Jul 3 at 0:00
show 7 more comments
vote up 1 vote down

Don't use Java. It is not approved for use in nuclear power plants.

link|flag
vote up 7 vote down

Depending on what the nuclear plant does with the material, be careful about what Google software you use in connection with your development work. By agreeing to their Terms of Service, you're also agreeing to:

(iv) not license, sell, provide or distribute the Software for use in connection with chemical, biological, or nuclear weapons or missiles capable of delivering such weapons

Sources:

https://registration.keyhole.com/download_earth_pro.html

http://sketchup.google.com/download/license_pro.html

http://toolbar.google.com/gmail-helper/terms_mac.html

link|flag
2  
Because the first place I go for my missile guidance systems is Google Maps... :P – BenAlabaster Jul 2 at 23:45
vote up 2 vote down

Erlang with reported cases of 99,9999999% of availability would be a serious candidate language.

I'd also count on a very experienced team and a lots of effort on code coverage tests as well on stress tests.

link|flag
3  
availability does not imply correctness – Eric Jul 2 at 21:52
1  
Nuke plant software needs to be both highly available and extremely fault tolerant. Doesn't Erlang achieve it's high availability by shooting errant processes in the head? I have to question the usage of a functional language in software where the whole point is to cause side effects. – Hans Malherbe Jul 9 at 19:59
show 1 more comment
vote up 42 vote down

I would use Eiffel with Design by Contract for correctness. Coincidentally it's already used in nuclear plants

DbC is a precondition/postcondition for each method, checked by the runtime during development. It includes class invariants that are checked before and after each method invocation during development. The precondition/postcondition and invariants form an exact specification on a module's interface.

http://dev.eiffel.com

link|flag
1  
I believe this psot deserves being voted much higher up, provided the Eiffel-statement is correct :) – Cecil Has a Name Jul 2 at 9:27
vote up 8 vote down

Apparently C++ is good enough for managing nuclear warheads. See the Coding Standards for the Joint Strike Fighter (PDF).

link|flag
20  
That's because C++ often tend to blow up, which makes it a perfect candidate for the application. ;) – kigurai Jul 2 at 8:31
show 1 more comment
vote up 37 vote down

Over a VPN. As far away as possible

link|flag
11  
Get one of the chaps in the lead pants to press the reset button – Gerard Jul 2 at 3:30
show 2 more comments
vote up 3 vote down

You might be interested in this document, which talks extensively about the current experience (as of 2004).

With regards to the programming languages specifically, here's paragraph 5.5.2 (p. 53):

Most evolutionary I&C [TR: Instrumentation and Controls] designs use some variant of the C computer language. Overall, there were no reported problems when the C language was used. By contrast, other software languages have had various issues. For Westinghouse implementations, the choice of the PUM-86 computer language proved to be too microprocessor-specific. Because of the limited use of this language, it proved difficult to expand its use across different applications. The lack of familiarity with the language among vendor and plant personnel also contributed to problems, such as reduced sources of support and limited data. Because of similar problems, the PL-1 and PASCAL languages have been replaced by C. ADA was adopted for use in the Temelin - Class 1 E diverse protection system because of its unique characteristics and its history of development and use by the U.S. Military. However, for the above-mentioned reasons, ADA will most likely not be used in future reactor designs.

So, it's C.

link|flag
vote up 12 vote down

A strange game. The only winning move is not to play.

link|flag
2  
Wait, even that loses. Perhaps you should program a chess game instead? – nilamo Jul 2 at 23:55
show 2 more comments
vote up 1 vote down

Using a formal method that you can mathematically prove you are not going to fail.

There are methods such as the B-Method that are used in safety critical systems, notably the Paris metro.

link|flag
show 1 more comment
vote up 2 vote down

I think I would spend 98.99999997% of my time writing test cases and testing my code. I would spend 1% writing code and the remainder on StackOverflow.

link|flag
1  
Only 0.00000003% of time in StackOverflow? With 220 8h work days per year, that would mean about 1 second of StackOverflow every five years... what a sad perspective :) – Rene Saarsoo Jul 14 at 14:05
vote up 1 vote down

I'd spent most of the time writing detailed spec, as the guys in NASA do.

I found this article very interesting.

link|flag
show 1 more comment
vote up 1 vote down

I would only work as telecommute. Better from some other continent.

And for design would definitely recommend a hardware switch that cuts out PC control and puts everything on manual.

I wonder if there are developers that work on nuclear plant software among stackoverflow.com audience.

There are sure such developers somewhere, like guys working in CERN (haven't seen them alive though).

There should also be developers who work with hadron collider. They have likely already made a few bugs there. Though the thing crashed after a few days of operation, there is likely to be a memory leak. I mean, I used to find a few things on my desktop in Germany somewhat shifted from the original position I left them in the direction of Switzerland (micro black hole or whatever they created but did not properly disposed). Scary...

link|flag
vote up 11 vote down

I'd probably use some combination of Windows ME and Visual Basic 6. Then I'd RUN LIKE HELL.

link|flag
show 2 more comments
vote up 0 vote down

Remotely, if possible.

link|flag
vote up 1 vote down

For industrial control systems using PLCs there are tools availible that can analyze every possible state of the software. By using this data (in form of state graphs for example) you can see if there are any dead ends or other strange situations and thus rewrite the program to prevent those states from even existing.

Disclaimer: I really have no idea how nuclear software is made but i belive that such tools would be really helpful for this kind of application.

link|flag
vote up 0 vote down

I'm sure a lot of the "software" actually used in nuclear power plants is on Windows, like most businesses: Excel and Word and Acrobat and Outlook. I'm sure they have boring old CRUD applications for rod inventory.

Nuclear power plants, like most large systems, are going to be made up of a combination of digital and analog controls and embedded and general purpose computers. The components will be programmed in a variety of languages and the choice in each case is going to be dictated by the individual requirements.

link|flag
vote up 1 vote down

Definitely not with agile, and yes with an waterfall process.

In the tools wich I would use, certainly there will be formal tools wich I could verified with some mathematics, like Petri networks.

If the software will able to run in Windows I will write it in Delphi, just because java doesn't allows it.

link|flag
vote up 2 vote down

Use what the regulator allows. No, seriously, you do NOT get to choose sometimes. It's quite possible that people will suggest crazy things like commodity operating systems.

This is the same mess the US SCADA industry is in with little to no security.

So the my money would be on locked down Solaris X ( it has quite nice real-time support, in addition to being like a bank vault.)

Ravenscar Ada springs to mind for the code . As noted you can't use Java. I've used Real-time Java for weapon systems and it works really well; but maybe one day Realtime java will be okay for nuclear plants; in which case it would be good.

Big ups on heavy formal methods, and using a whole-system simulator build in Matlab or similar. No I'm not smoking crack. The flight system guys now use Mathtlab's code generator at least for simulation.

And really heavy testing. Yes Veronica, we will be expecting 100% scenario coverage.

link|flag
show 3 more comments
vote up 40 vote down

I haven't worked specifically in nuclear production, but I have ample experience in system development where environmental safety (and human safety for that matter) is paramount. A lot of the development I have done in my career has been for use in this type of environment - whether it be Oil & Gas, Hydro-Electric production and could even be used in nuclear facilities, although I've yet to have that final honour - thankfully, perhaps.

The large majority of these types of systems are developed using SCADA systems and some form of HMI control system - which is what they call the GUI in industrial systems. This is usually an IDE built on a system designed purely for this purpose - CygNet, Wonderware, iFix or FactoryLink or similar.

Whenever you're coding for this type of environment, your first concern is failsafe. I will simplify to demonstrate my point (at the risk of being chastized by the SCADA community), but a system like this is controlled largely by hardware with safety limits hard-wired, firmware controlled and then software controlled.

The hard-wired limits are the outside boundaries of safety. In the event that firmware or software fails and these limits are breached, the system automatically shuts down. For instance on an oil pipeline this might mean closing a valve on a well to prevent an explosion at one end, or may mean venting excess to atmosphere or a burner if necessary.

Firmware limits are usually predetermined safety limits, considered safe for general use to push the system to.

Software is then used by an operator who will tweak the system to get the best possible performance or to meet other business targets - i.e. most power, coolest operating temperature, optimal performance etc.

In the event that anything fails, the underlying system takes over and operates safely. This means that in the event that the application were to fail catastrophically, the firmware built in the hardware controls can still operate the system safely. In the event that the firmware fails the hardware faults safely - i.e. shutting the system down to prevent environmental or human catastrophy.

link|flag
vote up 5 vote down

You might wish to read the book SafeWare by Nancy Leveson, it has some good case studies for software and dealing with preventing hazards.

link|flag
show 1 more comment
vote up 1 vote down

This posting discusses safety critical software with quite a lot of fan-out links.

link|flag
vote up 1 vote down

CERN uses LabVIEW to control the LHC. If LabVIEW is good enough to recreate black holes, Higgs Bosons and the Big Bang I'm sure it can handle whimply ole' nuclear fision. :)

link|flag
show 2 more comments
vote up 6 vote down

There are standards and certifications for software development of safety-critical systems:

  • Avionics: DO-178B
  • Industrial: IEC 61508
  • Nuclear: IEC 61513 / IEC 62138
  • Railway: EN 50128

...and so on. Most of these overlap heavily with variations on CMMI-like processes, restrictions on language usage, requirements for fault analysis, diagnostics, fail safe states, etc.

So, in short, developing software for safety critical systems is not something you need to figure out on your own.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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