SlideShare ist ein Scribd-Unternehmen logo
1 von 12
Downloaden Sie, um offline zu lesen
Point Collocation Method
FEM - Introduction - Methods of Solving Differential Equations
Suddhasheel Ghosh, PhD
Department of Civil Engineering
Jawaharlal Nehru Engineering College
N-6 CIDCO, 431003
Advanced Numerical Methods Series
shudh (JNEC) PCM MEStru2k1617 1 / 12
DiffEq1
Introduction to terminology
Given a differential equation
Ψ
d2y
dx2
,
dy
dx
, y, x = 0, (1)
and the initial conditions,
F1
dy
dx
, y, x = a = 0 F2
dy
dx
, y, x = b = 0
So, given the points x1 = a, x2, x3, . . . , xi, . . . , xn, xn+1 = b, it is desired to
find the solution of the differential equation at the points
xj, ∀j = 2, . . . , n. The points xj, j = 2, . . . , n are known as the points of
collocation.
shudh (JNEC) PCM MEStru2k1617 2 / 12
DiffEq1
A second-order Boundary Value Problem
A boundary value problem is given as follows:
d2y
dx2
+ P(x)
dx
dy
+ Q(x)y = R(x)
along with the conditions
y(x1) = A, y(xn+1) = B
shudh (JNEC) PCM MEStru2k1617 3 / 12
Collocation Method
Point collocation Method
Derivative calculation
Assume that
y =
n
i=0
αixi
.
Therefore, we will have
dy
dx
=
n
i=0
i · αixi−1
,
and
d2y
dx2
=
n
i=0
i(i − 1)αixi−2
shudh (JNEC) PCM MEStru2k1617 4 / 12
Collocation Method
Point collocation Method I
Substitution and formulation
Substituting these in the differential equation, we have
n
i=0
i(i − 1)αixi−2
+ P(x)
n
i=0
i · αixi−1
+ Q(x)
n
i=0
αixi
= R(x).
Thus giving,
n
i=0
αi i(i − 1)xi−2
+ ixi−1
P(x) + xi
Q(x) = R(x)
The aim of the interpolation method is to “agree” at the node points,
and therefore, we shall have:
n
i=0
αi i(i − 1)xi−2
j + ixi−1
j P(xj) + xi
jQ(xj) = R(xj), ∀j = 2, . . . , n
shudh (JNEC) PCM MEStru2k1617 5 / 12
Collocation Method
Point collocation Method II
Substitution and formulation
For the nodes x1 and xn+1, we have the following conditions:
n
i=0
αixi
1 = A
n
i=0
αixi
n+1 = B
shudh (JNEC) PCM MEStru2k1617 6 / 12
Collocation Method
Point collocation Method
Matrix formulation of the problem


1 x1 x2
1
. . . xn
1
Q(x2) P(x2) (2 + 2x2P(x2) + x2
2
Q(x2)) . . . [n(n − 1)xn−2
2
+ nP(x2)xn−1
2
+ xn
2
Q(x2)]
...
... . . . . . .
...
Q(xn) P(xn) (2 + 2xnP(xn) + x2
nQ(xn)) . . . [n(n − 1)xn−2
n + nP(xn)xn−1
n + xn
nQ(xn)]
1 xn+1 x2
n+1
. . . xn
n+1




α0
α1
...
αn−1
αn


=


A
R(x2)
...
R(xn)
B


