Answer:
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Explanation:
given data
area = 3 ft by 3 ft
air density = 0.075 lbm/ft³
to find out
minimum electric power consumption of the fan motor
solution
we know that energy balance equation that is express as
E in - E out =
......................1
and at steady state
= 0
so we can say from equation 1
E in = E out
so
minimum power required is
E in = W = m
=
put here value
E in =
E in =
E in = 0.1437 Btu/s
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Answer:
distance = 22.57 ft
superelevation rate = 2%
Explanation:
given data
radius = 2,300-ft
lanes width = 12-ft
no of lane = 2
design speed = 65-mph
solution
we get here sufficient sight distance SSD that is express as
SSD = 1.47 ut +
..............1
here u is speed and t is reaction time i.e 2.5 second and a is here deceleration rate i.e 11.2 ft/s² and g is gravitational force i.e 32.2 ft/s² and G is gradient i.e 0 here
so put here value and we get
SSD = 1.47 × 65 ×2.5 +
solve it we get
SSD = 644 ft
so here minimum distance clear from the inside edge of the inside lane is
Ms = Rv ( 1 -
) .....................2
here Rv is = R - one lane width
Rv = 2300 - 6 = 2294 ft
put value in equation 2 we get
Ms = 2294 ( 1 -
)
solve it we get
Ms = 22.57 ft
and
superelevation rate for the curve will be here as
R =
..................3
here f is coefficient of friction that is 0.10
put here value and we get e
2300 = 
solve it we get
e = 2%
Answer:
4.2 m119
Explanation:
it has the 4.2 m119 v8 engine with a top speed of 155 mph and 0 - 60 mph in 6.2 seconds
Answer:
Changing oil.
Explanation:
You need to regularly check and change your car’s oil to ensure smooth running of the vehicle and to prolong the lifespan of its engine.
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2