diff options
Diffstat (limited to '1172/CH2/EX2.11/Example2_11.sce')
-rwxr-xr-x | 1172/CH2/EX2.11/Example2_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1172/CH2/EX2.11/Example2_11.sce b/1172/CH2/EX2.11/Example2_11.sce new file mode 100755 index 000000000..21b9fa0c0 --- /dev/null +++ b/1172/CH2/EX2.11/Example2_11.sce @@ -0,0 +1,14 @@ +clc
+// Given That
+B = 0.2 // magnetic field in T
+del_r = 1 // rate of change of decrement in loop radius in cm/s
+r = 20 // radius of frame in cm
+R = 10 // resistance of frame in m ohm
+//Sample Problem 11 Page No. 84
+printf("\n # Problem 11 # \n ")
+e = 2* %pi * B *r *1e-2* del_r*1e-2 // magnitude of emf induced in coil
+i = (e) / (R*1e-3) //calculation of Current induced due to changing magnetic field
+ printf("Current induced due to changing magnetic field is %f A \n", i)
+
+
+
|