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 /605/CH9/EX9.6 | |
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 '605/CH9/EX9.6')
-rwxr-xr-x | 605/CH9/EX9.6/9_6.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/605/CH9/EX9.6/9_6.sce b/605/CH9/EX9.6/9_6.sce new file mode 100755 index 000000000..0a741f5b6 --- /dev/null +++ b/605/CH9/EX9.6/9_6.sce @@ -0,0 +1,22 @@ +
+L=30
+W=40*10^6
+Wc=10*10^6
+Le=3
+E=10^(Le/10)
+Zo=50
+Wc=2*%pi*10^6*10
+L=Zo/Wc
+C=2/(Zo*Wc)
+n=1/2*(log10(10^(L/10)-1)-log10(E))/log10(W/Wc)
+printf("\nn=%.2f",n)
+printf("\ng1=%.0f\ng2=%.0f\ng3=%.0f",2*sin(%pi/6),2*sin(%pi/2),2*sin(%pi*5/6))
+printf("\n")
+printf("\nL1=L3=%.4e H",L)
+printf("\nC2=%.3e F",C)
+Zo=50
+Wc=2*%pi*10^6*10
+L=Zo*2/Wc
+C=1/(Zo*Wc)
+printf("\nL2=%.4e H",L)
+printf("\nC1=C3=%.4e F",C)
\ No newline at end of file |