R01= 14.1 Ω
R02= 0.03525Ω
<h3>Calculations and Parameters</h3>
Given:
K= E2/E1 = 120/2400
= 0.5
R1= 0.1 Ω, X1= 0.22Ω
R2= 0.035Ω, X2= 0.012Ω
The equivalence resistance as referred to both primary and secondary,
R01= R1 + R2
= R1 + R2/K2
= 0.1 + (0.035/9(0.05)^2)
= 14.1 Ω
R02= R2 + R1
=R2 + K^2.R1
= 0.035 + (0.05)^2 * 0.1
= 0.03525Ω
Read more about resistance here:
brainly.com/question/17563681
#SPJ1
Answer:
Coat new O-rings (D) with silicone oil or polyalkyleneglycol (PAG) oil, and pull them on the injectors.
Answer:
γ
=0.01, P=248 kN
Explanation:
Given Data:
displacement = 2mm ;
height = 200mm ;
l = 400mm ;
w = 100 ;
G = 620 MPa = 620 N//mm²; 1MPa = 1N//mm²
a. Average Shear Strain:
The average shear strain can be determined by dividing the total displacement of plate by height
γ
= displacement / total height
= 2/200 = 0.01
b. Force P on upper plate:
Now, as we know that force per unit area equals to stress
τ = P/A
Also, τ = Gγ
By comapring both equations, we get
P/A = Gγ
------------ eq(1)
First we need to calculate total area,
A = l*w = 400 * 100= 4*10^4mm²
By putting the values in equation 1, we get
P/40000 = 620 * 0.01
P = 248000 N or 2.48 *10^5 N or 248 kN
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:
Machine Safeguards must meet these minimum general requirements: Prevent contact: The safeguard must prevent hands, arms, or any other part of a worker's body from making contact with dangerous moving parts. Be secure: Workers should not be able to easily remove or tamper with the safeguard.