Finite Element Method Monday, 11/11/2002 Equations assembling Displacement boundary conditions Gaussian elimination.

Slides:



Advertisements
Similar presentations
Finite Element Method CHAPTER 4: FEM FOR TRUSSES
Advertisements

Adding & Subtracting Matrices
Lecture 6; The Finite Element Method 1-dimensional spring systems (modified ) 1 Lecture 6; The Finite Element Method 1-dimensional spring systems.
4. Spring Element Dr. Ahmet Zafer Şenalp Mechanical Engineering Department Gebze Technical University.
1D MODELS Logan; chapter 2.
Introduction to Finite Elements
Solving Equations = 4x – 5(6x – 10) -132 = 4x – 30x = -26x = -26x 7 = x.
MECH593 Introduction to Finite Element Methods
BVP Weak Formulation Weak Formulation ( variational formulation) where Multiply equation (1) by and then integrate over the domain Green’s theorem gives.
MANE 4240 & CIVL 4240 Introduction to Finite Elements
Finite Element Method in Geotechnical Engineering
Weak Formulation ( variational formulation)
MECH300H Introduction to Finite Element Methods Lecture 9 Finite Element Analysis of 2-D Problems – Axi- symmetric Problems.
MESF593 Finite Element Methods HW #2 Solutions. Prob. #1 (25%) The element equations of a general tapered beam with a rectangular cross- section are given.
MECH300H Introduction to Finite Element Methods
CST ELEMENT STIFFNESS MATRIX
Tutorial Gauss-Jordan elimination. 1. Calculate the inverse matrix.
2005 February, 2 Page 1 Finite Element Analysis Basics – Part 2/2 Johannes Steinschaden.
Finite Element Analysis
MECH593 Introduction to Finite Element Methods
MANE 4240 & CIVL 4240 Introduction to Finite Elements
Section 8.3 – Systems of Linear Equations - Determinants Using Determinants to Solve Systems of Equations A determinant is a value that is obtained from.
2004 March, 4 Page 1 Finite Element Analysis Basics – Part 2/2 Johannes Steinschaden.
CHAP 0 MATHEMATICAL PRELIMINARY
7-Bar Elements in 3-D Space Dr. Ahmet Zafer Şenalp Mechanical Engineering Department Gebze Technical.
3x – 5y = 11 x = 3y + 1 Do Now. Homework Solutions 2)2x – 2y = – 6 y = – 2x 2x – 2(– 2x) = – 6 2x + 4x = – 6 6x = – 6 x = – 1y = – 2x y = – 2(– 1) y =
Matrix Solutions to Linear Systems. 1. Write the augmented matrix for each system of linear equations.
An introduction to the finite element method using MATLAB
6-Bar Elements in 2-D Space Dr. Ahmet Zafer Şenalp Mechanical Engineering Department Gebze Technical.
1 20-Oct-15 Last course Lecture plan and policies What is FEM? Brief history of the FEM Example of applications Discretization Example of FEM softwares.
Domain Range definition: T is a linear transformation, EIGENVECTOR EIGENVALUE.
10-Beam Elements in 2-D Space (Plane Frame Element) Dr. Ahmet Zafer Şenalp Mechanical Engineering.
9-Beam Element with Axial Force Dr. Ahmet Zafer Şenalp Mechanical Engineering Department Gebze Technical.
A STUDY OF THE DYNAMIC RESPONSE OF A FRACTURED TUNNEL TO PLANE WAVES Pei-cheng Xu SwRI, SanAntonio,Texas Sept. 7, 2000.
Class Opener:. Identifying Matrices Student Check:
Scientific Computing General Least Squares. Polynomial Least Squares Polynomial Least Squares: We assume that the class of functions is the class of all.
Solve a system of linear equations By reducing a matrix Pamela Leutwyler.
Chapter 1: Systems of Linear Equations and Matrices
Section 5.3 Solving Systems of Equations Using the Elimination Method There are two methods to solve systems of equations: The Substitution Method The.
3.6 Solving Systems Using Matrices You can use a matrix to represent and solve a system of equations without writing the variables. A matrix is a rectangular.
March 20, :35 AM Little 109 CES 4141 Forrest Masters A Recap of Stiffness by Definition and the Direct Stiffness Method.
Chapter 7 Finite element programming May 17, 2011.
13-Linear Triangular Element Dr. Ahmet Zafer Şenalp Mechanical Engineering Department Gebze Technical.
Chapter 4 Section 5 and 6 Finding and Using Inverses Algebra 2 Notes February 26, 2009.
11-Beam Elements in 3-D Space (Space Frame Element)
Chapter 5: Matrices and Determinants Section 5.5: Augmented Matrix Solutions.
Review Questions: Chapter 0 Given, calculate all the possible binary products of a, a T, b and b T What are the eigenvalues of the matrix ? Is it positive.
Today in Algebra 2 Get a calculator. Go over homework Notes: –Solving Systems of Equations using Elimination Homework.
Daily Vocabulary Coefficient matrix Matrix of constants.
Our task is to estimate the axial displacement u at any section x
Finite Element Method Weak form Monday, 11/4/2002.
2/16/2017 Prof Xin (Cindy) Wang
Finite Element Method in Geotechnical Engineering
Overview of Finite Element Methods
Introduction to Finite Elements
DETERMINANT definition and origin.
Introduction to Finite Element Analysis for Skeletal Structures
Implementation of 2D stress-strain Finite Element Modeling on MATLAB
FEM Steps (Displacement Method)
Applying Determinants to solve Systems of Equations 2x2 & 3x3
Find 4 A + 2 B if {image} and {image} Select the correct answer.
Review for Mid-Term Exam
FINITE ELEMENT METHOD (INTRODUCTION)
Plane Trusses (Initial notes are designed by Dr. Nazri Kamsah)
Finite element method.
FINITE ELEMENT METHOD (INTRODUCTION)
A square matrix is a matrix with the same number of columns as rows.
2x + 5y = x + 3y = 22 How can we solve this equation by elimination?
Matrix A matrix is a rectangular arrangement of numbers in rows and columns Each number in a matrix is called an Element. The dimensions of a matrix are.
Presentation transcript:

