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:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer: ε₁+ε₂+ε₃ = 0
Explanation: Considering the initial and final volume to be constant which gives rise to the relation:-
l₀l₀l₀=l₁l₂l₃

taking natural log on both sides

Considering the logarithmic Laws of division and multiplication :
ln(AB) = ln(A)+ln(B)
ln(A/B) = ln(A)-ln(B)

Use the image attached to see the definition of true strain defined as
ln(l1/1o)= ε₁
which then proves that ε₁+ε₂+ε₃ = 0
Answer: heat loss through wall is 16.58034kW
Temperature of inside wall surface is 47°c
Temperature of outside wall surface is -2.7°c
Explanation:detailed calculation and explanation is shown in the image below.