Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

UNIVERSITY M’HAMED BOUGARA BOUMERDES.

INSTITUTE OF ELECTRICAL AND ELECTRONIC ENGINEERING.


DEPARTMENT OF POWER AND CONTROL.

Lab 03 : Newton Raphson method

Done by :

 Hamam Lyes.
 Cheboub Mohammed El bachir.

2022/2023.
Introduction

This lab describes the most commun method for solving a system of
nonlinear equations ,namely,the Newton-Raphson method .This is an
iterative method that uses initial values until no change occurs in two
consecutive iterations .we have used matlab as software to selve this type of
equation.

Objective:

 Writing a MATLAB program that solves a non-linear equation.


 Learn more about the NR algorithm

The algorithm :
Figure 1: Matlab script.
Comment:
 Figure 1 shows our MATLAB algorithm, which takes the input set of
functions and initial guesses, then it starts generating the Jacobian
matrix, after that the algorithm start a number of iteration to find the
solution, if we look at the program we see at line 31 we are working in
according to a function named as NR which is described below :
And the result are as follow :

Conclusion :

The method can be continuously applied to generate an iterative scheme


with arbitrarily specified order of convergence. We also concluded that the
Newton Raphosn method can be used very effectively to determine the
intrinsic value based on its measured permittivity. Newton Raphson
technique has many advantages such as :
 Fast convergence.
 It requires only one guess.
 Its formulation is simple so it’s very easy to apply.
 It has simple formula so it’s easy to program.

You might also like