Answer:
lubricating all moving parts in the engine
Explanation:
like the pistons, pushrods, and the crank
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:
The part of the system that is considered the resistance force is;
B
Explanation:
The simple machine is a system of pulley that has two pulleys
The effort, which is the input force at A gives the value of the tension at C and D which are used to lift the load B
Therefore, we have;
A = C = D
B = C + D = C + C = 2·C
∴ C = B/2
We have;
C = B/2 = A
Therefore, with the pulley only a force, A equivalent to half the weight, B, of the load is required to lift the load, B
The resistance force is the constant force in the system that that requires an input force to overcome in order for work to be done
It is the force acting to oppose the sum of the other forces system, such as a force acting in opposition to an input force
Therefore, the resistance force is the load force, B, for which the input force, A, is required in order for the load to be lifted.
Answer:
0.023 Pa*s
Explanation:
The surface area of the side of the inner cylinder is:
A = π*d*l
A = π*0.15*0.75 = 0.35 m^2
At 200 rpm the inner cylinder has a tangential speed of:
u = w * r
u = w * d/2
w = 200 rpm * 2π / 60 = 20.9 rad/s
u = 20.9 * 0.15 / 2 = 1.57 m/s
The torque is of 0.8 N*m, this means that the force is:
T = F * r
F = T / r
F = 2*T / d
For Newtoninan fluids with two plates moving respect of each other with a fluid between the viscous friction force would be:
F = μ*A*u / y
Where
μ: viscocity
y: separation between pates
A: surface area of the plates
Then:
2*T / d = μ*A*u/y
Rearranging:
μ = 2*T*y / (d*A*u)
μ = 2*0.8*0.0012 / (0.15*0.35*1.57) = 0.023 Pa*s