SlideShare a Scribd company logo
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
Ad

More Related Content

What's hot (20)

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
Suddhasheel GHOSH, PhD
 
Galerkin method
Galerkin methodGalerkin method
Galerkin method
tenoriocederj
 
Lecture3
Lecture3Lecture3
Lecture3
Ahmed Al-abdaly
 
Finite difference method
Finite difference methodFinite difference method
Finite difference method
Divyansh Verma
 
least squares approach in finite element method
least squares approach in finite element methodleast squares approach in finite element method
least squares approach in finite element method
sabiha khathun
 
Runge Kutta Method
Runge Kutta Method Runge Kutta Method
Runge Kutta Method
Bhavik Vashi
 
General steps of the finite element method
General steps of the finite element methodGeneral steps of the finite element method
General steps of the finite element method
mahesh gaikwad
 
Recurrence relation of Bessel's and Legendre's function
Recurrence relation of Bessel's and Legendre's functionRecurrence relation of Bessel's and Legendre's function
Recurrence relation of Bessel's and Legendre's function
Partho Ghosh
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
aman1894
 
First order non-linear partial differential equation & its applications
First order non-linear partial differential equation & its applicationsFirst order non-linear partial differential equation & its applications
First order non-linear partial differential equation & its applications
Jayanshu Gundaniya
 
Fourier integral
Fourier integralFourier integral
Fourier integral
Vikshit Ganjoo
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equation
Nofal Umair
 
Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2
propaul
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
wraithxjmin
 
Partial differentiation B tech
Partial differentiation B techPartial differentiation B tech
Partial differentiation B tech
Raj verma
 
Gaussian quadratures
Gaussian quadraturesGaussian quadratures
Gaussian quadratures
Tarun Gehlot
 
Jacobi and gauss-seidel
Jacobi and gauss-seidelJacobi and gauss-seidel
Jacobi and gauss-seidel
arunsmm
 
FIRST ORDER DIFFERENTIAL EQUATION
 FIRST ORDER DIFFERENTIAL EQUATION FIRST ORDER DIFFERENTIAL EQUATION
FIRST ORDER DIFFERENTIAL EQUATION
AYESHA JAVED
 
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
Suddhasheel GHOSH, PhD
 
Finite Element Methods
Finite Element  MethodsFinite Element  Methods
Finite Element Methods
Dr.Vikas Deulgaonkar
 
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
Suddhasheel GHOSH, PhD
 
Finite difference method
Finite difference methodFinite difference method
Finite difference method
Divyansh Verma
 
least squares approach in finite element method
least squares approach in finite element methodleast squares approach in finite element method
least squares approach in finite element method
sabiha khathun
 
Runge Kutta Method
Runge Kutta Method Runge Kutta Method
Runge Kutta Method
Bhavik Vashi
 
General steps of the finite element method
General steps of the finite element methodGeneral steps of the finite element method
General steps of the finite element method
mahesh gaikwad
 
Recurrence relation of Bessel's and Legendre's function
Recurrence relation of Bessel's and Legendre's functionRecurrence relation of Bessel's and Legendre's function
Recurrence relation of Bessel's and Legendre's function
Partho Ghosh
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
aman1894
 
First order non-linear partial differential equation & its applications
First order non-linear partial differential equation & its applicationsFirst order non-linear partial differential equation & its applications
First order non-linear partial differential equation & its applications
Jayanshu Gundaniya
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equation
Nofal Umair
 
Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2Finite Element Analysis - UNIT-2
Finite Element Analysis - UNIT-2
propaul
 
Partial differentiation B tech
Partial differentiation B techPartial differentiation B tech
Partial differentiation B tech
Raj verma
 
Gaussian quadratures
Gaussian quadraturesGaussian quadratures
Gaussian quadratures
Tarun Gehlot
 
Jacobi and gauss-seidel
Jacobi and gauss-seidelJacobi and gauss-seidel
Jacobi and gauss-seidel
arunsmm
 
FIRST ORDER DIFFERENTIAL EQUATION
 FIRST ORDER DIFFERENTIAL EQUATION FIRST ORDER DIFFERENTIAL EQUATION
