quad3.fem

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· FEM 代码 · 共 47 行

FEM
47
字号
% "Test of Bilinear Quadrilateral" from UCB online FEM course
% http://titan.colorado.edu/courses.d/IFEM.d/ (Chapter 23 p. 23-6)

% This is the rectangular geometry

% NOTE: THIS ELEMENT HAS NO EXTERNAL FORCES APPLIED TO IT!

<Node>
	0	% Global node number
	2 0 0	% Y
<Node>
	1	% Global node number
	2 2 0	% Y
<Node>
	2	% Global node number
	2 2 1	% Y
<Node>
	3	% Global node number
	2 0 1	% Y

<END>	% End of nodes

<MaterialLinearElasticity>
	0	% Global material number
	E  : 96	% Young modulus
	A  : 0	% Crossection area
	I  : 0	% Moment of inertia
	nu : 0.33333	% Poisson's ratio
	h  : 1
	RhoC : 1
	END:	% End of material definition

<END>	% End of materials

<Element2DC0LinearQuadrilateralStress>
	0	% Global element number
	0	% Node 1 ID
	1	% Node 2 ID
	2	% Node 3 ID
	3	% Node 4 ID
	0	% Material ID

<END>	% End of elements


<END>	% End of loads

⌨️ 快捷键说明

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