Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Mechanical

Uploaded on

10 May 2020

Deriving the fourth order approximation of the 2nd order derivative

logo

Skill-Lync

In studies like numerical simulations and numerical methods, orders of approximation refer to how accurate an approximation is. The higher the order of approximation, the more accurate the value is. For example, a fourth order approximation value is more accurate than a first order approximation value. In this project, we are going to derive fourth order approximation for a numerical derivative equation using two different schemes and check for the consistency.

 

Main Objective: 

The objective here is to derive the fourth order approximation of the Skewed right-hand side scheme and the central difference scheme using Taylors table and check for the consistency.

 

Numerical derivative to be discretised:

————————— Let this be equation (1)

 

Fourth order approximation for skewed right-hand side scheme:

What is Skewed scheme?

To derive the value of a parameter at a particular point, there are several schemes available. One of them is the Skewed right-hand scheme.

Consider the graph below:

(illustrative purposes only)

Let’s say that you wish to find the velocity at length = 2.5 units. Using the values of velocity at 0.5,1 and 1.5 units, you can find the velocity at length = 2.5 units (this is assuming that Δx = 0.5). This method is called as skewed left-side scheme.

If you use the Skewed scheme, it means you are using the values before or after a data point to find the value of the particular point. You are essentially ‘skewing’ the values from the neighbouring points in the number line to determine what the value of your desired point will be.

In this project, we will be using the skewed right-hand scheme where you will be skewing the values present at the right-hand side of the data point to determine the value of the data point.

 

Stencil to be used for the fourth order approximation for skewed right-hand side scheme:

To determine the derivative of an unknown point i, we will skew the values of the 5 neighbouring points present to the right of i.

Based on the stencil the second order derivative can be written as

 

Using the Taylor’s Table method, we can find out the coefficients of a,b,c,d,e,h:

 

We have 6 unknows and therefore we need 6 equations. From the Taylors table, the equation formed from the f”(x) can be assumed to be one as we need the approximation for the 2nd order derivative. The other equations excepting the fVI(x) can be assumed to be zero.

Thus, the equations created are

a + b + c + d + e + h = 0;

b + 2*c + 3*d + 4*e + 5*h = 0

b/2 + 2*c + 32*d/2 + 42*e/2 + 52*h/2 = 1

b/6 + 23*c/6 + 33*d/6 + 43*e/6 + 53*h/6 = 0

b/24 + 24*c/24 + 34*d/24 + 44*e/24 + 54*h/24 = 0

b/120 + 25*c/120 + 35*d/120 + 45*e/120 + 55*h/120 = 0

Upon solving all the equations,

a = 3.75

b = -12.83

c = 17.83

d = -13

e = 5.083

h = -0.8333

 

 

Let this be equation 2.

This equation further gets reduced to:

 

 

Let this be equation 3.

Upon dividing equation 3 by   we get,

 

 

The term  denotes the truncation error and the order of approximation. Therefore, the derived equation is of 4th order for the 2nd derivative.

 

Consistency check by evaluating the above equation for ex

The 2nd derivative for ex is also ex. Now, we will write a code in MATLAB to solve the equation from different values of dx. Upon execution, we achieve the following plot. The snippet of the code loop is shown below.

This is the loop used to calculate the numerical derivative at different time steps

 

 

 

The result is plotted using a loglog plot. The result obtained via plotting shows that the scheme is consistent.

 

 

From the above chart, we can see that for lower value of dx the error value is also low, but when the value of dx becomes too small we start to face the round off error.

 

 

In this chart we can see that, for very low values of dx (>100) the system rounds off the value and this causes an error in the system. So as the value of dx goes lower after a particular minimum value, we can see that the error starts to increase.

 

Deriving the Central difference scheme of fourth order approximation of the 2nd order derivative:

What is central difference scheme?

Central difference scheme is another scheme we can use to derive the value of a parameter at a particular point. Consider the same graph we discussed above:

(illustrative purposes only)

To find the velocity at 2.5 units using the central difference scheme, you will be using the values of the velocity at 2 units and 3 units to find the average value of velocity at 2.5 units (assuming Δx=0.5). In other words, you will average the values of the points present before and after unknown point in the number line to determine what the value of your desired point will be.

 

Stencil to be used for the fourth order approximation for Central difference scheme:

To determine the value of the data point i, we will consider two set of data points before and after the point i to find the average value of i.

 

Based on the stencil the second order derivative can be written as

 

 

Using the Taylor’s Table method, we can find out the coefficients of a,b,c,d,e:

a + b + c + d + e = 0

2*a + b + d + 2*e = 0

22*a/2 + b/2 + d/2 + 22*e/2 = 1

23*a/6 + b/6 + d/6 + 23*e/6 = 0

24*a/24 + b/24 + d/24 + 24*e/24 = 0

-25*a/120 -b/120+d/120+25*e/120 =? —————————————-(I)

Upon finding the coefficients,

a = -0.0833

b = 1.33

c = -2.5

d = 1.33

e = -0.0833

