Composite plate bending analysis involves determining the deflections, strains, and stresses in a multi-layered structure subjected to transverse loads. Because composite laminates are anisotropic and inhomogeneous through their thickness, their behavior is significantly more complex than that of isotropic plates. Key Theoretical Frameworks
Different plate theories are used based on the thickness of the plate and the desired accuracy:
Classical Laminated Plate Theory (CLPT): Analogous to Kirchhoff-Love theory for thin plates. It assumes that lines normal to the mid-surface remain straight and normal after deformation, effectively neglecting transverse shear strains.
First-Order Shear Deformation Theory (FSDT): Based on the Reissner-Mindlin model, this theory accounts for transverse shear by assuming that normals remain straight but not necessarily perpendicular to the mid-surface. It is more accurate for "moderately thick" plates but requires a shear correction factor to adjust for the assumption of constant shear through the thickness.
Higher-Order Shear Deformation Theories (HSDT): These use higher-order polynomials to represent the displacement field, allowing for a more realistic parabolic shear stress distribution across the thickness without needing empirical correction factors. The ABD Matrix: Laminate Stiffness
The core of composite analysis is the ABD matrix, which relates the in-plane force resultants ( ) and moment resultants ( ) to the mid-plane strains ( ϵ0epsilon sub 0 ) and curvatures (
[NM]=[ABBD][ϵ0κ]the 2 by 1 column matrix; cap N, cap M end-matrix; equals the 2 by 2 matrix; Row 1: cap A, cap B; Row 2: cap B, cap D end-matrix; the 2 by 1 column matrix; epsilon sub 0, kappa end-matrix; A deformation-based unified theory for composite plates
This article provides a comprehensive overview of the static analysis of laminated composite plates using First-Order Shear Deformation Theory (FSDT) and provides a functional MATLAB script to calculate deflections. Composite Plate Bending Analysis With MATLAB Code Composite Plate Bending Analysis With Matlab Code
Laminated composite plates are staples in aerospace, automotive, and marine engineering due to their high strength-to-weight ratios. Unlike isotropic materials (like steel), composites are orthotropic; their properties depend on the orientation of the fibers. Analyzing their bending behavior requires accounting for coupling effects between stretching, twisting, and bending. 1. Theoretical Framework: FSDT
While Classical Laminated Plate Theory (CLPT) ignores transverse shear, First-Order Shear Deformation Theory (FSDT)—often called Reissner-Mindlin theory—provides higher accuracy for moderately thick plates. It assumes that a straight line normal to the mid-surface remains straight but not necessarily perpendicular after deformation.
The constitutive relationship for a laminate is defined by the ABD Matrix:
A (Extensional stiffness): Relates in-plane strains to in-plane forces.
B (Coupling stiffness): Relates bending to in-plane forces (zero for symmetric layups).
D (Bending stiffness): Relates curvatures to bending moments. 2. The Solution Strategy To solve for displacement (
), we typically use the Navier Solution for simply supported plates. This method expresses the load and the displacement as a double Fourier series. 3. MATLAB Code: Bending of a Symmetric Laminate Matrix B: Will be essentially zero because the
The following code calculates the center deflection of a simply supported rectangular composite plate under a sinusoidal load.
% Composite Plate Bending Analysis (FSDT) clear; clc; % 1. Material Properties (e.g., Carbon/Epoxy) E1 = 175e9; % Pa E2 = 7e9; % Pa G12 = 3.5e9; % Pa nu12 = 0.25; nu21 = nu12 * E2 / E1; % 2. Plate Geometry and Mesh a = 1.0; % Length (m) b = 1.0; % Width (m) h = 0.01; % Total Thickness (m) q0 = -10000; % Applied Load (N/m^2) % 3. Layup Sequence (Angles in degrees) layup = [0, 90, 90, 0]; n_layers = length(layup); t_layer = h / n_layers; z = -h/2 : t_layer : h/2; % Z-coordinates of layer interfaces % 4. Initialize ABD Matrices A = zeros(3,3); B = zeros(3,3); D = zeros(3,3); % Reduced Stiffness Matrix (Q) for orthotropic ply Q_bar = zeros(3,3); Q11 = E1 / (1 - nu12*nu21); Q12 = nu12 * E2 / (1 - nu12*nu21); Q22 = E2 / (1 - nu12*nu21); Q66 = G12; Q = [Q11, Q12, 0; Q12, Q22, 0; 0, 0, Q66]; % 5. Build ABD Matrix for i = 1:n_layers theta = deg2rad(layup(i)); T = [cos(theta)^2, sin(theta)^2, 2*sin(theta)*cos(theta); sin(theta)^2, cos(theta)^2, -2*sin(theta)*cos(theta); -sin(theta)*cos(theta), sin(theta)*cos(theta), cos(theta)^2-sin(theta)^2]; Q_layer = inv(T) * Q * (T'); % Transformed stiffness A = A + Q_layer * (z(i+1) - z(i)); B = B + 0.5 * Q_layer * (z(i+1)^2 - z(i)^2); D = D + (1/3) * Q_layer * (z(i+1)^3 - z(i)^3); end % 6. Navier Solution (Simplified for m=1, n=1) m = 1; n = 1; alpha = m * pi / a; beta = n * pi / b; % Bending Stiffness Component (D11 for a simple case) % For a symmetric cross-ply, w_max calculation: D11 = D(1,1); D12 = D(1,2); D22 = D(2,2); D66 = D(3,3); w_center = q0 / (pi^4 * (D11*(m/a)^4 + 2*(D12 + 2*D66)*(m/a)^2*(n/b)^2 + D22*(n/b)^4)); fprintf('Max Central Deflection: %.6f mm\n', w_center * 1000); Use code with caution. 4. Interpreting Results
Symmetry: If your B matrix is non-zero, the plate will experience "warping" even under pure tension.
Lamination Parameters: Changing the layup array in the code allows you to see how a 90∘90 raised to the composed with power outer layer significantly reduces stiffness compared to a 0∘0 raised to the composed with power orientation.
Convergence: For complex loading (like a point load), you would wrap the solution in a for loop to sum the Fourier series (e.g., 5. Conclusion
MATLAB is an ideal tool for this analysis because it handles the matrix inversions and transformations of orthotropic properties seamlessly. This script serves as a foundation; for more complex geometries or boundary conditions, one would transition to the Finite Element Method (FEM).
If you run the code with the provided [0/90/0] stack: The $0^\circ$ plies carry most of the load
We developed a complete MATLAB code for bending analysis of symmetric composite plates based on Classical Laminated Plate Theory and finite difference method. The code successfully predicts deflection under uniform load and can be adapted for various layups and boundary conditions.
For unsymmetric laminates, the current model provides an approximation; a full ( 3 \times 3 ) block system is required for rigorous results. Nevertheless, this implementation is an excellent foundation for engineers and researchers exploring composite structures.
The current code can be extended to:
For a laminate consisting of multiple orthotropic layers, the resultant forces and moments are related to mid-plane strains and curvatures by:
[ \beginBmatrix \mathbfN \ \mathbfM \endBmatrix = \beginbmatrix \mathbfA & \mathbfB \ \mathbfB & \mathbfD \endbmatrix \beginBmatrix \boldsymbol\varepsilon^0 \ \boldsymbol\kappa \endBmatrix ]
Where:
These are computed by integrating the transformed reduced stiffness matrix ( \barQ_ij ) through the thickness.