HAL in the navy

ddrueding

Fixture
Joined
Feb 4, 2002
Messages
19,544
Location
Horsens, Denmark
Good to know humans can still make errors :roll:

I'd blame this squarely on the captain. The computer did nothing until the captain attemped an impossible manuver (running 2 props in 2 directions with 1 engine).
 

Bung

What is this storage?
Joined
Feb 13, 2004
Messages
18
Last year there was some fuss about the British navy basing a new destroyer control system on Windows.
 

Jake the Dog

Storage is cool
Joined
Jan 27, 2002
Messages
895
Location
melb.vic.au
ddrueding said:
Good to know humans can still make errors :roll:

I'd blame this squarely on the captain. The computer did nothing until the captain attemped an impossible manuver (running 2 props in 2 directions with 1 engine).

the failure here came way before the captain's incompetance forced it to appear.

fail-safe computer operation under any circumstance should been a critical and mandatory requirement met before that boat was out to sea. I'd say more likely the blame should be placed on the selection committee for not ensuring the software developers had covered all such conceivable scenarios in their design and testing.
 

sechs

Storage? I am Storage!
Joined
Feb 1, 2003
Messages
4,709
Location
Left Coast
Reminds me of the problems that Airbus had in implementing fly-by-wire. Sometimes the computer would disagree with the pilot....
 

LiamC

Storage Is My Life
Joined
Feb 7, 2002
Messages
2,016
Location
Canberra
As Jake and Sechs have alluded to, if people provide "fail-safes" to override the captain or pilot, all that's going to happen is that TV shows like Black Box or Air Crash Investigation are going to show episodes where the conclusion is software error rather than pilot error.

I write software for a living, lately java. The evangelists in the org I currently work for are big on junit testing--you write test cases for each class and method you write. The trouble I see with this is that I can write simple test cases for each piece of code, but it isn't the simple (blindingly obvious) that bugs my code. It's the weird corner cases where module A talks to module B via Module C and interacts with another application (Z) entirely which validates when where and what data I can get from application Y which allows my program to talk to module D, except when the planets are in alighment, and somebody forgot to fill out their birth date correctly with four digit years in application X. Then the whole lot crashes. It's when the unexpected happens. A good pilot may recover. An average pilot probably won't. Software can't think, so it will be no better than an average pilot.

There was a particularly useful air-crash show I saw a few months back about a Peruvian (Chilean??) aircraft that crashed. 'Twas a foggy night, and the aircraft had just taken off. The pilot started to receive an overspeed warning. So he slowed the plane (and started to descend). Then he received a stall warning! He tried to get confirmation from ATC. On top of that, he then got a ground proximity warning! So he was flying too fast, too slow and too close to the ground. Crash, bang 70 dead. The cause. Some ground crew had taped over a (pitot?) tube when washing the plane, and forgotten to take the tape off. Three people (including the Captain) missed it. How would software react in such conflicting circumstances?
 

ddrueding

Fixture
Joined
Feb 4, 2002
Messages
19,544
Location
Horsens, Denmark
LiamC said:
Three people (including the Captain) missed it. How would software react in such conflicting circumstances?

Expecting it to is too much. This too was blatant human error. Expecting a computer to protect against even smaller degrees of human error is too much. In this case, what if there wasn't a computer running this sensor, what if it was a human? They'd still recieve conflicting information from the faulted sensor and the plane would have still crashed if the Pilot had again failed to identify the error in the few seconds he had.
 

time

Storage? I am Storage!
Joined
Jan 18, 2002
Messages
4,932
Location
Brisbane, Oz
LiamC said:
The evangelists in the org I currently work for are big on junit testing--you write test cases for each class and method you write. The trouble I see with this is that I can write simple test cases for each piece of code, but it isn't the simple (blindingly obvious) that bugs my code. It's the weird corner cases where module A talks to module B via Module C and interacts with another application (Z) entirely which validates when where and what data I can get from application Y which allows my program to talk to module D, except when the planets are in alighment, and somebody forgot to fill out their birth date correctly with four digit years in application X. Then the whole lot crashes. It's when the unexpected happens.

Yeah, it's like checking every nail when building a house and calling that quality. The fact that structural supports may be missing, the roof leaks or the electrician wired the mains to the plumbing, is neither here nor there. Welcome to the world of "software engineering".

I'll never get over the fact that lots of these places claim they produce "zero defect software". :rofl: I bet UML gets quite a workout in your workplace, Bill. ;)

I actually believe that current OOP has become an obsession that excludes development of methodologies better able to simulate reality and the interaction of real objects. I think I'm going to insert an object into the next ivory tower dweller that pretends the real world can be reduced to inheritance-based classes. :evil:

I agree with the point you were trying to make about pilots. Computers don't think, they just follow instructions. Whereas a human can rely on life experience to identify the incongruity of the plane being both too fast and too slow, this exact situation has to be anticipated by a software developer and successfully coded, for a computer to even understand that a paradox exists.
 

iGary

Learning Storage Performance
Joined
Nov 22, 2002
Messages
236
Location
iLand
ddrueding said:
Good to know humans can still make errors... I'd blame this squarely on the captain...

Being that the ship was the HMAS Ballarat, the captain was likely an escaped simian.
 
Top