the global stiffness of two 4x4 matrices of truss
조회 수: 2 (최근 30일)
이전 댓글 표시
How do I make a code to assemble these two 4x4 matrices to get the 6x6 global stiffness matric as shown?
clear all;
clc;
K1=[1 1 -1 -1;
1 1 -1 -1;
-1 -1 1 1;
-1 -1 1 1];
K2=[1 -1 -1 1;
-1 1 1 -1;
-1 1 1 -1;
1 -1 -1 1];
%here are the two matrices
댓글 수: 0
채택된 답변
Fifteen12
2023년 9월 21일
편집: Fifteen12
2023년 9월 21일
To add the matrices together, just arrange them by indices.
% Dummy values for k1 and k2
k1 = ones(4,4);
k2 = ones(4,4) * 2;
% Calculate stiffness matrix
K = zeros(6,6);
K(1:4, 1:4) = k1;
K(3:6, 3:6) = K(3:6,3:6) + k2
You can make this more robust by using variables instead of hard coding the indices, but this minimal example shows the concept. Good luck with your finite elements!
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Structural Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!