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

📄 input_file5_3_2ele.m

📁 The Finite Element Method Usign MATLAB.pdf
💻 M
字号:
% Input Data for Example 5.3 from Chapter 5 (2 element)

nsd = 1;     % number of space dimensions 
ndof =1;     % number of degrees of freedom per node
nnp = 5;     % number of nodal points
nel = 2;     % number of elements
nen = 3;     % number of element nodes
 
neq = ndof*nnp;         % number of equations


f = zeros(neq,1);      % initialize force vector
d = zeros(neq,1);      % initialize displacement matrix
K = zeros(neq);        % initialize stiffness matrix

flags = zeros(neq,1);   % initialize flag vector
e_bc = zeros(neq,1);   % initialize vector of essential boundary condition
n_bc = zeros(neq,1);   % initialize vector of natural boundary condition

% element characteristics (given at the element nodes)
E      =  8*ones(nnp,1);                  % Young's modulus
body   =  8*ones(nnp,1);                  % bodey forces
CArea  =  [4     7    10    11    12]';   % area function

% gauss integration
ngp    = 2;                          % number of gauss points

% essential B.C.'s (displacements or temperatures)
flags(1) = 2;                 % flags to indicate the nodes location for the essential B.C
e_bc(1) = 0;                  % value of essential B.C
nd      = 1;                  % number of essential B.C

% natural B.C.'s (stresses or fluxes)
flags(5) = 1;                 % flags to indicate the nodes location for the natural B.C
n_bc(5) = 0;                  % value of natural B.C
 

% point forces applied at any point 
P        = 24;      % array of point forces  
xp       = 5;       % array of x coordinates at which point forces are applied
np       = 1;       % number of point forces

% output plots
plot_bar    = 'yes';
plot_nod    = 'yes';
nplot       = nnp*10;  % number of points to plot the displacement and stress


% mesh generation
bar_mesh5_3_2ele;

⌨️ 快捷键说明

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