Answer:
Heat flux of CO₂ in cgs
= 170.86 x 10⁻⁹ mol / cm²s
SI units
170.86 x 10⁻⁸ kmol/m²s
Explanation:
Answer:
Reflection
Explanation:
The specific behavior of light that will be essential to ensure the success of your design is "Reflection". This is because light maze makes use of a mirror and it's the light that is reflected that we see with our eyes. Also, the manner in which light is reflected off objects will affect the colors that are reflected as well.
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:
See explanation below
Explanation:
Hypo-eutectoid steel has less than 0,8% of C in its composition.
It is composed by pearlite and α-ferrite, whereas Hyper-eutectoid steel has between 0.8% and 2% of C, composed by pearlite and cementite.
Ferrite has a higher tensile strength than cementite but cementite is harder.
Considering that hypoeutectoid steel contains ferrite at grain boundaries and pearlite inside grains whereas hypereutectoid steel contains a higher amount of cementite, the following properties are obtainable:
Hypo-eutectoid steel has higher yield strength than Hyper-eutectoid steel
Hypo-eutectoid steel is more ductile than Hyper-eutectoid steel
Hyper-eutectoid steel is harder than Hyper-eutectoid steel
Hypo-eutectoid steel has more tensile strength than Hyper-eutectoid steel.
When making a knife or axe blade, I would choose Hyper-eutectoid steel alloy because
1. It is harder
2. It has low cost
3. It is lighter
When making a die to press powders or stamp a softer metals, I will choose hypo-eutectoid steel alloy because
1. It is ductile
2. It has high tensile strength
3. It is durable