Answer:
divide then add XD my guy this is easy
Explanation:
Answer:
Matlab code with step by step explanation and output results are given below
Explanation:
We have to construct a Matlab function that creates a row vector "countValues" with elements 1 to endValue. That means it starts from 1 and ends at the value provided by the user (endValue).
function countValues = CreateArray(endValue)
% Here we construct a row vector countValues from 1:endValue
countValues = 1:endValue;
% then we transpose this row vector into column vector
countValues = countValues';
end
Output:
Calling this function with the endValue=11 returns following output
CreateArray(11)
ans =
1
2
3
4
5
6
7
8
9
10
11
Hence the function works correctly. It creates a row vector then transposes it and makes it a column vector.
Answer:
Conduction is the transfer of heat by contact, mostly in solids (metals especially) . In conduction, the molecules of the body in contact with the hot body vibrates about a fixed point. The vibration causes collision between these vibrating molecules and their neighboring molecule, causing them to vibrate too; creating a wave of vibrating molecules that transfer the heat along the solid material.
Convection is the transfer of heat in fluids (liquids and gases), that involves the initial heat transfer between a portion of the fluids molecules and the hot body (conduction) at the thermal boundary, and then the eventual movement of that portion of the fluid from that position to a colder part of the fluid. The heated fluid is replaced by a colder fluid (this is due to buoyant forces due to difference in density of the cold and the warm parts of the fluid). This movement ensure thorough mixing of the fluid and the eventual heating up of the entire fluid.
From the above statements one can clearly see that convection is comprised of an initial heat transfer by conduction at the thermal boundary, followed by movement of the fluid molecules.
Answer:
Engineers work in teams to design and implement various products using specific processes.
I have attached an image showing the shear stresses and direction.
Answer:
Resolved shear stress = 5.6MPa
Explanation:
From the diagram attached,
Cos λ = [(0,-1,1)•(0,0,1)]/[(√(0^2 + (-1)^2 + 1^2)) + (√(0^2 + 0^2 + 1^2))]
= 1/(√2 x√1) = 1/√2
Also, Cos Φ = [(1,1,1)•(0,0,1)]/[(√(1^2 + 1^2 + 1^2)) + (√(0^2 + 0^2 + 1^2))]
= 1/(√3 x√1) = 1/√3
So resolved shear stress (τ resolved) = 13.7 x (1/√2) x (1/√3) = 13.7 x (1/√6) = 5.593 or approximately 5.6MPa