The solution can then be achieved by any of the standard methods like Gauss-Siedel,
Gaussian Elimination or Gauss-Jordan Elimination.
shudh (JNEC) PCM MEStru2k1617 7 / 12
Collocation Method
Point collocation method I
Example
Use the point collocation method to solve the following differential
equation:
d2y
dx2
− y = x
Use the boundary conditions y(x = 0) = 0 and y(x = 1) = 0. Choose
x = 0.25 and x = 0.5 as collocation points. (Desai, Eldho, Shah)
Solution: There are four points where we are considering the solution
for, x = 0, 0.25, 0.5, 1. We label them as x1, x2, x3, x4. Since there are four
points, we will consider a cubic polynomial.
y = α0 + α1x + α2x2
+ α3x3
shudh (JNEC) PCM MEStru2k1617 8 / 12
Collocation Method
Point collocation method II
Example
We have
dy
dx
= α1 + 2α2x + 3α3x2
d2y
dx2
= 2α2 + 6α3x
Substituting these in the given differential equation, we have
2α2 + 6α3x − α0 − α1x − α2x2
− α3x3
= x
−α0 − α1x + (2 − x2
)α2 + (6x − x3
)α3 = x
From the first boundary condition y(x = 0) = 0, we have
α0 + α1(0) + α2(02
) + α3(03
) = 0 =⇒ α0 = 0 (2)
shudh (JNEC) PCM MEStru2k1617 9 / 12
Collocation Method
Point collocation method III
Example
From the second boundary condition y(x = 1) = 0, we have
α0 + α1(1) + α2(12
) + α3(13
) = 0 =⇒ α1 + α2 + α3 = 0 (3)
At the collocation points, we have the following equations:
For x = 0.25, we have
−α1(0.25) + (2 − (0.25)2
)α2 + (6 × 0.25 − (0.25)3
) = 0.25
−0.25α1 + 1.9375α2 + 1.4844α3 = 0.25 (4)
For x = 0.5, we have
−0.5α1 + (2 − 0.52
)α2 + (6 × 0.5 − 0.53
) = 0.5
−0.5α1 + 1.75α2 + 2.875α3 = 0.5 (5)
shudh (JNEC) PCM MEStru2k1617 10 / 12
Collocation Method
Point collocation method IV
Example
Using the equations above, we have the following matrix based
arrangement


1 1 1
−0.25 1.9375 1.4844
−0.5 1.75 2.875




α1
α2
α3


=


0
0.25
0.5


(6)
which gives on the inverse operation,
α1 = −0.1459, α2 = −0.006738, α3 = 0.1526
Therefore the polynomial approximation for y is
y = 0.1459x − 0.006738x2
+ 0.1526x3
(7)
shudh (JNEC) PCM MEStru2k1617 11 / 12
Collocation Method
Thank you!
shudh (JNEC) PCM MEStru2k1617 12 / 12

Weitere ähnliche Inhalte

Was ist angesagt?

Newton’s Forward & backward interpolation
Newton’s Forward &  backward interpolation Newton’s Forward &  backward interpolation
Newton’s Forward & backward interpolation Meet Patel
 
Euler and improved euler method
Euler and improved euler methodEuler and improved euler method
Euler and improved euler methodSohaib Butt
 
A brief introduction to finite difference method
A brief introduction to finite difference methodA brief introduction to finite difference method
A brief introduction to finite difference methodPrateek Jha
 
aem : Fourier series of Even and Odd Function
aem :  Fourier series of Even and Odd Functionaem :  Fourier series of Even and Odd Function
aem : Fourier series of Even and Odd FunctionSukhvinder Singh
 
Numerical integration;Gaussian integration one point, two point and three poi...
Numerical integration;Gaussian integration one point, two point and three poi...Numerical integration;Gaussian integration one point, two point and three poi...
Numerical integration;Gaussian integration one point, two point and three poi...vaibhav tailor
 
presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve Mukuldev Khunte
 
Newton Forward Difference Interpolation Method
Newton Forward Difference Interpolation MethodNewton Forward Difference Interpolation Method
Newton Forward Difference Interpolation MethodAdeel Rasheed
 
Newton's forward & backward interpolation
Newton's forward & backward interpolationNewton's forward & backward interpolation
Newton's forward & backward interpolationHarshad Koshti
 
03 truncation errors
03 truncation errors03 truncation errors
03 truncation errorsmaheej
 
FEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's MethodFEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's MethodSuddhasheel GHOSH, PhD
 
Newton backward interpolation
Newton backward interpolationNewton backward interpolation
Newton backward interpolationMUHAMMADUMAIR647
 
Finite difference method
Finite difference methodFinite difference method
Finite difference methodDivyansh Verma
 
Interpolation In Numerical Methods.
 Interpolation In Numerical Methods. Interpolation In Numerical Methods.
Interpolation In Numerical Methods.Abu Kaisar
 
Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2propaul
 
