the wacky idea i had last weekend, while intriguing, was but a pipe dream. why?
CARB.
yes, my great state has deemed that the 4-cyclinder dead-dinosaur consuming and carbon spewing turbocharged german death motor is preferable to a modern, emissions-happy high tech v8. i'd get better gas milage, spew half of the emissions, and generally be a much more reliable motor.
there is an option, but it's so far out of my price (and sanity) range, that i have to banish it from my mind: the E-ROD. $9k for the motor, and another $10k for the mounting kit, heater/air conditioner adapters, upgraded brakes (as the stock power brake booster has to go), catalytic converters, and other sundry items.
but it'd sure be pretty awesome to have a v8.
anyways, back to reality. let's fix what i got. there are some rumors of other combos that will work, but before i take a plunge like that, i would need to be damn sure. for reals.
this week, i got the engine computer(s) and harness out, which is a big step. the computer chips, like my fuel pressure regulator were built/programmed by "ProMotion Racing". nothing currently shows up on my favorite search engine, but i checked out the internet archive and found an old website. i posted this on the rennlist.com forums, and a gentleman who's having a car built by this gentleman got in touch with me. now i have the phone number of the guy, and can find out what, if anything, has been done to the engine internals! yay! i can hopefully find out about the programming on the chips, and whether or not they're updatable, and worth keeping in my car.
the trick fuel injector harness has just been spliced and soldered to my donor engine wiring harness. all that needs now, besides replacing ALL of the stupid little plugs, is some cleaning and taping on the end that goes in to the passenger compartment.
now, i just need my new wiring harness replacement kit to come in the mail, so i can refurbish my donor harness. that, and new battery leads, will then remove all fears of electrical shorts from my mind and engine bay. after that, it's time to reassemble the beast with my new speed/crankshaft reference sensors, vacuum lines, fuel pressure gauge, braided fuel lines, hot plug wires, and wideband air/fuel monitor.
then i will try and start the car.
class car:
def __init__(self):
self.State = ''
self.type = ''
self.year = ''
def Start(self):
if crank_motor:
if engine_catches:
return True
return False
def TryStarting(self, start_count)
start_count = start_count + 1if not self.Start():
if start_count <= 3:
TryStarting(start_count)
elsif start_count > 3:
self.State = 'dead'
return False
else:
self.State() = 'running'
return True
def GetItOutOfDriveway(self)
if self.State() == 'built':
return self.TryStarting(poorsche, 0)
else:
logging.fatal('put the damn car together before you try this again!')
return False
def DriveToShopToGetTuned(self)
if self.State == 'running':
return GetToShopAndPayMoneyForTuning()
else:
return False
if __name__ == 'main':
poorsche = new car.Porsche(type=951, year=1986, state='built')
if poorsche.GetItOutOfDriveway():
poorsche.DriveToShopToGetTuned()
else:
poorsche.Debug(desc='maybe i should try scrapbooking')
