Answer:
Diesel cycle:
All diesel engine works on diesel cycle.It have four processes .These four processes are as follows
1-2.Reversible adiabatic compression
2-3.Heat addition at constant pressure
3-4.Reversible adiabatic expansion
4-1.Heat addition at constant volume
When air inters in the piston cylinder after that it compresses and gets heated due to compression after that heat addition take place at constant pressure after that power is produces when piston moves to bottom dead center.
From the diagram of P-v And T-s we can understand so easily.
Answer:
Total time taken = 0.769 hour
Explanation:
using the velocity method
for sheet flow ;
Tt =
Tt = travel time
n = manning CaH
Pl = 25years
L = how length ( ft )
s = slope
For Location ( 1 )
s = 0.045
L = 1000 ft
n = 0.06 ( from manning's coefficient table )
Tt1 = 0.128 hour
For Location ( 2 )
s = 2.5 %
L= 750
n = 0.13
Tt2 = 0.239 hour
For Location ( 3 )
s = 1.5%
L = 500 ft
n = 0.15
Tt3 = 0.237 hour
For Location (4)
s = 0.5 %
L = 250 ft
n = 0.011
Tt4 = 0.165 hour
hence the Total time taken = Tt1 + Tt2 + Tt3 + Tt4
= 0.128 + 0.239 + 0.237 + 0.165 = 0.769 hour
Answer:
Explanation:
a) On the verge of tipping over, reaction acts at the corner A
When slippage occurs,
Block moves w/ const. velocity equilibrium
Three-force member: reaction at A must pass through B
tan b/2h, h b/ 2 θ µ = = ∴= k k ( µ )
b) When slippage occurs,
Block moves w/ const. velocity equilibrium
Three-force member: reaction at C must pass through G
k tanθ µ =
tan x/ H/2 , x H/2
Answer:
#include <stdio.h>
void SplitIntoTensOnes(int* tensDigit, int* onesDigit, int DecVal){
*tensDigit = (DecVal / 10) % 10;
*onesDigit = DecVal % 10;
return;
}
int main(void) {
int tensPlace = 0;
int onesPlace = 0;
int userInt = 0;
userInt = 41;
SplitIntoTensOnes(&tensPlace, &onesPlace, userInt);
printf("tensPlace = %d, onesPlace = %d\n", tensPlace, onesPlace);
return 0;
}