MATLAB : Numerical Differention and Integration
MATLAB : Numerical Differention and IntegrationMATLAB : Numerical Differention and Integration
MATLAB : Numerical Differention and IntegrationAinul Islam
 
3 bessel's functions
3 bessel's functions3 bessel's functions
3 bessel's functionsMayank Maruka
 
Cauchy integral theorem & formula (complex variable & numerical method )
Cauchy integral theorem & formula (complex variable & numerical method )Cauchy integral theorem & formula (complex variable & numerical method )
Cauchy integral theorem & formula (complex variable & numerical method )Digvijaysinh Gohil
 

Was ist angesagt? (20)

Newton’s Forward & backward interpolation
Newton’s Forward &  backward interpolation Newton’s Forward &  backward interpolation
Newton’s Forward & backward interpolation
 
Euler and improved euler method
Euler and improved euler methodEuler and improved euler method
Euler and improved euler method
 
A brief introduction to finite difference method
A brief introduction to finite difference methodA brief introduction to finite difference method
A brief introduction to finite difference method
 
aem : Fourier series of Even and Odd Function
aem :  Fourier series of Even and Odd Functionaem :  Fourier series of Even and Odd Function
aem : Fourier series of Even and Odd Function
 
Numerical integration;Gaussian integration one point, two point and three poi...
Numerical integration;Gaussian integration one point, two point and three poi...Numerical integration;Gaussian integration one point, two point and three poi...
Numerical integration;Gaussian integration one point, two point and three poi...
 
presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve
 
Newton Forward Difference Interpolation Method
Newton Forward Difference Interpolation MethodNewton Forward Difference Interpolation Method
Newton Forward Difference Interpolation Method
 
Newton's forward & backward interpolation
Newton's forward & backward interpolationNewton's forward & backward interpolation
Newton's forward & backward interpolation
 
03 truncation errors
03 truncation errors03 truncation errors
03 truncation errors
 
FEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's MethodFEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's Method
 
Euler and runge kutta method
Euler and runge kutta methodEuler and runge kutta method
Euler and runge kutta method
 
Newton backward interpolation
Newton backward interpolationNewton backward interpolation
Newton backward interpolation
 
Finite difference method
Finite difference methodFinite difference method
Finite difference method
 
1532 fourier series
1532 fourier series1532 fourier series
1532 fourier series
 
Interpolation In Numerical Methods.
 Interpolation In Numerical Methods. Interpolation In Numerical Methods.
Interpolation In Numerical Methods.
 
Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2
 
MATLAB : Numerical Differention and Integration
MATLAB : Numerical Differention and IntegrationMATLAB : Numerical Differention and Integration
MATLAB : Numerical Differention and Integration
 
3 bessel's functions
3 bessel's functions3 bessel's functions
3 bessel's functions
 
Interpolation Methods
Interpolation MethodsInterpolation Methods
Interpolation Methods
 
Cauchy integral theorem & formula (complex variable & numerical method )
Cauchy integral theorem & formula (complex variable & numerical method )Cauchy integral theorem & formula (complex variable & numerical method )
Cauchy integral theorem & formula (complex variable & numerical method )
 

Andere mochten auch

Lisa's Master's Thesis Project
Lisa's Master's Thesis ProjectLisa's Master's Thesis Project
Lisa's Master's Thesis ProjectLisa Ueda
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Suddhasheel GHOSH, PhD
 
Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4Suddhasheel GHOSH, PhD
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Suddhasheel GHOSH, PhD
 
Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Suddhasheel GHOSH, PhD
 
The LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeXThe LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeXSuddhasheel GHOSH, PhD
 
The LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationThe LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationSuddhasheel GHOSH, PhD
 
Meshless Point collocation Method For 1D and 2D Groundwater Flow Simulation
Meshless Point collocation Method For 1D and 2D Groundwater Flow SimulationMeshless Point collocation Method For 1D and 2D Groundwater Flow Simulation
Meshless Point collocation Method For 1D and 2D Groundwater Flow SimulationAshvini Kumar
 
Collocations presentation
Collocations presentationCollocations presentation
Collocations presentationBochica
 
