You are on page 1of 3

JADAVPUR UNIVERSITY

OBSERVATION TABLE
Serial No

Reading of x-axis
(cm)

Reading of y-axis
(cm)

Reading of z-axis
(cm)

Value of Magnetic Field


or Flux Density
(Gauss)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

10.1
10.1
10.1
10.1
9.5
9
8.5
8.5
8.5
8.5
9
9.5
10.1
9.5
9
8.5
8.5
9.5
9

10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10

3.2
3.6
4
4.4
4.4
4.4
4.4
4
3.6
3.3
3.6
3.6
3.6
4
4
4
4.4
10.1
10.1

662
634
407
305
313
305
297
298
303
310
317
369
589
351
313
296
289
380
325

Hall Probe Constant = 501 as measured by the device


Now if we take the maximum magnetic field point as the reference point i.e. (10.1, 10, 3.2)
as the reference point then the readings will be like the table shown in the next page

NAME :- RAHUL ROY

ROLL NO :- 001311501022

JADAVPUR UNIVERSITY
Serial No

Distance from x-axis


(cm)

Distance from y-axis


(cm)

Distance from z-axis


(cm)

Value of Magnetic Field


or Flux Density
(Gauss)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

0
0
0
0
0.6
1.1
1.6
1.6
1.6
1.6
1.1
0.6
0
0.6
1.1
1.6
1.6
0.6
1.1

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0

0
0.4
0.8
1.2
1.2
1.2
1.2
0.8
0.4
0
0.4
0.4
0.4
0.8
0.8
0.8
1.2
0
0

662
634
407
305
313
305
297
298
303
310
317
369
589
351
313
296
289
380
325

Program in MATLAB
x=[0,0.6,1.1,1.6];
z=[0,0.4,0.8,1.2];
m=[662,634,407,305;380,369,351,313;325,317,313,305;310,303,298,297];
[X,Z]=meshgrid(x,z);
figure
contour(X,Z,m,20,'LineWidth',2);
colorbar;
xlabel(' x-axis co-ordinates (in cm) --------------> ');
ylabel(' z-axis co-ordinates (in cm) --------------> ');
title(' Contour plot of the Magnetic Field ');
figure
contourf(X,Z,m,20);
colorbar;
xlabel(' x-axis co-ordinates (in cm) --------------> ');
ylabel(' z-axis co-ordinates (in cm) --------------> ');
title(' Contour Filled plot of the Magnetic Field ');
figure
surf(X,Z,m);
hold on
plot3(X,Z,m,'.','MarkerSize',30)
colorbar;
xlabel(' <-------------x-axis co-ordinates ');
ylabel(' z-axis co-ordinates (in cm)
--------------> ');
zlabel(' Magnetic Field Values (Gauss) ----------------->');
title(' Surface of the Magnetic Field ');

NAME :- RAHUL ROY

ROLL NO :- 001311501022

JADAVPUR UNIVERSITY

NAME :- RAHUL ROY

ROLL NO :- 001311501022

You might also like