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

📄 input_file_16ele.m

📁 The Finite Element Method Usign MATLAB.pdf
💻 M
字号:
% Input Data for Example 9.3 (16 element mesh)

% material properties
E  = 30e6;     % Young's modulus 
ne = 0.3;      % Poisson's ratio  
D  = E/(1-ne^2) * [1    ne     0            % constitutive matrix
                   ne    1     0  
                   0     0     (1-ne)/2];
               
% mesh specifications
nsd  = 2;          % number of space dimensions
nnp  = 25;         % number of nodal nodes
nel  = 16;         % number of elements
nen  = 4;          % number of element nodes 
ndof = 2;          % degrees of freedom per node
neq  = nnp*ndof;   % number of equations



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

counter    = zeros(nnp,1);  % counter of nodes for the stress plots
nodestress = zeros(nnp,3);  % stresses at nodes for the stress plots [sxx syy sxy]

flags = zeros(neq,1);  % array to set B.C flags 
e_bc  = zeros(neq,1);  % essential B.C array
n_bc  = zeros(neq,1);  % natural B.C array


P     = zeros(neq,1);       % point forces applied at nodes
b     = zeros(nen*ndof,nel);    % body forces defined at nodes

ngp   = 2;             % number of gauss points in each direction

nd    = 10;             % number of essential boundary conditions

% essential B.C.
ind1 = 1:10:(21-1)*ndof+1;    % all x dofs along the line y=0
ind2 = 2:10:(21-1)*ndof+2;    % all y dofs along the line x=0 
flags(ind1) = 2;      e_bc(ind1)  = 0.0;
flags(ind2) = 2;      e_bc(ind2)  = 0.0;



% plots
plot_mesh      = 'yes';
%plot_nod       = 'yes';
plot_disp      = 'yes';
compute_stress = 'yes';
plot_stress_xx = 'yes';
plot_mises     = 'yes';
fact           = 9.221e3;      % factor for scaled displacements plot


% natural B.C  - defined on edges 
n_bc    = [  21    22    23    24          % node 1
             22    23    24    25          % node 2
              0     0     0     0          %  traction at node 1 in x 
            -20   -20   -20   -20          %  traction at node 1 in y 
              0     0     0     0          %  traction at node 2 in x
            -20   -20   -20   -20];        %  traction at node 2 in y 
nbe = 4;


% mesh generation
 mesh2d;


 
 

⌨️ 快捷键说明

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