An Introduction to the Finite Element Method
An Introduction to the Finite Element MethodAn Introduction to the Finite Element Method
An Introduction to the Finite Element MethodMohammad Tawfik
 
Check your vocabulary for natural english collocations
Check your vocabulary for natural english collocationsCheck your vocabulary for natural english collocations
Check your vocabulary for natural english collocationsThúy Elish
 
English advanced vocabulary and structure practice
English advanced vocabulary and structure practiceEnglish advanced vocabulary and structure practice
English advanced vocabulary and structure practicemllr21
 

Andere mochten auch (16)

Lisa's Master's Thesis Project
Lisa's Master's Thesis ProjectLisa's Master's Thesis Project
Lisa's Master's Thesis Project
 
45324291 a-good-ph d-student
45324291 a-good-ph d-student45324291 a-good-ph d-student
45324291 a-good-ph d-student
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
 
Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2
 
Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3
 
The LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeXThe LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeX
 
The LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationThe LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: Invocation
 
Meshless Point collocation Method For 1D and 2D Groundwater Flow Simulation
Meshless Point collocation Method For 1D and 2D Groundwater Flow SimulationMeshless Point collocation Method For 1D and 2D Groundwater Flow Simulation
Meshless Point collocation Method For 1D and 2D Groundwater Flow Simulation
 
Collocation
CollocationCollocation
Collocation
 
Collocations presentation
Collocations presentationCollocations presentation
Collocations presentation
 
Collocation in use
Collocation in useCollocation in use
Collocation in use
 
An Introduction to the Finite Element Method
An Introduction to the Finite Element MethodAn Introduction to the Finite Element Method
An Introduction to the Finite Element Method
 
Check your vocabulary for natural english collocations
Check your vocabulary for natural english collocationsCheck your vocabulary for natural english collocations
Check your vocabulary for natural english collocations
 
English advanced vocabulary and structure practice
English advanced vocabulary and structure practiceEnglish advanced vocabulary and structure practice
English advanced vocabulary and structure practice
 
Build Features, Not Apps
Build Features, Not AppsBuild Features, Not Apps
Build Features, Not Apps
 

Ähnlich wie Point Collocation Method used in the solving of Differential Equations, particularly in Finite Element Methods

Solve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares MethodSolve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares MethodSuddhasheel GHOSH, PhD
 
Lab lecture 2 bresenham
Lab lecture 2 bresenhamLab lecture 2 bresenham
Lab lecture 2 bresenhamsimpleok
 
Integration techniques
Integration techniquesIntegration techniques
Integration techniquesKrishna Gali
 
Numerical solution of the Schr¨odinger equation
Numerical solution of the Schr¨odinger equationNumerical solution of the Schr¨odinger equation
Numerical solution of the Schr¨odinger equationMohamed Ramadan
 
C2 st lecture 4 handout
C2 st lecture 4 handoutC2 st lecture 4 handout
C2 st lecture 4 handoutfatima d
 
Computer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptxComputer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptxR S Anu Prabha
 
Advanced Engineering Mathematics Solutions Manual.pdf
Advanced Engineering Mathematics Solutions Manual.pdfAdvanced Engineering Mathematics Solutions Manual.pdf
Advanced Engineering Mathematics Solutions Manual.pdfWhitney Anderson
 
Binomial theorem for any index
Binomial theorem for any indexBinomial theorem for any index
Binomial theorem for any indexindu psthakur
 
Straight-Line-Graphs-Final -2.pptx
Straight-Line-Graphs-Final -2.pptxStraight-Line-Graphs-Final -2.pptx
Straight-Line-Graphs-Final -2.pptxKviskvis
 
The Multivariate Gaussian Probability Distribution
The Multivariate Gaussian Probability DistributionThe Multivariate Gaussian Probability Distribution
The Multivariate Gaussian Probability DistributionPedro222284
 

Ähnlich wie Point Collocation Method used in the solving of Differential Equations, particularly in Finite Element Methods (20)

Solve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares MethodSolve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares Method
 
Gr 11 equations
Gr 11   equationsGr 11   equations
Gr 11 equations
 
Lab lecture 2 bresenham
Lab lecture 2 bresenhamLab lecture 2 bresenham
Lab lecture 2 bresenham
 
