All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Given function: f = exp(x)*cos(x) 2nd order derivative of the function f'' = -2*exp(x)*sin(x) 1) Developing Taylor Table for the Forward Differencing Scheme Approximation method For FDS, f = (af(x) + bf(x+dx) + cf(x+2dx) + df(x+3dx) + ef(x+4dx))/(dx^2) Table: 2) Developing Taylor Table for the Backward Differencing…
Aatas A G
updated on 26 Jul 2022
Given function:
f = exp(x)*cos(x)
2nd order derivative of the function
f'' = -2*exp(x)*sin(x)
1) Developing Taylor Table for the Forward Differencing Scheme Approximation method
For FDS, f = (af(x) + bf(x+dx) + cf(x+2dx) + df(x+3dx) + ef(x+4dx))/(dx^2)
Table:
2) Developing Taylor Table for the Backward Differencing Scheme Approximation method
For BDS, f = (af(x) + bf(x-dx) + cf(x-2dx) + df(x-3dx) + ef(x-4dx))/(dx^2)
Table:
3) Developing Taylor Table for the Central Differencing Scheme Approximation method
For CDS, f = (af(x-2dx) + bf(x-dx) + cf(x) + df(x+dx) + ef(x+2dx))/(dx^2)
Table:
Coefficient for all three approximation methods will be calcualted in MATLAB only.
Code:
Main Code:
clear all
close all
clc
%inputs
x=pi/3;
%stepsize range
dx=linspace(pi/4,pi/400,2000);
%Analytical derivative
%f(x) = exp(x)*cos(x)
%f'(x)=(exp(x)*cos(x)-(exp(x)*sin(x)=exp(x)*(cosx-sinx)
%Double derivative f" = -2*exp(x)*sin(x)
analytical_derivative = -2*exp(x)*sin(x);
%Skewed right-sided(4th order approimation)
%Solving for the coefficients
A=[1 1 1 1 1 1;0 1 2 3 4 5; 0 1/2 4/2 9/2 16/2 25/2; 0 1/6 8/6 27/6 64/6 125/6; 0 1/24 16/24 81/24 256/24 625/24; 0 1/120 32/120 243/120 1024/120 3125/120];
B=[0;0;1;0;0;0];
x_r=inv(A)*B;
%Skewed left-sided(4th order approimation)
%Solving for the coefficients
C=[1 1 1 1 1 1;0 -1 -2 -3 -4 -5; 0 1/2 4/2 9/2 16/2 25/2; 0 -1/6 -8/6 -27/6 -64/6 -125/6; 0 1/24 16/24 81/24 256/24 625/24; 0 -1/120 -32/120 -243/120 -1024/120 -3125/120];
D=[0;0;1;0;0;0];
x_l=inv(C)*D;
%central differencing(4th order approimation)
%Solving for the coefficients
E=[1, 1, 1, 1, 1; -2, -1, 0, 1, 2; 4/2, 1/2, 0, 1/2, 4/2; -8/6, -1/6, 0, 1/6, 8/6; 16/24, 1/24, 0, 1/24, 16/24];
F=[0;0;1;0;0];
x_c=E^-1*F;
%Anonymous Function
f=@(x) exp(x).*cos(x);
%numerical derivative
right_difference=(x_r(1)*f(x)+x_r(2)*f(x+dx)+x_r(3)*f(x+2.*dx)+x_r(4)*f(x+3.*dx)+x_r(5)*f(x+4.*dx)+x_r(6)*f(x+5.*dx))./(dx.^2)
left_difference=(x_r(1)*f(x)+x_r(2)*f(x-dx)+x_r(3)*f(x-2.*dx)+x_r(4)*f(x-3.*dx)+x_r(5)*f(x-4.*dx)+x_r(6)*f(x5.*dx))./(dx.^2)
cent_difference=(x_c(1)*f(x2.*dx)+x_c(2)*f(x1.*dx)+x_c(3)*f(x)+x_c(4)*f(x+dx)+x_c(5)*f(x+2.*dx))./(dx.^2)
%absolute error
error_r=abs(analytical_derivative-right_difference);
error_l=abs(analytical_derivative-left_difference);
error_c=abs(analytical_derivative-cent_difference);
error=[error_r;error_l;error_c];
figure(1)
loglog(dx,error_r)
grid on
hold on
loglog(dx,error_l)
loglog(dx,error_c)
ylabel('Absolute Error (Log Scale)')
xlabel('Grid Spacing (dx in Log Scale)')
legend('Right Differencing','Left Differencing','Central Differencing')
RESULTS:
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 4 - CHT Analysis on Exhaust port
AIM: To perform the simulation of Conjugate heat transfer analysis on given exhaust port geometry by using ANSYS FLUENT. OBJECTIVE: To study the importance of Conjugate heat transfer analysis and importance of y+ value during meshing of the components. To perform the simulation of Conjugate heat transfer analysis on given…
12 Dec 2022 08:19 AM IST
Week 10 - Simulating Combustion of Natural Gas.
AIM To perform a combustion simulation on the combustor model. Objective Part I Perform a combustion simulation on the combustor model and plot the variation of the mass fraction of the different species’ in the simulation using line probes at different locations of the combustor as shown in Fig. You need to plot…
07 Dec 2022 11:26 AM IST
Week 9 - Parametric study on Gate valve.
Aim: To perform a parametric study on Gate valve. Objective: Simulate the flow of fluid through a gate valve. Perform the parametric study on the gate valve by setting design points corresponding to the positions of the lift of the spindle. Calculate the mass flow rate corresponding to all the design points Gate…
07 Dec 2022 10:12 AM IST
Project 2
AIM: To deal with the development of a forward energy-based fuel consumption model of a P1 hybrid vehicle. OBJECTIVE: Load the Project2 folder as the Current Folder in Matlab. Run the “Project2_InitFile.m” Matlab script. Copy the Conventional vehicle Simulink model created for Project 1 in this folder. Figure…
25 Oct 2022 01:11 PM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.