6 Nodes, 4 Elements, Size of Stiffness Matrix?

AI Thread Summary
The discussion centers on determining the dimensions of a finite element method (FEM) stiffness matrix for a configuration of six nodes with two degrees of freedom (DOFs) per node. It clarifies that the stiffness matrix is square and symmetric, with dimensions calculated as the product of the number of nodes and the DOFs per node. For six nodes with two DOFs each, the stiffness matrix size is confirmed to be 12x12. The conversation emphasizes that the arrangement of nodes and their connections do not affect the matrix size, which is solely determined by the total number of nodes and their respective DOFs. Understanding the matrix size is highlighted as a challenging aspect of FEM.
ThurmanMurman
Messages
12
Reaction score
0
Howdy,

If I have the following configuration of nodes:

2---4--6
| \ | /|
| \ | / |
| \| / |
| \/ |
1---3--5

What should the dimensions of my FEM stiffness be?

Thanks
 
Engineering news on Phys.org
Alright my attempt at formatting got messed up once I posted. Nodes 2-4-6 are equally spaced across the top, and nodes 1-3-5 sit below 2-4-6 on the bottom. 2-4-6 are respectively connected to 1-3-5 vertically, and 2 is connected to 3 diagonally, and 3 is connected to 6 diagonally.
 
The matrix size is (number of nodes) times (number of degrees of freedom per node).

The number of elements and how they connect is irrelevant.
 
So is the (number of nodes) = (number of rows) and the (DOFs per node) = (number of columns)?
 
Just to check my understanding, I think that my arrangement of nodes (4 total) with 2 DOFs each (8 total) leaves me with a 4X8 stiffness matrix. Is that correct?
 
Stiffness matrices are square and symmetric. So your stiffness matrix will be 8x8.
 
So is there a (nodes,DOFs) equation that states the size of a stiffness matrix for a system?
 
ThurmanMurman said:
So is the (number of nodes) = (number of rows) and the (DOFs per node) = (number of columns)?

No, the number of rows and columns are both equal to (number of nodes) x (DOFs per node) .

Sorry if that wasn't clear - I took it as "obvious" that stiffness matrices are square.
 
So for my 6 node example, the stiffness would be sized (number of nodes = 6) x (DOFs per node = 2) = 12 x 12?
 
  • #10
Yes.
 
  • #11
So that's the most difficult part of FEM, right?
 
Back
Top