summaryrefslogtreecommitdiff
path: root/3648/CH19/EX19.6/Ex19_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH19/EX19.6/Ex19_6.sce')
-rw-r--r--3648/CH19/EX19.6/Ex19_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH19/EX19.6/Ex19_6.sce b/3648/CH19/EX19.6/Ex19_6.sce
new file mode 100644
index 000000000..c0041d96a
--- /dev/null
+++ b/3648/CH19/EX19.6/Ex19_6.sce
@@ -0,0 +1,11 @@
+//Example 19_6
+clc();
+clear;
+//To find the emf induced in the rod
+b=0.6*10^-4 //Units in T
+v=3 //Units in meters/sec
+d=5 //Units in meters
+theta=53 //Units in degrees
+thetaa=cos(theta*%pi/180) //Units in radians
+emf=b*v*d*thetaa //Units in V
+printf("The emf induced in the rod is emf=%.6f V",emf)