Skip to main content
My owner's manual says I should use only "regular unleaded gasoline rated
at 87 octane or higher." However, I live in Colorado and use 85 octane.
The engine does not ping or knock at any time. Since the price of 87
octane gas here is about 10 cents more per gallon, do I have to spend the
extra money for it? I own a 1995 Buick Regal with a 3800 V6 under the
hood. -- Bob

RAY: Well, first of all, I'm glad you have a 3800 V6 under the hood, Bob.
Because if it was anywhere other than under the hood, this question would
be a much greater challenge for us.

TOM: You're the exception to the octane rule, Bob. For those of you who
are not regular readers (for those who stumbled onto this column by
accident while looking for something more interesting to read), we always
say to use the manufacturer's recommendation for octane. No more, and no
less.

RAY: Lower octane can cause pinging and overheating, which can damage the
engine. And higher-than-required octane is simply a waste of money.

TOM: An octane rating tells you how high the ignition point of the
gasoline is. If the ignition point is too low, the fuel can begin to burn
too early in the cylinders and cause pinging. By using higher octane gas,
you raise the ignition point and eliminate that early burning.

RAY: And the manufacturer determines what octane you need based on the
compression ratio of the engine. Generally speaking, the higher the
engine's compression, the higher the octane you need.

TOM: And what allows you, Bob, to use lower-than-recommended octane is
the altitude in Colorado. Up where you live, the air pressure is lower.
That means the pressure in the cylinders is lower, too. So by going up
5,000-plus feet in elevation, you've effectively lowered the compression
of your engine, and that means you can use lower-octane fuel without
making the engine ping.

RAY: At the altitude where you live, 85 octane is the equivalent of 87
octane at sea level. So, by all means, go ahead and use it, Bob. Along
with getting winded more easily, it's one of the fringe benefits of
living up there in the mountains.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...