Integration techniques
Integration techniquesIntegration techniques
Integration techniques
 
Numerical solution of the Schr¨odinger equation
Numerical solution of the Schr¨odinger equationNumerical solution of the Schr¨odinger equation
Numerical solution of the Schr¨odinger equation
 
Bayes gauss
Bayes gaussBayes gauss
Bayes gauss
 
C2 st lecture 4 handout
C2 st lecture 4 handoutC2 st lecture 4 handout
C2 st lecture 4 handout
 
Sect5 1
Sect5 1Sect5 1
Sect5 1
 
02 basics i-handout
02 basics i-handout02 basics i-handout
02 basics i-handout
 
MA8353 TPDE
MA8353 TPDEMA8353 TPDE
MA8353 TPDE
 
Computer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptxComputer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptx
 
Advanced Engineering Mathematics Solutions Manual.pdf
Advanced Engineering Mathematics Solutions Manual.pdfAdvanced Engineering Mathematics Solutions Manual.pdf
Advanced Engineering Mathematics Solutions Manual.pdf
 
Unit2 vrs
Unit2 vrsUnit2 vrs
Unit2 vrs
 
Binomial theorem for any index
Binomial theorem for any indexBinomial theorem for any index
Binomial theorem for any index
 
Randomized algorithms ver 1.0
Randomized algorithms ver 1.0Randomized algorithms ver 1.0
Randomized algorithms ver 1.0
 
Sect5 2
Sect5 2Sect5 2
Sect5 2
 
Straight-Line-Graphs-Final -2.pptx
Straight-Line-Graphs-Final -2.pptxStraight-Line-Graphs-Final -2.pptx
Straight-Line-Graphs-Final -2.pptx
 
The Multivariate Gaussian Probability Distribution
The Multivariate Gaussian Probability DistributionThe Multivariate Gaussian Probability Distribution
The Multivariate Gaussian Probability Distribution
 
Sample question paper 2 with solution
Sample question paper 2 with solutionSample question paper 2 with solution
Sample question paper 2 with solution
 
Calculo integral - Larson
Calculo integral - LarsonCalculo integral - Larson
Calculo integral - Larson
 

Kürzlich hochgeladen

Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 

Kürzlich hochgeladen (20)

Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 

