diff options
Diffstat (limited to '3856/CH17/EX17.3/Ex17_3.sce')
-rw-r--r-- | 3856/CH17/EX17.3/Ex17_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3856/CH17/EX17.3/Ex17_3.sce b/3856/CH17/EX17.3/Ex17_3.sce new file mode 100644 index 000000000..1c85652c0 --- /dev/null +++ b/3856/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,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);
|