home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: rec.autos
- Path: sparky!uunet!charon.amdahl.com!pacbell.com!ames!agate!stanford.edu!EE.Stanford.EDU!loading-zone!sahul
- From: sahul@loading-zone.Stanford.EDU (Zakir H. Sahul)
- Subject: Re: Cruise Control w/ Manual Transmission
- Message-ID: <1992Nov18.035658.14660@EE.Stanford.EDU>
- Sender: sahul@loading-zone (Zakir H. Sahul)
- Organization: Stanford University
- References: <1992Nov17.180052.25805@unocal.com> <1992Nov17.193931.5164@scott.skidmore.edu> <1992Nov18.001539.17655@rchland.ibm.com>
- Distribution: usa
- Date: Wed, 18 Nov 92 03:56:58 GMT
- Lines: 38
-
- In article <1992Nov18.001539.17655@rchland.ibm.com>, essbaum@rchland.vnet.ibm.com (Alexander Essbaum) writes:
- |> |> stsshol@st.unocal.COM (Herb Lam) writes:
- |> |> >
- |> |> > I have a '91 Mazda 626 with manual transmission along with cruise
- |> |> > control. I have only tried the cruise control to see how it operates
- |> |> > but don't use it because I usually drive in fairly heavy traffic.
- |>
- |> what if you change gears without touching the clutch (probably tricky if
- |> you're letting the cruise control do the gas)? what about pulling the
- |> tranny into neutral while at speed? will the engine rev maddly trying
- |> to maintain speed?
- |>
-
- My guess is that the cruise is killed if the driver does anything with the
- brake pedal, the clutch, or the transmission. After all, with electronic
- control, this is not terribly difficult. All the switches, pedals and
- sensors send events to the ECU which prioritizes and processes them.
-
- If the engine control program is event driven (interrupts!), then each of the
- driver actions will be taken care of immediately. Or if the program polls for
- events every now and then, then the driver actions will be taken care of in a few
- milliseconds (on the order of 10ms). Either way, a lot of smarts are built
- into the program to avoid destructive conditions.
-
- One has to be careful that a positive feedback mechanism does not exist in the
- code. Also, safeguards such as putting a top limit on the amount of fuel
- that is ever injected, keeping engine rpm below a certain threshold, etc, etc.
- are used.
-
- Neglect these things and .... you hear about the infamous "sudden acceleration"
- (Audi) and a few others - clearly cases of "those bugs are really features".
-
- 8-).
-
-
-
-
-
-