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 /2078/CH9/EX9.9 | |
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 '2078/CH9/EX9.9')
-rwxr-xr-x | 2078/CH9/EX9.9/Example9_9.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2078/CH9/EX9.9/Example9_9.sce b/2078/CH9/EX9.9/Example9_9.sce new file mode 100755 index 000000000..7f2ce0d25 --- /dev/null +++ b/2078/CH9/EX9.9/Example9_9.sce @@ -0,0 +1,21 @@ +//Exa 9.9
+clc;
+clear;
+close;
+//Given data :
+K=0.1;//shunt to mutual capacitance ratio
+CbyC1=10;
+C2byC1=(1+K)*CbyC1;
+C3byC1=(1+3*K)*CbyC1;
+C4byC1=(1+6*K)*CbyC1;
+disp("C2 is "+string(C2byC1)+" times of C1");
+disp("C3 is "+string(C3byC1)+" times of C1");
+disp("C4 is "+string(C4byC1)+" times of C1");
+//I5=I4+i4
+//omega*C5*v=omega*C4*v+omega*C1*4*v
+C5byC1=(1+10*K)*CbyC1;
+disp("C5 is "+string(C5byC1)+" times of C1");
+//I6=I5+i5
+//omega*C6*v=omega*C5*v+omega*C1*5*v
+C6byC1=(1+15*K)*CbyC1;
+disp("C6 is "+string(C6byC1)+" times of C1");
|