Plate Bending Analysis With Matlab Code — Composite

[ \frac{\partial^4 w}{\partial x^2 \partial y^2} \approx \frac{ w_{i-1,j-1} - 2w_{i-1,j} + w_{i-1,j+1} - 2w_{i,j-1} + 4w_{i,j} - 2w_{i,j+1} + w_{i+1,j-1} - 2w_{i+1,j} + w_{i+1,j+1} }{\Delta x^2 \Delta y^2} ]

% Set rows for boundary to identity K(boundary_nodes, :) = 0; for n = boundary_nodes K(n,n) = 1; F(n) = 0; end Composite Plate Bending Analysis With Matlab Code

% Central difference coefficients c1 = D(1,1)/dx^4; c2 = (2*(D(1,2)+2 D(3,3)))/(dx^2 dy^2); c3 = D(2,2)/dy^4; j-1} - 2w_{i-1

Similarly for ( \partial^4 w/\partial y^4 ) and mixed derivative: j} + w_{i-1

% Reduced stiffness matrix (plane stress) Q11 = E1/(1-nu12 nu21); Q12 = nu12 E2/(1-nu12 nu21); Q22 = E2/(1-nu12 nu21); Q66 = G12;

strain_global_bot = [kxx; kyy; 2*kxy] * z_bot; stress_global_bot = Q_bar * strain_global_bot; stress_local_bot = T \ stress_global_bot;

Boundary conditions (simply supported): [ w = 0,\quad M_{xx}=0 \Rightarrow \frac{\partial^2 w}{\partial x^2}=0 \text{ on } x=0,a ] (same for y-direction)