Answer:
Option D
All the above
Explanation:
Depending with the number of occupants in a building, the number of air conditioners required can either be increased or reduced. For instance, if the building is to be a classroom of over 50 students, 1 air-conditioner can't serve effectively. Similarly, the activity of occupants also dictate the amount of air conditioners required since if it's a gym room where occupants exercise often then the air conditioners required is different from if the room was to serve as a lounge. The appliances that also operate in a room require that air conditioners be installed as per the heat that may be generated by the appliances.
Answer:
a. Rotational speed of the drill = 375.96 rev/min
b. Feed rate = 75 mm/min
c. Approach allowance = 3.815 mm
d. Cutting time = 0.67 minutes
e. Metal removal rate after the drill bit reaches full diameter. = 9525 mm³/min
Explanation:
Here we have
a. N = v/(πD) = 15/(0.0127·π) = 375.96 rev/min
b. Feed rate = fr = Nf = 375.96 × 0.2 = 75 mm/min
c. Approach allowance = tan 118/2 = (12.7/2)/tan 118/2 = 3.815 mm
d. Approach allowance T∞ =L/fr = 50/75 = 0.67 minutes
e. R = 0.25πD²fr = 9525 mm³/min.
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:
Iin(t) =1.3 × (-0.8/1.56) e^-t/1.56 A
Explanation:
In physics, the determination of the term " natural response" simply means that we want to know what happens in a circuit when the value of t = 0, that is to say after the circuit has been disconnected. Hence, the value of the voltage and the current can then be determined or Calculated;
For the the natural response of i in(t) we will be using the formula below;
I(t) = Vo × t/ R = Vo/R × e^-t/h.
Where h = 1/RC = time constant.
For t= 0^- = 0.8 × 1= 0.8 V.
1/Ctotal = 1/ 2 + 1/3 = 6/5
For t = 0^+;
h =( 0.8 + 0.5) × 6/5 = 1.56 seconds.
Hence, we will have;
Vin(t) = 0.8 × e^-t/1.56.
Iin(t) =1.3 × (-0.8/1.56) e^-t/1.56
Answer:
Both are right.
Explanation:
I am obsessed with the manufacture of automobiles, and just did the quiz.