Finite Element Method Monday, 11/11/2002 Equations assembling Displacement boundary conditions Gaussian elimination

Corrections to Homework (node coordinates) We have 6 nodes, their coordinates are coor=(0.1,0.1; 0,0.6; 0.6,0; 0.5,0.4; 1.2,0.2; 1.2,0.5);

Corrections to Homework (element area) In MATLAB with the above definite of elmt and coor, the area can be calculated with A=0.5*det([1, coor(elmt(e,1),1), coor(elmt(e,1),2); … 1, coor(elmt(e,2),1), coor(elmt(e,2),2); … 1, coor(elmt(e,3),1), coor(elmt(e,3),2)])

System Equations

System Equations (matrix form)

Assembled System Equations N: number of nodes

Symmetric Stiffness Matrix

Proof of Symmetric Stiffness Matrix

MATLAB form F = [T_x+F_x; T_y+F_y] K = [Kxx,Kxy; Kyx,Kyy] If T_x, F_x, T_y, and F_y are column vector

MATLAB Matrix Equation

Displacement Boundary Conditions To solve: F = K * u u = gaussElim(K,F) u(5) u(6) u(11) u(12)

Introducing Boundary Conditions

Keep Stiffness Matrix Symmetric % apply displacement boundary condition for node 5 % in y direction ibound = 5 + nNode; for i = 1:2*nNode if(i ~= ibound) K(i,ibound)=0; K(ibound,i)=0; end F(ibound)=0;

Gaussian Elimination MATLAB Tutorial, Tutorial on subroutines. gaussElim.m:

Tractions on Displacement Boundaries