Answer:
R = 31.9 x 10^(6) At/Wb
So option A is correct
Explanation:
Reluctance is obtained by dividing the length of the magnetic path L by the permeability times the cross-sectional area A
Thus; R = L/μA,
Now from the question,
L = 4m
r_1 = 1.75cm = 0.0175m
r_2 = 2.2cm = 0.022m
So Area will be A_2 - A_1
Thus = π(r_2)² - π(r_1)²
A = π(0.0225)² - π(0.0175)²
A = π[0.0002]
A = 6.28 x 10^(-4) m²
We are given that;
L = 4m
μ_steel = 2 x 10^(-4) Wb/At - m
Thus, reluctance is calculated as;
R = 4/(2 x 10^(-4) x 6.28x 10^(-4))
R = 0.319 x 10^(8) At/Wb
R = 31.9 x 10^(6) At/Wb
Answer:
import numpy as np
import time
def matrixMul(m1,m2):
if m1.shape[1] == m2.shape[0]:
t1 = time.time()
r1 = np.zeros((m1.shape[0],m2.shape[1]))
for i in range(m1.shape[0]):
for j in range(m2.shape[1]):
r1[i,j] = (m1[i]*m2.transpose()[j]).sum()
t2 = time.time()
print("Native implementation: ",r1)
print("Time: ",t2-t1)
t1 = time.time()
r2 = m1.dot(m2)
t2 = time.time()
print("\nEfficient implementation: ",r2)
print("Time: ",t2-t1)
else:
print("Wrong dimensions!")
Explanation:
We define a function (matrixMul) that receive two arrays representing the two matrices to be multiplied, then we verify is the dimensions are appropriated for matrix multiplication if so we proceed with the native implementation consisting of two for-loops and prints the result of the operation and the execution time, then we proceed with the efficient implementation using .dot method then we return the result with the operation time. As you can see from the image the execution time is appreciable just for large matrices, in such a case the execution time of the efficient implementation can be 1000 times faster than the native implementation.
Answer:
A tsunami's trough, the low point beneath the wave's crest, often reaches shore first. When it does, it produces a vacuum effect that sucks coastal water seaward and exposes harbor and sea floors. As the tsunami approaches water is drawn back from the beach to effectively help feed the wave. In a tide the wave is so long that this happens slowly, over a few hours.
Explanation:
Answer:
a
Explanation:
digital identity is the answer