diff options
Diffstat (limited to '1991/CH8/EX8.5/5.sce')
-rwxr-xr-x | 1991/CH8/EX8.5/5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1991/CH8/EX8.5/5.sce b/1991/CH8/EX8.5/5.sce new file mode 100755 index 000000000..eae6120e8 --- /dev/null +++ b/1991/CH8/EX8.5/5.sce @@ -0,0 +1,13 @@ +clc
+clear
+//input
+n=10 //number of rounds
+B=2*10^-2 //flux density
+a=5*10^-4 //areaof cross section
+t=10//time
+//calculation
+c=n*B*a //change in flux
+emf=c/t //induced emf
+//output
+printf("the flux changed is %3.3e Wb ",c)
+printf("\n the induced emf is %3.3e V",emf)
|