summaryrefslogtreecommitdiff
path: root/3856/CH17/EX17.3/Ex17_3.sce
blob: 1c85652c0c2eb4e8e68f2c5d4d27e70eb7e617c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Calculate the Magnetic field that corresponds to a precession frequency of 400 MHz 

//Example 17.3

clc;

clear;

new=400*10^6; //Precession Frequency of Hydrogen atom in s^-1

gyma=26.75*10^7; //Gyromagnetic Ratio for Hydrogen atom in T^-1 s^-1 (T=Tesla)

Bo=(2*%pi*new)/gyma; //Magnetic field strength in T

printf("Magnetic field = %.2f T",Bo);