Answer:
P = 4.745 kips
Explanation:
Given
ΔL = 0.01 in
E = 29000 KSI
D = 1/2 in
LAB = LAC = L = 12 in
We get the area as follows
A = π*D²/4 = π*(1/2 in)²/4 = (π/16) in²
Then we use the formula
ΔL = P*L/(A*E)
For AB:
ΔL(AB) = PAB*L/(A*E) = PAB*12 in/((π/16) in²*29*10⁶ PSI)
⇒ ΔL(AB) = (2.107*10⁻⁶ in/lbf)*PAB
For AC:
ΔL(AC) = PAC*L/(A*E) = PAC*12 in/((π/16) in²*29*10⁶ PSI)
⇒ ΔL(AC) = (2.107*10⁻⁶ in/lbf)*PAC
Now, we use the condition
ΔL = ΔL(AB)ₓ + ΔL(AC)ₓ = ΔL(AB)*Cos 30° + ΔL(AC)*Cos 30° = 0.01 in
⇒ ΔL = (2.107*10⁻⁶ in/lbf)*PAB*Cos 30°+(2.107*10⁻⁶ in/lbf)*PAC*Cos 30°= 0.01 in
Knowing that PAB*Cos 30°+PAC*Cos 30° = P
we have
(2.107*10⁻⁶ in/lbf)*P = 0.01 in
⇒ P = 4745.11 lb = 4.745 kips
The pic shown can help to understand the question.
Answer:
a. 1.91 b. -8.13 mm
Explanation:
Modulus =stress/strain; calculating stress =F/A, hence determine the strain
Poisson's ratio =(change in diameter/diameter)/strain
Answer:
A. Identify the need, recognize limitations of current toothpaste containers, and then brainstorm ideas on how to improve the existing
Explanation:
To design an improved toothpaste container, we must identify the needs of the customer, one of the major need is to make the container attractive to the sight. This is the first thing that will prompt a customer to wanting to buy the product (The reflectance/appearance).
Then recognize the limitation of the current design, what needed change. This will help in determining what is needed to be included and what should be removed based on identified customers need.
The last step is to brainstorm ideas on how to improve the existing designs. Get ideas from other colleagues because there is a saying that two heads are better than one. This will help in coming to a reasonable conclusion on the new design after taking careful consideration of people's opinion.
Answer:
b. 10A
Explanation:
Using the formula, E= k × r×I
200= 0.5 ×2000×0.02×I
200=20×I
Dividing with 20
I = 200/20= 10A
Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program