Q. 3 [91 The shape factor for the deflection of a flat trapezoidal leaf spring i
ID: 1767111 • Letter: Q
Question
Q. 3 [91 The shape factor for the deflection of a flat trapezoidal leaf spring is determ using the following expression: 3 K[0.6 2BB(1.3 -In B)] (1 - B)3 Complete the following MATLAB script that could be used to compute different values of B. For convenienc equation into two terms, term1 be being the term in the square bracket. K using e of coding it is recommended that you break the ing the term before the square bracket, and term2 %ME 350 Final Q 3 B input ( term term2 - disp(K) Use your calculator to determine what MATLAB would display if a value of 0.6 ts entered when prompted by the script.Explanation / Answer
clear,clc
%ME 350 Final Q3
B = input('Enter the B value');
term1= 3/(1-B)^3;
term2 = (0.6-2*B+B*(1.3-log(B)));
K = term1*term2;
disp('The value of K is')
disp(K)
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.