diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1055/CH15/EX15.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1055/CH15/EX15.3')
-rwxr-xr-x | 1055/CH15/EX15.3/ch15_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1055/CH15/EX15.3/ch15_3.sce b/1055/CH15/EX15.3/ch15_3.sce new file mode 100755 index 000000000..92e336e6b --- /dev/null +++ b/1055/CH15/EX15.3/ch15_3.sce @@ -0,0 +1,12 @@ +// To Determine the average rate of rise of restriking voltage
+clear
+clc;
+Vm=132*sqrt(2)/sqrt(3);
+K1=.9;
+K2=1.5
+K=K1*K2;
+sinq=.92;
+Vr=K*Vm*sinq;
+fn=16*(10^3);
+RRRV=2*Vr*(10^-6)*fn*2;
+mprintf("average rate of rise of restriking voltage,RRRV=%.3f kV/micro-sec\n",RRRV);
|