Answer:
1790 μrad.
Explanation:
Young's modulus, E is given as 10000 ksi,
μ is given as 0.33,
Inside diameter, d = 54 in,
Thickness, t = 1 in,
Pressure, p = 794 psi = 0.794 ksi
To determine shear strain, longitudinal strain and circumferential strain will be evaluated,
Longitudinal strain, eL = (pd/4tE)(1 - 2μ)
eL = (0.794 x 54)(1 - 0.66)/(4 x 1 x 10000)
eL = 3.64 x 10-⁴ radians
Circumferential strain , eH = (pd/4tE)(2-μ)
eH = (0.794 x 54)(2 - 0.33)/(4 x 1 x 10000)
eH = 1.79 x 10-³ radians
The maximum shear strain is 1790 μrad.
1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Explanation:
Given information denotes that .,one gram of Strontium-90 has an activity of 5.3 terabecquerels (TBq)
the activity of 1 micro gram is
1 gram = 1,000,000 micro gram has activities of 5.3 terabecquerels
therefore 1 micro gram has the activity of (5.3 ÷ 1,000,000 = 0.0000053 )
= 
Hence ., 1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Answer:
La ciencia y la ingeniería conciben el mundo como comprensible, con reglas que gobiernan su funcionamiento y que a través de un estudio cuidadoso y sistemático se puede evidenciar mediante patrones consistentes que permitan la oportunidad de examinar las características fundamentales que mejor describen los fenómenos.
Explanation:
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.