Answer:
The three types of relearn procedures are auto relearn, stationary and OBD.
Explanation:
In TPMS system, after the direct service like adjustment of air pressure, tire rotation or replacement of sensors etc, is performed then maximum vehicle often needs TPMS system relearn that needs to be performed.
For performing these relearn procedure, there are mainly three types:
- auto relearn
- stationary relearn
- OBD
After applying the relearn process, the TPMS system will again be in proper function.
Answer: C.) John Herschel
Answer:
a. Solid length Ls = 2.6 in
b. Force necessary for deflection Fs = 67.2Ibf
Factor of safety FOS = 2.04
Explanation:
Given details
Oil-tempered wire,
d = 0.2 in,
D = 2 in,
n = 12 coils,
Lo = 5 in
(a) Find the solid length
Ls = d (n + 1)
= 0.2(12 + 1) = 2.6 in Ans
(b) Find the force necessary to deflect the spring to its solid length.
N = n - 2 = 12 - 2 = 10 coils
Take G = 11.2 Mpsi
K = (d^4*G)/(8D^3N)
K = (0.2^4*11.2)/(8*2^3*10) = 28Ibf/in
Fs = k*Ys = k (Lo - Ls )
= 28(5 - 2.6) = 67.2 lbf Ans.
c) Find the factor of safety guarding against yielding when the spring is compressed to its solid length.
For C = D/d = 2/0.2 = 10
Kb = (4C + 2)/(4C - 3)
= (4*10 + 2)/(4*10 - 3) = 1.135
Tau ts = Kb {(8FD)/(Πd^3)}
= 1.135 {(8*67.2*2)/(Π*2^3)}
= 48.56 * 10^6 psi
Let m = 0.187,
A = 147 kpsi.inm^3
Sut = A/d^3 = 147/0.2^3 = 198.6 kpsi
Ssy = 0.50 Sut
= 0.50(198.6) = 99.3 kpsi
FOS = Ssy/ts
= 99.3/48.56 = 2.04 Ans.
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.