FIRST ORDER DIFFERENTIAL EQUATION
AYESHA JAVED
 
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
Suddhasheel GHOSH, PhD
 

Viewers also liked (16)

Lisa's Master's Thesis Project
Lisa's Master's Thesis ProjectLisa's Master's Thesis Project
Lisa's Master's Thesis Project
Lisa Ueda
 
45324291 a-good-ph d-student
45324291 a-good-ph d-student45324291 a-good-ph d-student
45324291 a-good-ph d-student
Suddhasheel GHOSH, PhD
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
Suddhasheel 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 4
Suddhasheel GHOSH, PhD
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2
Suddhasheel 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 3
Suddhasheel 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 LaTeX
Suddhasheel 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: Invocation
Suddhasheel 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 Simulation
Ashvini Kumar
 
Collocation
CollocationCollocation
Collocation
Riwaty Putri Intan Simanungkalit
 
Collocations presentation
Collocations presentationCollocations presentation
Collocations presentation
Bochica
 
Collocation in use
Collocation in useCollocation in use
Collocation in use
Ahmad Zakki Mualana
 
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
Mohammad 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 collocations
Thúy Elish
 
English advanced vocabulary and structure practice
English advanced vocabulary and structure practiceEnglish advanced vocabulary and structure practice
English advanced vocabulary and structure practice
mllr21
 
Build Features, Not Apps
Build Features, Not AppsBuild Features, Not Apps
Build Features, Not Apps
Natasha Murashev
 
Lisa's Master's Thesis Project
Lisa's Master's Thesis ProjectLisa's Master's Thesis Project
Lisa's Master's Thesis Project
Lisa Ueda
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
Suddhasheel 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 4
Suddhasheel GHOSH, PhD
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2
Suddhasheel 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 3
Suddhasheel 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 LaTeX
Suddhasheel 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: Invocation
Suddhasheel 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 Simulation
Ashvini Kumar
 
Collocations presentation
Collocations presentationCollocations presentation
Collocations presentation
Bochica
 
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
Mohammad 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 collocations
Thúy Elish
 
English advanced vocabulary and structure practice
English advanced vocabulary and structure practiceEnglish advanced vocabulary and structure practice
English advanced vocabulary and structure practice
mllr21
 
Ad

Similar to Point Collocation Method used in the solving of Differential Equations, particularly in Finite Element Methods (20)

2.Line,circle drawing.ppt line circlw drawing algorith
2.Line,circle drawing.ppt line circlw drawing algorith2.Line,circle drawing.ppt line circlw drawing algorith
2.Line,circle drawing.ppt line circlw drawing algorith
SwatiChauhan63735
 
Gr 11 equations
Gr 11   equationsGr 11   equations
Gr 11 equations
Renate Rohrs
 
Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...
Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...
Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...
physics2024
 
Lab lecture 2 bresenham
Lab lecture 2 bresenhamLab lecture 2 bresenham
Lab lecture 2 bresenham
simpleok
 
Integration techniques
Integration techniquesIntegration techniques
Integration techniques
Krishna 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 equation
Mohamed Ramadan
 
Bayes gauss
Bayes gaussBayes gauss
Bayes gauss
Rafael Bustamante Romaní
 
Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...
Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...
Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...
financemanag
 
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
electricaleng2024
 
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
solution9159
 
C2 st lecture 4 handout
C2 st lecture 4 handoutC2 st lecture 4 handout
C2 st lecture 4 handout
fatima d
 
Sect5 1
Sect5 1Sect5 1
Sect5 1
inKFUPM
 
02 basics i-handout
02 basics i-handout02 basics i-handout
02 basics i-handout
sheetslibrary
 
MA8353 TPDE
MA8353 TPDEMA8353 TPDE
MA8353 TPDE
rmkceteee
 
Computer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptxComputer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptx
R 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.pdf
Whitney Anderson
 
Unit2 vrs
Unit2 vrsUnit2 vrs
Unit2 vrs
Akhilesh Deshpande
 
Binomial theorem for any index
Binomial theorem for any indexBinomial theorem for any index
Binomial theorem for any index
indu psthakur
 
Randomized algorithms ver 1.0
Randomized algorithms ver 1.0Randomized algorithms ver 1.0
Randomized algorithms ver 1.0
Dr. C.V. Suresh Babu
 