Point Collocation Method used in the solving of Differential Equations, particularly in Finite Element Methods

  • 1. Point Collocation Method FEM - Introduction - Methods of Solving Differential Equations Suddhasheel Ghosh, PhD Department of Civil Engineering Jawaharlal Nehru Engineering College N-6 CIDCO, 431003 Advanced Numerical Methods Series shudh (JNEC) PCM MEStru2k1617 1 / 12
  • 2. DiffEq1 Introduction to terminology Given a differential equation Ψ d2y dx2 , dy dx , y, x = 0, (1) and the initial conditions, F1 dy dx , y, x = a = 0 F2 dy dx , y, x = b = 0 So, given the points x1 = a, x2, x3, . . . , xi, . . . , xn, xn+1 = b, it is desired to find the solution of the differential equation at the points xj, ∀j = 2, . . . , n. The points xj, j = 2, . . . , n are known as the points of collocation. shudh (JNEC) PCM MEStru2k1617 2 / 12
  • 3. DiffEq1 A second-order Boundary Value Problem A boundary value problem is given as follows: d2y dx2 + P(x) dx dy + Q(x)y = R(x) along with the conditions y(x1) = A, y(xn+1) = B shudh (JNEC) PCM MEStru2k1617 3 / 12
  • 4. Collocation Method Point collocation Method Derivative calculation Assume that y = n i=0 αixi . Therefore, we will have dy dx = n i=0 i · αixi−1 , and d2y dx2 = n i=0 i(i − 1)αixi−2 shudh (JNEC) PCM MEStru2k1617 4 / 12
  • 5. Collocation Method Point collocation Method I Substitution and formulation Substituting these in the differential equation, we have n i=0 i(i − 1)αixi−2 + P(x) n i=0 i · αixi−1 + Q(x) n i=0 αixi = R(x). Thus giving, n i=0 αi i(i − 1)xi−2 + ixi−1 P(x) + xi Q(x) = R(x) The aim of the interpolation method is to “agree” at the node points, and therefore, we shall have: n i=0 αi i(i − 1)xi−2 j + ixi−1 j P(xj) + xi jQ(xj) = R(xj), ∀j = 2, . . . , n shudh (JNEC) PCM MEStru2k1617 5 / 12
  • 6. Collocation Method Point collocation Method II Substitution and formulation For the nodes x1 and xn+1, we have the following conditions: n i=0 αixi 1 = A n i=0 αixi n+1 = B shudh (JNEC) PCM MEStru2k1617 6 / 12
  • 7. Collocation Method Point collocation Method Matrix formulation of the problem   1 x1 x2 1 . . . xn 1 Q(x2) P(x2) (2 + 2x2P(x2) + x2 2 Q(x2)) . . . [n(n − 1)xn−2 2 + nP(x2)xn−1 2 + xn 2 Q(x2)] ... ... . . . . . . ... Q(xn) P(xn) (2 + 2xnP(xn) + x2 nQ(xn)) . . . [n(n − 1)xn−2 n + nP(xn)xn−1 n + xn nQ(xn)] 1 xn+1 x2 n+1 . . . xn n+1     α0 α1 ... αn−1 αn   =   A R(x2) ... R(xn) B   The solution can then be achieved by any of the standard methods like Gauss-Siedel, Gaussian Elimination or Gauss-Jordan Elimination. shudh (JNEC) PCM MEStru2k1617 7 / 12
  • 8. Collocation Method Point collocation method I Example Use the point collocation method to solve the following differential equation: d2y dx2 − y = x Use the boundary conditions y(x = 0) = 0 and y(x = 1) = 0. Choose x = 0.25 and x = 0.5 as collocation points. (Desai, Eldho, Shah) Solution: There are four points where we are considering the solution for, x = 0, 0.25, 0.5, 1. We label them as x1, x2, x3, x4. Since there are four points, we will consider a cubic polynomial. y = α0 + α1x + α2x2 + α3x3 shudh (JNEC) PCM MEStru2k1617 8 / 12
  • 9. Collocation Method Point collocation method II Example We have dy dx = α1 + 2α2x + 3α3x2 d2y dx2 = 2α2 + 6α3x Substituting these in the given differential equation, we have 2α2 + 6α3x − α0 − α1x − α2x2 − α3x3 = x −α0 − α1x + (2 − x2 )α2 + (6x − x3 )α3 = x From the first boundary condition y(x = 0) = 0, we have α0 + α1(0) + α2(02 ) + α3(03 ) = 0 =⇒ α0 = 0 (2) shudh (JNEC) PCM MEStru2k1617 9 / 12
  • 10. Collocation Method Point collocation method III Example From the second boundary condition y(x = 1) = 0, we have α0 + α1(1) + α2(12 ) + α3(13 ) = 0 =⇒ α1 + α2 + α3 = 0 (3) At the collocation points, we have the following equations: For x = 0.25, we have −α1(0.25) + (2 − (0.25)2 )α2 + (6 × 0.25 − (0.25)3 ) = 0.25 −0.25α1 + 1.9375α2 + 1.4844α3 = 0.25 (4) For x = 0.5, we have −0.5α1 + (2 − 0.52 )α2 + (6 × 0.5 − 0.53 ) = 0.5 −0.5α1 + 1.75α2 + 2.875α3 = 0.5 (5) shudh (JNEC) PCM MEStru2k1617 10 / 12
  • 11. Collocation Method Point collocation method IV Example Using the equations above, we have the following matrix based arrangement   1 1 1 −0.25 1.9375 1.4844 −0.5 1.75 2.875     α1 α2 α3   =   0 0.25 0.5   (6) which gives on the inverse operation, α1 = −0.1459, α2 = −0.006738, α3 = 0.1526 Therefore the polynomial approximation for y is y = 0.1459x − 0.006738x2 + 0.1526x3 (7) shudh (JNEC) PCM MEStru2k1617 11 / 12
  • 12. Collocation Method Thank you! shudh (JNEC) PCM MEStru2k1617 12 / 12