Question

Solve with matlab

Determine the bending stiffness for the following laminates using the properties shown below. • [0]4 • [0/30]s • [0,+45], Lay

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Things will be more clear if you read this first.

1] Stiffness mabix_in principal mestnenial ones (1,2) - To 02Q66 đ Ther, G4 = E , = 6, 1-212V21 Qiz V₂ El Qe = Gia - 1-2/22 2Dats Then Bending stiffness mabix. [p] = + @bey [he-bere K 1 = 2 K -3 KEL K-5 K36 the atk-thickness of each louper For [olu t

MATLAB Part :-

Function to get transformed stiffness matrix Q_xy from Q_12 :-

Create separate file with filename same as function name(transform_stiffness.m) Don't run this file.

Function to obtain transformed stiffness matrix Q_xy in loading axes (X,Y) from stiffness matrix in principle material axes Q

Text :-

% Function to obtain transformed stiffness matrix Q_xy in loading
% axes(x,y) from stiffness matrix in principle material axes Q_12
function Q_xy = transform_stiffness(Q_12,theta)
    m = cosd(theta);        n = sind(theta);

    % Transformation matrix, T
    T = [m^2   n^2   2*m*n;
         n^2   m^2  -2*m*n;
         -m*n  m*n   m^2-n^2];

     % Transformed stiffness matrix [Qxx Qxy 2*Qxs
     %                               Qyx Qyy 2*Qys
     %                               Qsx Qsy 2*Qss]
     Q_xy = inv(T)*Q_12*T;

     % We want [Qxx Qxy Qxs
     %          Qyx Qyy Qys
     %          Qsx Qsy Qss]
     Q_xy = [Q_xy(1:3,1:2), 0.5*Q_xy(1:3,3)];
end

Script file :-

Create separate file with any name of your choice, and run this

clc; clear; # # $########### El = 128; E2 = 11; G12 = 4.5; GPa v12 = 0.25; & calculation for v21 v21 = (E2/E1) *v12; Layer Th=== tion for [0/30 ***** **** thetas = [0 30 30 0]; D2 = zeros (3,3); Initializing bending stiffness matrix h = -2*tk: tk:2*t

text :-

clc; clear;
%######################################################
%                    Layer Properties                  %
%######################################################
E1 = 128;       % GPa
E2 = 11;        % GPa
G12 = 4.5;      % GPa
v12 = 0.25;
% calculation for v21
v21 = (E2/E1)*v12;

% Layer Thickness
tk = 2.5;           % mm

%##################################################################
%        Stifnness Matrix Q12 (Principal axes)              %
%##################################################################
Q_12 = [  E1/(1-v12*v21)     v21*E1/(1-v12*v21)     0;
         v21*E1/(1-v12*v21)    E2/(1-v12*v21)       0;
                0                   0              2*G12];

%##################################################################
%                   Calculation for [0]4  , 4 layers               %
%##################################################################
thetas = [0 0 0 0];        % angles for all layers
D1 = zeros(3,3);           % Initializing bending stiffness matrix
h = -2*tk:tk:2*tk;        % hk of layers [h0,h1,...hk] -2tk to 2tk in steps of tk
for k = 1:4             % For all layers
    theta = thetas(k);
    Q_xy = transform_stiffness(Q_12,theta);     % Transformed stiffness matrix from developed function
    D1 = D1 + (1/3)*Q_xy*(h(k+1)^3 - h(k)^3);       % Summation
end
fprintf('For [0]4 laminate, bending stiffness matrix in GPa-mm^3:\n')
disp(num2str(round(D1,2)))      % Display matrix with elements rounded to 2 decimal places


%##################################################################
%                   Calculation for [0/30]s  , 4layers             %
%##################################################################
thetas = [0 30 30 0];
D2 = zeros(3,3);           % Initializing bending stiffness matrix
h = -2*tk:tk:2*tk;        % hk of layers
for k = 1:4
    theta = thetas(k);
    Q_xy = transform_stiffness(Q_12,theta);
    D2 = D2 + (1/3)*Q_xy*(h(k+1)^3 - h(k)^3);
end
fprintf('For [0/30]s laminate, bending stiffness matrix in GPa-mm^3:\n')
disp(num2str(round(D2,2)))

%##################################################################
%                   Calculation for [0,+-45]s , 6layers             %
%##################################################################
thetas = [0 45 -45 -45 45 0];
D3 = zeros(3,3);           % Initializing bending stiffness matrix
h = -3*tk:tk:3*tk;        % hk of layers, -3tk to 3tk in steps of tk
for k = 1:6
    theta = thetas(k);
    Q_xy = transform_stiffness(Q_12,theta);
    D3 = D3 + (1/3)*Q_xy*(h(k+1)^3 - h(k)^3);
end
fprintf('For [0/+-45]s laminate, bending stiffness matrix in GPa-mm^3:\n')
disp(num2str(round(D3,2)))

Results :-

For [0]4 laminate, bending stiffne 33 matrix in GPa-mm-3: 10724.27 230.4 230.4 921.62 375 For [0/30] 3 laminate, bending stif

Add a comment
Know the answer?
Add Answer to:
Solve with matlab Determine the bending stiffness for the following laminates using the properties shown below....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • please solve 2 and 3 1- The reduced stiffness matrix [Q] is given for a unidirectional...

    please solve 2 and 3 1- The reduced stiffness matrix [Q] is given for a unidirectional lamina as follows: 5.681 0.3164 0 ] [Q]=0.3164 1.217 0 Msi I 0 0 0.6006 Calculate the four engineering constants E1, E2, V12, G12 of the lamina. 2- Calculate the transformed reduced stiffness [Q] for the above problem for 0 = 30°. Glass 3- A glass/epoxy lamina consists of 70% fiber volume fraction. Use properties of glass and epoxy from the tables below to...

  • Submission Instruction: . Create a Matlab program named my_bar which can solve the following assi...

    Submission Instruction: . Create a Matlab program named my_bar which can solve the following assignments in this document and turn in the hard copy A two bar network is shown in the figure below u2 L1 し2 . Elastic Bar Properties are defined in as follows Bar 1 A1 = 4 in^2 E1 15e6 psi L1 20 irn Bar 2 A2 2.25 in^2 E2 10e6 psi L2 = 20 in Displacement BC's ulx 0 Applied Loading F3 = 20,000 lbf...

  • Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made...

    Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made up of 2 the elements (AB and CB) and the axis indicated in the figure. All members have the following properties: E = 2 -10% kPa, A = 0.005 m², 1 = 1.5e - 4 m. Also the lengths of the elements are the same: AB = BC = L = 3.1 m and 6 = 45 kN/m. ות 0 B 3 2 x...

  • Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made...

    Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made up of 2 the elements (AB and CB) and the axis indicated in the figure. All members have the following properties: E = 2 -10% kPa, A = 0.005 m², 1 = 1.5e - 4 m. Also the lengths of the elements are the same: AB = BC = L = 3.1 m and 6 = 45 kN/m. ות 0 B 3 2 x...

  • Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made...

    Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made up of 2 the elements (AB and CB) and the axis indicated in the figure. All members have the following properties: E = 2 -10% kPa, A = 0.005 m², 1 = 1.5e - 4 m. Also the lengths of the elements are the same: AB = BC = L = 3.1 m and 6 = 45 kN/m. ות 0 B 3 2 x...

  • Week 9, Question 2: Use the stiffness method to analyse the elastic frame ABC shown below....

    Week 9, Question 2: Use the stiffness method to analyse the elastic frame ABC shown below. Use a model made up of 2 the elements (AB and CB) and the axis indicated in the figure. All members have the following properties: E = 2 ·10kPa, A = 0.005 m², 1 = 1.5e – 4 m+.. Also the lengths of the elements are the same: AB = BC = L = 6.5 m and w = 12 kN/m. 0 А x...

  • please use the matlab to solve the task 2, thanks! Figure shows a simple uniform beam...

    please use the matlab to solve the task 2, thanks! Figure shows a simple uniform beam of the length L, constant mass per unit length m, and constant bending stiffness El. The beam is initially held at rest and then is dropped from the horizontal position from the height y-H. When it reaches the level y 0, it collides with the obstacles A and B at x-0 and x-a, which both automatically lock as pins on the beam's matching points...

  • 4. Consider the mechanical system shown below with a spring with stiffness, k (N/m), in parallel...

    4. Consider the mechanical system shown below with a spring with stiffness, k (N/m), in parallel with a viscous damper with coefficient, h (Nós/m) and an externally applied force, Fexi(t) (N). u(t) a. Find the equation that relates the applied force, Fext(t) and the displacement, u(t). b. If the spring component has a stiffness of k = 75 N/m, the damper component has coefficient h = 50 N s/m and the externally applied force is a constant 4.5 N applied...

  • Anyone happen to know how to write the MATLAB code for this? It's an aerospace engineering proble...

    Anyone happen to know how to write the MATLAB code for this? It's an aerospace engineering problem and I'm super confused, any help would be greatly appreciated! 105 100 225.66 K G4 = 4 X 10-3 K/m 90 80 79 165.66 K аз--4.5 x 10-3 K/m 60 ー53 а» 40 282.66 K a2-3 x 10-3 K/m 25 20 ai--6.5 X 10-3 K/im 216.66 K 288.16 K 0 160 200 240 280 320 Temperature, K For isothermal regions of the atmosphere,...

  • Please help me solve the bottom two question using Matlab and show the steps to do...

    Please help me solve the bottom two question using Matlab and show the steps to do it. Thanks. i appreciate your help (12 points each) 10. In dynamics course, a particle move in the elliptical slots due to the motion of the slotted link as shown on the figure. The normal acceleration of the particle is proportional to the velocity square over the radius of curvature (r). + y2 = 1000 _(1 + (x) 325 r(x) = — a) Calculated...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT