diff options
Diffstat (limited to '3648/CH19/EX19.3/Ex19_3.sce')
-rw-r--r-- | 3648/CH19/EX19.3/Ex19_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH19/EX19.3/Ex19_3.sce b/3648/CH19/EX19.3/Ex19_3.sce new file mode 100644 index 000000000..87c999788 --- /dev/null +++ b/3648/CH19/EX19.3/Ex19_3.sce @@ -0,0 +1,9 @@ +//Example 19_3
+clc();
+clear;
+//To findout how large an emf is generated
+m=0.5 //Units in H
+i=1 //Units in A
+t=0.01 //Units in sec
+emf=m*(i/t) //Units in V
+printf("The emf generated is emf=%d V",emf)
|