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...

  • 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...

  • 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 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...

  • 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...

  • please help explain in full detail and please solve using matlab if possible. thank you very...

    please help explain in full detail and please solve using matlab if possible. thank you very much!! Two-Dimensional Steady Conduction - Gas turbine Engine Technologies (Gas Turbine Blades) A major objective in advancing gas turbine engine technologies is to increase the temperature limit associated with operation of the gas turbine blades. This limit determines the permissible turbine gas inlet temperature, which in turn, strongly influences overall system performance. In addition to fabricating turbine blades from special, high temperature, high-strength super...

  • MATLAB : Practice-4 (Oct. 31/ Nov. 1) Seat No. Name: Solve the following problems and write...

    MATLAB : Practice-4 (Oct. 31/ Nov. 1) Seat No. Name: Solve the following problems and write in the answers in blue and the plot in the box. Save the file in a pdf format and submit the answer script file and the pdf file to E-Class. 1. Re-do the Sample Problem 6-11 (Flight of a model rocket), but with the following conditions. - 16N force during the first 0.2 second - Parachute open when the downward velocity reaches 25 m/s...

  • CRBEMENo 6 (16 points) Answer the following questions about rolled steel W-beams (use the sable provided...

    CRBEMENo 6 (16 points) Answer the following questions about rolled steel W-beams (use the sable provided as necessary): Which one of the following characteristics makes a W-beam "optimal" (as i. assumed for this class)? a narrowest flange width largest section modulus lightest weight shallowest depth d. Ir the beam is bent about horizontal x-x avis and requires a minimum section modulus of 43.4 in', which of the following beams would make the "short list"? (For this question only, mark all...

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
ADVERTISEMENT