Sect5 2
Sect5 2Sect5 2
Sect5 2
inKFUPM
 
2.Line,circle drawing.ppt line circlw drawing algorith
2.Line,circle drawing.ppt line circlw drawing algorith2.Line,circle drawing.ppt line circlw drawing algorith
2.Line,circle drawing.ppt line circlw drawing algorith
SwatiChauhan63735
 
Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...
Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...
Answers to Problems for Advanced Engineering Mathematics, 7th Edition by Denn...
physics2024
 
Lab lecture 2 bresenham
Lab lecture 2 bresenhamLab lecture 2 bresenham
Lab lecture 2 bresenham
simpleok
 
Integration techniques
Integration techniquesIntegration techniques
Integration techniques
Krishna 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 equation
Mohamed Ramadan
 
Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...
Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...
Answers to Problems for Advanced Engineering Mathematics, 6th Edition – Denni...
financemanag
 
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
Solutions for Problems in "A First Course in Differential Equations" (11th Ed...
electricaleng2024
 
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
Answers to Problems for Advanced Engineering Mathematics 6th Edition Internat...
solution9159
 
C2 st lecture 4 handout
C2 st lecture 4 handoutC2 st lecture 4 handout
C2 st lecture 4 handout
fatima d
 
Computer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptxComputer graphics LINE DRAWING algorithm.pptx
Computer graphics LINE DRAWING algorithm.pptx
R 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.pdf
Whitney Anderson
 
Binomial theorem for any index
Binomial theorem for any indexBinomial theorem for any index
Binomial theorem for any index
indu psthakur
 
Ad

Recently uploaded (20)

ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
Guru Nanak Technical Institutions
 
hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .
NABLAS株式会社
 
twin tower attack 2001 new york city
twin  tower  attack  2001 new  york citytwin  tower  attack  2001 new  york city
twin tower attack 2001 new york city
harishreemavs
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
Automatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and BeyondAutomatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and Beyond
NU_I_TODALAB
 
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink DisplayHow to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
CircuitDigest
 
Control Methods of Noise Pollutions.pptx
Control Methods of Noise Pollutions.pptxControl Methods of Noise Pollutions.pptx
Control Methods of Noise Pollutions.pptx
vvsasane
 
Lecture - 7 Canals of the topic of the civil engineering
Lecture - 7  Canals of the topic of the civil engineeringLecture - 7  Canals of the topic of the civil engineering
Lecture - 7 Canals of the topic of the civil engineering
MJawadkhan1
 
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
ajayrm685
 
Frontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend EngineersFrontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend Engineers
Michael Hertzberg
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdfDavid Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry
 
DED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedungDED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedung
nabilarizqifadhilah1
 
Modeling the Influence of Environmental Factors on Concrete Evaporation Rate
Modeling the Influence of Environmental Factors on Concrete Evaporation RateModeling the Influence of Environmental Factors on Concrete Evaporation Rate
Modeling the Influence of Environmental Factors on Concrete Evaporation Rate
Journal of Soft Computing in Civil Engineering
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Journal of Soft Computing in Civil Engineering
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .
NABLAS株式会社
 
twin tower attack 2001 new york city
twin  tower  attack  2001 new  york citytwin  tower  attack  2001 new  york city
twin tower attack 2001 new york city
harishreemavs
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
Automatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and BeyondAutomatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and Beyond
NU_I_TODALAB
 
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink DisplayHow to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
CircuitDigest
 
Control Methods of Noise Pollutions.pptx
Control Methods of Noise Pollutions.pptxControl Methods of Noise Pollutions.pptx
Control Methods of Noise Pollutions.pptx
vvsasane
 
Lecture - 7 Canals of the topic of the civil engineering
Lecture - 7  Canals of the topic of the civil engineeringLecture - 7  Canals of the topic of the civil engineering
Lecture - 7 Canals of the topic of the civil engineering
MJawadkhan1
 
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
ajayrm685
 
Frontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend EngineersFrontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend Engineers
Michael Hertzberg
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdfDavid Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry
 
DED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedungDED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedung
nabilarizqifadhilah1
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 

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
  翻译: