⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 truss.m

📁 The Finite Element Method Usign MATLAB.pdf
💻 M
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 2D Truss (Chapter 2)        %
% Haim Waisman, Rensselaer    %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear all;
close all; 
 
% include global variables
include_flags;  

% Preprocessor Phase 
 [K,f,d]	= preprocessor;

% Calculation and assembly of element matrices
for e = 1:nel
    ke	= trusselem(e);
    K	= assembly(K,e,ke);
end

% Solution Phase
 [d,f_E]	= solvedr(K,f,d);
 
% Postprocessor Phase 
postprocessor(d)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -