diff options
Diffstat (limited to '1319/CH13/EX13.8/ii_8.sce')
-rw-r--r-- | 1319/CH13/EX13.8/ii_8.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1319/CH13/EX13.8/ii_8.sce b/1319/CH13/EX13.8/ii_8.sce new file mode 100644 index 000000000..2f14f6b3f --- /dev/null +++ b/1319/CH13/EX13.8/ii_8.sce @@ -0,0 +1,14 @@ +// To Compute the Maximum Induced EMF
+
+clc;
+clear;
+
+T=1/50;
+fluxmax=0.02;
+N=100;
+
+flux= fluxmax*(poly([1 -4/T],'t','c'));// Flux Equation under consideration.
+
+e=N*(-1)*derivat(flux);
+
+disp('volts',e,'The Maximum induced EMF= ')
|