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 /2231/CH1/EX1.40 | |
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 '2231/CH1/EX1.40')
-rwxr-xr-x | 2231/CH1/EX1.40/Ex_1_40.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2231/CH1/EX1.40/Ex_1_40.sce b/2231/CH1/EX1.40/Ex_1_40.sce new file mode 100755 index 000000000..762399a98 --- /dev/null +++ b/2231/CH1/EX1.40/Ex_1_40.sce @@ -0,0 +1,17 @@ +//Example 1_40
+clc;
+clear;close;
+
+//Given data:
+V=230;//V
+R1=2;//ohm
+R2=5;//ohm
+R3=1;//ohm
+R4=6;//ohm
+R5=5;//ohm
+Isqr_t=30;//A^2-s
+R=R1+R2*R3/(R2+R3);//ohm(X grounded)
+Ifault=sqrt(2)*V/R;//A
+tc=Isqr_t/Ifault^2;//s
+disp(tc,"Fault clearing time in seconds");
+
|