You are on page 1of 12

Aerospace Structures Analysis II

Assignment 2
Submitted to: Dr. Rashid Mehmood

Submitted By: Umar Saeed Malik (120101020)


6-4-2015
Draw variations of elements of a stiffness matrix of a FRC
lamina with fibers inclination angle theta.
Draw variations of elastic constants with angle of
orientation of fibers in a FRC lamina.
For all the above graphs, also write down brief
comments on the behavior.
1. Draw variations of elastic constants with angle of
orientation of fibers in a FRC lamina.

𝟏
𝑬𝒙 =
𝒄 𝟒 𝒔𝟒 𝟏 𝟐𝒗
[ + + 𝒄 𝟐 𝒔𝟐 ( − 𝒍𝒕 )]
𝑬𝒍 𝑬𝒕 𝑮𝒍𝒕 𝑬𝒕
𝟏
𝑬𝒚 =
𝒔𝟒 𝒄 𝟒 𝟏 𝟐𝒗
[ + + 𝒄 𝟐 𝒔𝟐 ( − 𝒕𝒍 )]
𝑬𝒍 𝑬𝒕 𝑮𝒍𝒕 𝑬𝒕
𝟏
𝑮𝒙𝒚 =
𝟏 𝟏 𝟐𝒗 ( 𝒄 𝟐 − 𝒔𝟐 ) 𝟐
𝟒𝒄𝟐 𝒔𝟐 [ + + 𝒍𝒕 ] +
𝑬𝒍 𝑬𝒕 𝑬𝒕 𝑮𝒍𝒕
𝑽𝒚𝒙 𝒗𝒕𝒍 𝟒 𝟏 𝟏 𝟏
= ( 𝒄 + 𝒔𝟒 ) + 𝒄 𝟐 𝒔𝟐 ( + − )
𝑬𝒚 𝑬𝒕 𝑬𝒍 𝑬𝒕 𝑮𝒍𝒕
10
x 10
9

7
Ex (N/m-2)

3
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber

10
x 10
7.5

6.5

6
Ey (N/m-2)

5.5

4.5

3.5

3
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber
10
x 10
3.5

3
Gxy (N/m-2)

2.5

1.5

1
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber

-12
x 10
7

6.5

6
Vyx /Ey (1/Nm-2)

5.5

4.5

4
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber (degrees)
Code For Question no. 1

theta = 0:15:90;
E1 = 70.*(10.^9);
E2 =30.*(10.^9);
G12= (35.*(10.^9));
V12 = 0.3;
V21 = (E2.*V12)./E1;

%%EX
a = (((cosd(theta)).^4)./E1);
b = (((sind(theta)).^4)./E2);
c = ((((cosd(theta)).^2).*(sind(theta)).^2).*((1./G12)-(2.*V12./E2)));

EX1 = 1./(a+b+c)
plot(theta,EX1)

figure
%%EY

d = (((sind(theta)).^4)./E1);
e = (((cosd(theta)).^4)./E2);
f = ((((cosd(theta)).^2).*(sind(theta)).^2).*((1./G12)-(2.*V21./E2)));

EY = 1./(d+e+f)
plot(theta,EY)
figure
%GXY
g= 4.*(((cosd(theta)).^2).*(sind(theta)).^2).*((1./E1)+(1./E2)+(2.*V12./E2));
h = (((((cosd(theta)).^2)-(sind(theta)).^2).^2)./G12);
GXY = 1./(g+h)
plot(theta,GXY)
figure
%%Vyx/Ey
i = (V21./E2).*(((cosd(theta)).^4)+((sind(theta)).^4));
j = (((cosd(theta)).^2).*(sind(theta)).^2).*((1./E1)+(1./E2)-(1./G12));
VYX_EY = i+j
plot(theta,VYX_EY)
2. Draw variations of elements of a stiffness
matrix of a FRC lamina with fibers inclination angle
theta.
10
x 10
7.5

6.5

6
C11 (Nm-2)

5.5

4.5

3.5

3
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber

9
x 10
10

6
C12 (Nm-2)

-2

-4
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber
10
x 10
7.5

6.5

6
C22 (Nm-2)

5.5

4.5

3.5

3
0 10 20 30 40 50 60 70 80 90
Orientation Angle Of Fiber

10
x 10
1.5

0.5
C16 (Nm-2)

-0.5

-1

-1.5
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber
10
x 10
1.5

0.5
C26 (Nm-2)

-0.5

-1

-1.5
0 10 20 30 40 50 60 70 80 90
Orientation Angle of Fiber

10
x 10
3.5

3
C66 (Nm-2)

2.5

2
0 10 20 30 40 50 60 70 80 90
Orientation Angle Of Fiber
Code for Question 2
theta = 0:15:90;
E1 = 70.*(10.^9);
E2 =30.*(10.^9);
G12= (35.*(10.^9));
V12 = 0.3;
V21 = (E2.*V12)./E1;

C11 = E1./(1-(V12.*V21));
C12= (V12.*E2)./(1-(V12.*V21)) ;
C21 = (V21.*E1)./(1-(V12.*V21));
C22 = E2./(1-(V12.*V21));
C66= G12;
C16 = 0;
C26 = 0;
C61= 0;
C62 = 0;

%%C11A
C11A = (C11.*((cos(theta))).^4) +
((2.*(C12+2.*C66).*(((sin(theta)).^2).*(((cos(theta)).^2)))))
+(C22.*((sin(theta)).^4))
plot(theta,C11A)
figure

%%C12A
C12A = ((C11+C22-
4.*C66).*(((sin(theta)).^2).*(((cos(theta)).^2))))+(C12.*((((cos(theta))).^4)
+(((sin(theta)).^4))))
plot(theta,C12A)
figure

%%C13A
C22A =
(C11.*((sin(theta))).^4)+((2.*(C12+2.*C66).*(((sin(theta)).^2).*(((cos(theta)
).^2)))))+(C22.*((cos(theta)).^4))
plot(theta,C22A)
figure

%%C16A
C16A = ((C11-C12-2.*C66).*(((sin(theta))).*(((cos(theta)).^3))))+((C12-
C22+2.*C66).*(((sin(theta)).^3).*(((cos(theta))))))
plot(theta, C16A)
figure

%% C26
C26A = ((C11-C12-2.*C66).*(((sin(theta)).^3).*(((cos(theta))))))+((C12-
C22+2.*C66).*(((sin(theta))).*(((cos(theta)).^3))))
plot(theta,C26A)
figure

%%C66A
C66A = ((C11+C22-(2.*C12)-
(2.*C66)).*(((sin(theta)).^2).*(((cos(theta)).^2))))+(C66.*((((cos(theta))).^
4)+(((sin(theta)).^4))))
plot(theta,C66A)

You might also like