4308 Final Assignment12
4308 Final Assignment12
K=
328.125 -93.750 0 0 0
-93.750 187.500 -93.750 0 0
0 -93.750 281.250 -187.500 0
0 0 -187.500 468.750 -281.250
0 0 0 -281.250 281.250
2. Solve the general eigenvalue problem to determine
the mode shapes and Eigen frequencies of the frame
structure.
(a) Calculate the circular natural frequencies ωi and the
natural periods Ti of each mode.
(b) Determine the mode shapes ϕi and normalize each
mode such that the maximum value is 1.0.
>> KT=K/1
KT =
328.125 -93.750 0 0 0
-93.750 187.500 -93.750 0 0
0 -93.750 281.250 -187.500 0
0 0 -187.500 468.750 -281.250
0 0 0 -281.250 281.250
Eigenvectors =
-0.0094 -0.0400 0.0439 0.0215 0.0000
-0.0306 -0.0521 -0.0311 -0.0468 -0.0007
-0.0473 0.0046 -0.0276 0.0440 0.0119
-0.0511 0.0289 0.0206 -0.0104 -0.1282
-0.0528 0.0409 0.0469 -0.0428 0.0413
Eigenvalues =
0.0926 0 0 0 0
0 0.8413 0 0 0
0 0 1.6103 0 0
0 0 0 2.1698 0
0 0 0 0 11.7719
>> omegas=sqrt(Eigenvalues)
omegas =
0.3043 0 0 0 0
0 0.9172 0 0 0
0 0 1.2690 0 0
0 0 0 1.4730 0
0 0 0 0 3.4310
>> T=2*pi./omegas
T=
20.6471 Inf Inf Inf Inf
Inf 6.8502 Inf Inf Inf
Inf Inf 4.9514 Inf Inf
Inf Inf Inf 4.2655 Inf
Inf Inf Inf Inf 1.8313
>> T1= 2*pi./omegas(1,1)
T1 = 20.6471
>> T2= 2*pi./omegas(2,2)
T2 = 6.8502
>> T3= 2*pi./omegas(3,3)
T3 = 4.9514
>> T4= 2*pi./omegas(4,4)
T4 = 4.2655
>> T5= 2*pi./omegas (5,5)
T5 = 1.8313
>> phi1 =Eigenvectors(:,1)./Eigenvectors(1,1)
phi1 =
1.0000
3.2580
5.0429
5.4472
5.6288
>> phi2 =Eigenvectors(:,2)./Eigenvectors(1,2)
phi2 =
1.0000
1.3014
-0.1140
-0.7214
-1.0206
>> phi3 =Eigenvectors(:,3)./Eigenvectors(1,3)
phi3 =
1.0000
-0.7083
-0.6282
0.4693
1.0693
>> phi4 =Eigenvectors(:,4)./Eigenvectors(1,4)
phi4 =
1.0000
-2.1705
2.0437
-0.4847
-1.9871
>> phi5 =Eigenvectors(:,5)./Eigenvectors(1,5)
phi5 =
1.0e+03 *
0.0010
-0.0273
0.4477
-4.8242
1.5553
>> phi(:,1) = phi1; phi(:,2) = phi2; phi(:,3) = phi3; phi(:,4) =
phi4;phi(:,5)=phi5;
>> phi
phi =
1.0e+03 *
>> phin=phi./4824.2
phin =
0.0002 0.0002 0.0002 0.0002 0.0002
0.0007 0.0003 -0.0001 -0.0004 -0.0057
0.0010 -0.0000 -0.0001 0.0004 0.0928
0.0011 -0.0001 0.0001 -0.0001 -1.0000
0.0012 -0.0002 0.0002 -0.0004 0.3224
>> u0=[-5;-2;-2;4;6]
u0 =
-5
-2
-2
4
6
>> coeff=inv(Mstar)*phi'*M*u0
coeff =
0.0192
-3.6925
-0.0960
-1.2306
-0.0001
>> syms t w1 w2 w3 w4 w5 Y
>> Y= coeff.*[cos(w1*t); cos(w2*t); cos(w3*t); cos(w4*t); cos(w5*t)]
Y=
(691190818189393*cos(t*w1))/36028797018963968
-(8314774808583819*cos(t*w2))/2251799813685248
-(864455435986445*cos(t*w3))/9007199254740992
-(5541984676715875*cos(t*w4))/4503599627370496
-(5201733627203681*cos(t*w5))/36893488147419103232
>> Y= vpa(Y,5)
Y=
0.019184*cos(t*w1)
-3.6925*cos(t*w2)
-0.095974*cos(t*w3)
-1.2306*cos(t*w4)
-0.00014099*cos(t*w5)
>> v= vpa(phi*Y,5)
v=
0.019184*cos(t*w1) - 3.6925*cos(t*w2) - 0.095974*cos(t*w3) -
1.2306*cos(t*w4) - 0.00014099*cos(t*w5)
0.062503*cos(t*w1) - 4.8053*cos(t*w2) + 0.067978*cos(t*w3) +
2.6709*cos(t*w4) + 0.003844*cos(t*w5)
0.096745*cos(t*w1) + 0.421*cos(t*w2) + 0.060287*cos(t*w3) -
2.5149*cos(t*w4) - 0.063125*cos(t*w5)
0.1045*cos(t*w1) + 2.6639*cos(t*w2) - 0.045041*cos(t*w3) +
0.59648*cos(t*w4) + 0.68018*cos(t*w5)
0.10799*cos(t*w1) + 3.7687*cos(t*w2) - 0.10262*cos(t*w3) +
2.4452*cos(t*w4) - 0.21928*cos(t*w5)
>> v=[1; 1; 1; 1; 1]
v=
1
1
1
1
1
>> Y1=(phi1'*M*v)/(phi1'*M*phi1)
Y1= 0.2230
>> Y2=(phi2'*M*v)/(phi2'*M*phi2)
Y2 = 0.4464
>> Y3=(phi3'*M*v)/(phi3'*M*phi3)
Y3 = 0.2805
>> Y4=(phi4'*M*v)/(phi4'*M*phi4)
Y4 = 0.0501
>> Y5=(phi5'*M*v)/(phi5'*M*phi5)
Y5 = 1.4052e-08
>> check = Y1*phi1 + Y2*phi2 +Y3*phi3 +Y4*phi4+Y5*phi5
check =
1.0000
1.0000
1.0000
1.0000
1.0000
MAX= 5.999691
MINI= 0.025121
0
0 50 100 150 200 250 300
-2
-4
-6
-8
(c) It is a Sine wave. If the difference in the displacement (u) of the
structure is significant, then it may pose issue in the structural
stability.
(d) ERROR- 0.11454
APPENDIX-
loop P^ U U. U.. U AB
0 0 6 0 -17.2194 6
Fig- U vs Loop
0
0 50 100 150 200 250 300
-2
-4
-6
-8
Fig- U Error
8
0
0 50 100 150 200 250 300
-2
-4
-6
-8