So how did the initial build out go?
Step 1 build an engine…with Chevy small blocks this is easy and cheap(ish)
Step 2 Get a hoist to put it into the car…My Doubting wife doesn’t think it will fit
Step 4 Measure it<g>
Step 3: Put the motor into the car
Step 5 Figure out why it is not fitting
Step 6. Use bigger hammer
Step 7 Admire work…note motor is literally behind the front axles making this technically a mid engine car!
Weight | 2750lbs |
Horse Power | ? |
Torque | ? |
0-60 mph | ? |
1/4 mile | ? |
Transmission | 5 speed Manual |
Rear End | 3.94 to 1 Fully Independent |
Top Speed | ?(probably never find out) |
MPG | ? Should be around 23 mpg |
Wheelbase | 90.7 |
Height | 51″ |
Length | 173.2 |
Radiator | Aluminum 91 Camaro with a Black Max Fan |
Rolling Stock | 15×7 Rikens with ADVAN 032R Yoko’s |
Weight Distribution |
Some code:
//some code for sale tax
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarpartsTax
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarpartsTax
{
public class parts
{
private const Double Tires_TAX = 0.02;
private const Double Car_PARTS_TAX = 0.062;
private const Double Engine_PARTS_TAX = 0.082;
private const Double Transmission_PARTS_TAX = 0.032;
private const Double Body_PARTS_TAX = 0.042;
private const Double Electrical_PARTS_TAX = 0.042;
private const Double Tools_PARTS_TAX = 0.045;
private const Double Lights_PARTS_TAX = 0.047;
public Double getWashingtonTax(string item, Double amount, int Quantity)
{
// int Quantity= 0;
//Public Function SalesTax(ByVal Quantity As Integer, ByVal item As String) As Double
Double TotalWithSalesTax = 0 ; // As Double
if (item == “SSWheels”)
{
TotalWithSalesTax = (Quantity * 1.175);
}
else
{ }
if (item == “Carb”)
{
TotalWithSalesTax = (Quantity * .15);
}
else
{ }
if (item == “Engine”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .75);
}
else
{ }
if (item == “Transmission”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .45);
}
else
{ }
if (item == “Body”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .55);
}
else
{ }
//
// ElseIf item = “Carb” Then
// TotalWithSalesTax += (Quantity * 1.05)
// ElseIf item = “Nitrous” Then
// TotalWithSalesTax += (Quantity * (0.5 * Tires_TAX) + (Quantity * 0.5))
// ElseIf item = “Transmission” Then
// TotalWithSalesTax += (Quantity * (0.25 * Engine_TAX) + (Quantity * 0.25))
// Return TotalWithSalesTax
// End Function
return TotalWithSalesTax;
}
public Double getOregonTax(string item, Double amount, int Quantity)
{
// int Quantity= 0;
//Public Function SalesTax(ByVal Quantity As Integer, ByVal item As String) As Double
Double TotalWithSalesTax = 0; // As Double
if (item == “SSWheels”)
{
TotalWithSalesTax = (Quantity * 1.15);
}
else
{ }
if (item == “Carb”)
{
TotalWithSalesTax = (Quantity * .15);
}
else
{ }
if (item == “Engine”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .15);
}
else
{ }
if (item == “Transmission”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .45);
}
else
{ }
//
// ElseIf item = “Carb” Then
// TotalWithSalesTax += (Quantity * 1.05)
// ElseIf item = “Nitrous” Then
// TotalWithSalesTax += (Quantity * (0.5 * Tires_TAX) + (Quantity * 0.5))
// ElseIf item = “Transmission” Then
// TotalWithSalesTax += (Quantity * (0.25 * Engine_TAX) + (Quantity * 0.25))
// Return TotalWithSalesTax
// End Function
return TotalWithSalesTax;
}
public Double getCaliforniaTax(string item, Double amount, int Quantity)
{
// int Quantity= 0;
//Public Function SalesTax(ByVal Quantity As Integer, ByVal item As String) As Double
Double TotalWithSalesTax = 0; // As Double
if (item == “SSWheels”)
{
TotalWithSalesTax = (Quantity * 1.15);
}
else
{ }
if (item == “Carb”)
{
TotalWithSalesTax = (Quantity * .15);
}
else
{ }
if (item == “Engine”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .15);
}
else
{ }
if (item == “Transmission”)
{
TotalWithSalesTax = (0.25 * Engine_PARTS_TAX) + (Quantity * .45);
}
else
{ }
//
// ElseIf item = “Carb” Then
// TotalWithSalesTax += (Quantity * 1.05)
// ElseIf item = “Nitrous” Then
// TotalWithSalesTax += (Quantity * (0.5 * Tires_TAX) + (Quantity * 0.5))
// ElseIf item = “Transmission” Then
// TotalWithSalesTax += (Quantity * (0.25 * Engine_TAX) + (Quantity * 0.25))
// Return TotalWithSalesTax
// End Function
return TotalWithSalesTax;
}
}
}
}
Weight | 2750lbs |
Horse Power | ? |
Torque | ? |
0-60 mph | ? |
1/4 mile | ? |
Transmission | 5 speed Manual |
Rear End | 3.94 to 1 Fully Independent |
Top Speed | ?(probably never find out) |
MPG | ? Should be around 23 mpg |
Wheelbase | 90.7 |
Height | 51″ |
Length | 173.2 |
Radiator | Aluminum 91 Camaro with a Black Max Fan |
Rolling Stock | 15×7 Rikens with ADVAN 032R Yoko’s |
Weight Distribution | 50/50 |
Good Job.