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:
#include <stdio.h>
typedef struct InventoryTag_struct {
int itemID;
int quantityRemaining;
} InventoryTag;
int main(void) {
InventoryTag redSweater;
redSweater.itemID = 314;
redSweater.quantityRemaining = 500;
/* Your solution goes here */
printf("Inventory ID: %d, Qty: %d\n",redSweater.itemID,redSweater.quantityRemaining);
getchar();
return 0;
}
Explanation:
Answer:
People would watch it please give me one star so I can be first place
Explanation:
IDK