substituting the values in (I) the equation become zero, so

 

 

Rewriting the order term and dividend the equation by we get

 

 

Now the truncation error term denotes that the order of the approximation is 4th order.

 

Checking for consistency of the scheme:

Solving the above scheme in MATLAB, we can see that the value of error decreases with decrease in dx. The plot appears like this:

On further decreasing the value of dx we can see that the roundoff error again starts to show like it did above:

You can see for the given function the roundoff error starts to show up as dx is reduced.

 

Conclusion:

Thus, we have successfully derived the 4th order approximation for the 2nd derivative and checked for its consistency.

This procedure of deriving the fourth order approximation is however not followed by commercial or industrial sectors but rather only by researchers. Commercial software discretizes up to third order differentiation for approximate results in reasonable time.


Author

author

SarangarajanV


Author

blogdetails

Skill-Lync

Subscribe to Our Free Newsletter

img

Continue Reading

Related Blogs

A Guide to Help FEA Engineers Get Started With Vehicle Dynamics - Part 1

Explore the fundamentals of vehicle dynamics and ultimate trends in the field from design and modeling to control with Skill Lync's exclusive course on the subject. Read about how Skill-Lync's CAE courses can help you get employed.

Mechanical

29 Jul 2020


How Using GT-Power in CFD Can Benefit the Automation Industry

In this article, we will briefly discuss the working, applications, and features of the one-dimensional systematic simulation tool, GT-Power, in Emission Control Strategy, engine calibration, hybrid vehicle modeling. Read about how Skill-Lync's CAE courses can help you get employed.

Mechanical

29 Jul 2020


Design Basics of Geometric Dimensioning and Tolerancing

This article offers a brief introduction to the globally accepted standard of Geometric Dimensioning and Tolerancing, and its importance for the entire manufacturing process. Read about how Skill-Lync's CAE courses can help you get employed.

Mechanical

29 Jul 2020


Chapter 5 – Going a step into Biomechanics

In this blog we will read about Going a step into Biomechanics and how Skill-Lync's CAE course will help you get employed.

Mechanical

10 May 2020


The Basics of the Powertrain NVH: Part 2

The powertrain is the most prominent source of vibrations that affects the driving experience for the people on board. This blog from Skill-Lync examines these vibrations to help enhance that experience.

Mechanical

22 Aug 2020



Author

blogdetails

Skill-Lync

Subscribe to Our Free Newsletter

img

Continue Reading

Related Blogs

A Guide to Help FEA Engineers Get Started With Vehicle Dynamics - Part 1

Explore the fundamentals of vehicle dynamics and ultimate trends in the field from design and modeling to control with Skill Lync's exclusive course on the subject. Read about how Skill-Lync's CAE courses can help you get employed.

Mechanical

29 Jul 2020


How Using GT-Power in CFD Can Benefit the Automation Industry

In this article, we will briefly discuss the working, applications, and features of the one-dimensional systematic simulation tool, GT-Power, in Emission Control Strategy, engine calibration, hybrid vehicle modeling. Read about how Skill-Lync's CAE courses can help you get employed.

Mechanical

29 Jul 2020


Design Basics of Geometric Dimensioning and Tolerancing

This article offers a brief introduction to the globally accepted standard of Geometric Dimensioning and Tolerancing, and its importance for the entire manufacturing process. Read about how Skill-Lync's CAE courses can help you get employed.

Mechanical

29 Jul 2020


Chapter 5 – Going a step into Biomechanics

In this blog we will read about Going a step into Biomechanics and how Skill-Lync's CAE course will help you get employed.

Mechanical

10 May 2020


The Basics of the Powertrain NVH: Part 2

The powertrain is the most prominent source of vibrations that affects the driving experience for the people on board. This blog from Skill-Lync examines these vibrations to help enhance that experience.

Mechanical

22 Aug 2020


Related Courses

https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/matlab-python-cfd-solidworks_1612350558.png
MATLAB Python and CFD using Solidworks for Mechanical Engineering Applications
4.7
13 Hours of content
Cfd Domain
Know more
https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/masters-cae_1636551107.png
4.7
149 Hours of content
Cae Domain
https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/matlab-mechanical-engineers_1636551918.png
4.7
5 Hours of content
Cfd Domain
https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/ls-dyna-structural-mechanics-fea_1612349767.png
4.8
19 Hours of content
Cae Domain
https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/multibody-dynamics-solidworks_1636606372.jpg
4.7
3 Hours of content
Cae Domain
https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/vehicle-dynamics-matlab_1636606203.png
4.8
37 Hours of content
Cae Domain
https://d28ljev2bhqcfz.cloudfront.net/maincourse/thumb/cae-simulation-solidworks_1612352726.pngRecently launched
2 Hours of content
Cae Domain
https://d28ljev2bhqcfz.cloudfront.net/mainproject/thumb/correcting-the-normals-for-hypermesh-file-by-using-the-tcl_1616584549.jpgRecently launched
0 Hours of content
Cae Domain
Showing 1 of 13 courses