diff options
Diffstat (limited to '3669/CH7/EX7.8/8.sce')
-rw-r--r-- | 3669/CH7/EX7.8/8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3669/CH7/EX7.8/8.sce b/3669/CH7/EX7.8/8.sce new file mode 100644 index 000000000..123c657ae --- /dev/null +++ b/3669/CH7/EX7.8/8.sce @@ -0,0 +1,12 @@ +
+//Variable declaration
+r=5.29*10**-11; //radius(m)
+B=2; //flux density(Wb/m**2)
+e=1.6*10**-19;
+m=9.1*10**-31; //mass(kg)
+
+//Calculation
+d_mew=e**2*r**2*B/(4*m); //change in magnetic moment(A m**2)
+
+//Result
+printf('change in magnetic moment is %0.3f *10**-29 Am**2 \n',(d_mew*10**29))
\ No newline at end of file |