Answer:
q1q1 ⇒ 01
Explanation:
The outputs of a positive edge triggered register will match the inputs after a rising clock edge.
q1q1 ⇒ 01 . . . . matching d1d0 = 01
The maximum shear stress in the tube when the power is transmitted through a 4: 1 gearing is 28.98 MPa.
<h3>What is power?</h3>
Power is the energy transferred per unit time.
Torque is find out by
P = 2πNT/60
10000 = 2π x 2000 x T / 60
T =47.74 N.m
The gear ratio Ne / Ns =4/1
Ns =2000/4 = 500
Ts =Ps x 60/(2π x 500)
Ts =190.96 N.m
Maximum shear stress τ = 16/π x (T / (d₀⁴ - d₁⁴))
τ max =T/J x D/2
where d₁ = 30mm = 0.03 m
d₀ = 30 +(2x 4) = 38mm =0.038 m
Substitute the values into the equation, we get
τ max = 16 x 190.96 x 0.038 /π x (0.038⁴ - 0.03⁴)
τ max = 28.98 MPa.
Thus, the maximum shear stress in the tube is 28.98 MPa.
Learn more about power.
brainly.com/question/13385520
#SPJ1
Answer:
The impedance of the circuit depends on the angular frequency of the voltage source.
Explanation:
- In a electric circuit, the magnitude of the impedance, is given by the following expression:
where R = Resistance
Xl = Inductive reactance = ω*L
Xc = Capacitive Reactance = 1/ωC
and ω = angular frequency of the voltage source.
- So, it can be seen that the impedance depends on the value of the constants R,L and C, and on the angular frequency ω.
Answer:
See explanation below.
Explanation:
For this case the program needs to take the inputs as P,r and n and the output would be as A and printed on the system. The code is:
# Inputs
P = float(input("Enter the present value : "))
r = float(input("Enter your APR : "))
n = float(input("Enter the number of years : ") )
# Output
A = P*(1 +(r/100))**n
print("The future values is:", A)
And the result obtained is:
Enter the present value : 1000
Enter your APR : 0.95
Enter the number of years : 5
The future values is: 1048.4111145526908