summaryrefslogtreecommitdiff
path: root/3311/CH13/EX13.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3311/CH13/EX13.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3311/CH13/EX13.6')
-rwxr-xr-x3311/CH13/EX13.6/Ex13_6.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3311/CH13/EX13.6/Ex13_6.sce b/3311/CH13/EX13.6/Ex13_6.sce
new file mode 100755
index 000000000..d72a72a3d
--- /dev/null
+++ b/3311/CH13/EX13.6/Ex13_6.sce
@@ -0,0 +1,25 @@
+// chapter 13
+// example 13.6
+// Design a suitable selenium voltage protection circuit and compute energy dissipated per plate
+// page-814
+clear;
+clc;
+// given
+Edc=440; // in V
+Imax=120; // in A
+R=0.175; // in ohm
+T=25; // in ms (time constant)
+V=40; // in V
+// calculate
+T=T*1E-3; // changing unit from ms to s
+n=Edc/V; // calculation of number of plates in each branch
+N=3*n; // calculation of total number of plates
+L=T*R; // calculation of armature circuit inductance
+E_stored=(1/2)*L*Imax^2; // calculation of energy stored in armature
+E_dissipated=E_stored/11; // calculation of energy dissipated per plate
+printf("\nThe number of plates in each branch is \t n=%.f",n);
+printf("\nThe total number of plates is \t N=%.f",N);
+printf("\nThe armature circuit inductance is \t L=%.2f mH",L*1E3);
+printf("\nThe energy stored in armature is \t E_stored=%.1f W",E_stored);
+printf("\nThe energy dissipated per plate is \t E_dissipated=%.2f W",E_dissipated);
+// Note : The value of time constant given in the book is 25 ms but in calculation the author has used 30 ms. Thats why answers in the book are wrong \ No newline at end of file