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 /1658/CH28 | |
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 '1658/CH28')
-rwxr-xr-x | 1658/CH28/EX28.1/Ex28_1.sce | 6 | ||||
-rwxr-xr-x | 1658/CH28/EX28.10/Ex28_10.sce | 8 | ||||
-rwxr-xr-x | 1658/CH28/EX28.11/Ex28_11.sce | 12 | ||||
-rwxr-xr-x | 1658/CH28/EX28.13/Ex28_13.sce | 9 | ||||
-rwxr-xr-x | 1658/CH28/EX28.14/Ex28_14.sce | 10 | ||||
-rwxr-xr-x | 1658/CH28/EX28.15/Ex28_15.sce | 10 | ||||
-rwxr-xr-x | 1658/CH28/EX28.2/Ex28_2.sce | 6 | ||||
-rwxr-xr-x | 1658/CH28/EX28.3/Ex28_3.sce | 7 | ||||
-rwxr-xr-x | 1658/CH28/EX28.4/Ex28_4.sce | 8 | ||||
-rwxr-xr-x | 1658/CH28/EX28.5/Ex28_5.sce | 7 | ||||
-rwxr-xr-x | 1658/CH28/EX28.6/Ex28_6.sce | 10 | ||||
-rwxr-xr-x | 1658/CH28/EX28.7/Ex28_7.sce | 10 | ||||
-rwxr-xr-x | 1658/CH28/EX28.8/Ex28_8.sce | 6 | ||||
-rwxr-xr-x | 1658/CH28/EX28.9/Ex28_9.sce | 10 |
14 files changed, 119 insertions, 0 deletions
diff --git a/1658/CH28/EX28.1/Ex28_1.sce b/1658/CH28/EX28.1/Ex28_1.sce new file mode 100755 index 000000000..4cf661b4b --- /dev/null +++ b/1658/CH28/EX28.1/Ex28_1.sce @@ -0,0 +1,6 @@ +clc;
+//e.g 28.1
+fo=22*10**3;;
+C=2*10**-9;
+L=((0.159/fo)^2)/C;
+disp('H',L*1,"L=");
diff --git a/1658/CH28/EX28.10/Ex28_10.sce b/1658/CH28/EX28.10/Ex28_10.sce new file mode 100755 index 000000000..3f1c1d9a2 --- /dev/null +++ b/1658/CH28/EX28.10/Ex28_10.sce @@ -0,0 +1,8 @@ +clc;
+//e.g 28.10
+C1=0.1*10**-6;
+C2=1*10**-6;
+L=470*10**-6;
+C=(C1*C2)/(C1+C2)
+fo=1/(2*%pi*sqrt(L*C));
+disp('kHZ',fo*10**-3,"fo=");
diff --git a/1658/CH28/EX28.11/Ex28_11.sce b/1658/CH28/EX28.11/Ex28_11.sce new file mode 100755 index 000000000..853c560bc --- /dev/null +++ b/1658/CH28/EX28.11/Ex28_11.sce @@ -0,0 +1,12 @@ +clc;
+//e.g 28.11
+C1=100*10**-12;
+C2=7500*10**-12;
+f01=950*10**3;
+f02=2050*10**3;
+C=(C1*C2)/(C1+C2);
+//f01=1/(2*%pi*sqrt(L*C))
+L1=1/(4*(%pi)^2*C*f01^2);
+disp('microH',L1*10**6,"L1=");
+L2=1/(4*(%pi)^2*C*f02^2);
+disp('microH',L2*10**6,"L2=");
diff --git a/1658/CH28/EX28.13/Ex28_13.sce b/1658/CH28/EX28.13/Ex28_13.sce new file mode 100755 index 000000000..5427bd00e --- /dev/null +++ b/1658/CH28/EX28.13/Ex28_13.sce @@ -0,0 +1,9 @@ +clc;
+//e.g 28.13
+C1=0.1*10**-6;
+C2=1*10**-6;
+C3=100*10**-12;
+L=470*10**-6;
+C=1/((1/C1)+(1/C2)+(1/C3));
+fo=1/(2*%pi*sqrt(L*C));
+disp('kHZ',fo*10**-3,"fo=");
diff --git a/1658/CH28/EX28.14/Ex28_14.sce b/1658/CH28/EX28.14/Ex28_14.sce new file mode 100755 index 000000000..fd7e9a6ca --- /dev/null +++ b/1658/CH28/EX28.14/Ex28_14.sce @@ -0,0 +1,10 @@ +clc;
+//e.g 28.14
+L=0.33;
+C1=0.065*10**-12;
+C2=1*10**-12;
+R=5.5*10**3;
+fs=1/(2*%pi*sqrt(L*C1));
+disp('MHZ',fs*10**-6,"fs=");
+Q=(2*%pi*fs*L)/R;
+disp(Q);
diff --git a/1658/CH28/EX28.15/Ex28_15.sce b/1658/CH28/EX28.15/Ex28_15.sce new file mode 100755 index 000000000..b82485386 --- /dev/null +++ b/1658/CH28/EX28.15/Ex28_15.sce @@ -0,0 +1,10 @@ +clc;//e.g 28.14
+L=0.8;
+C1=0.08*10**-12;
+C2=1*10**-12;
+R=5*10**3;
+fs=1/(2*%pi*sqrt(L*C1));
+disp('MHZ',fs*10**-6,"fs=");
+C=(C1*C2)/(C1+C2);
+fp=1/(2*%pi*sqrt(L*C));
+disp('MHZ',fp*10**-6,"fp=");
diff --git a/1658/CH28/EX28.2/Ex28_2.sce b/1658/CH28/EX28.2/Ex28_2.sce new file mode 100755 index 000000000..1b085898f --- /dev/null +++ b/1658/CH28/EX28.2/Ex28_2.sce @@ -0,0 +1,6 @@ +clc;
+//e.g 28.2
+fo=2.2*10**6;
+//fo1=(sqrt(2))/sqrt(C);
+fo1=sqrt(2)*fo;
+disp('MHZ',fo1*10**-6,"fo1=");
diff --git a/1658/CH28/EX28.3/Ex28_3.sce b/1658/CH28/EX28.3/Ex28_3.sce new file mode 100755 index 000000000..6666ec1dc --- /dev/null +++ b/1658/CH28/EX28.3/Ex28_3.sce @@ -0,0 +1,7 @@ +clc;
+//e.g 28.3
+C=100*10**-12;
+L1=30*10**-6;
+L2=1*10**-8;
+fo=1/(2*%pi*sqrt((L1+L2)*C));
+disp('MHZ',fo*10**-6,"fo=");
diff --git a/1658/CH28/EX28.4/Ex28_4.sce b/1658/CH28/EX28.4/Ex28_4.sce new file mode 100755 index 000000000..2518cbcc6 --- /dev/null +++ b/1658/CH28/EX28.4/Ex28_4.sce @@ -0,0 +1,8 @@ +clc;
+//e.g 28.4
+L1=1000*10**-6;
+L2=100*10**-6;
+M=20*10**-6;
+C=20*10**-12;
+fo=1/(2*%pi*sqrt((L1+L2+2*M)*C));
+disp('MHZ',fo*10**-6,"fo=");
diff --git a/1658/CH28/EX28.5/Ex28_5.sce b/1658/CH28/EX28.5/Ex28_5.sce new file mode 100755 index 000000000..66ef611f6 --- /dev/null +++ b/1658/CH28/EX28.5/Ex28_5.sce @@ -0,0 +1,7 @@ +clc;
+//e.g 28.5
+C=1*10**-9;
+L1=4.7*10**-3;
+L2=47*10**-6;
+fo=1/(2*%pi*sqrt((L1+L2)*C));
+disp('KHZ',fo*10**-3,"fo=");
diff --git a/1658/CH28/EX28.6/Ex28_6.sce b/1658/CH28/EX28.6/Ex28_6.sce new file mode 100755 index 000000000..b2dbd0988 --- /dev/null +++ b/1658/CH28/EX28.6/Ex28_6.sce @@ -0,0 +1,10 @@ +clc;
+//e.g 28.6
+L1=2*10**-3;
+L2=20*10**-6;
+fo=950*10**3;
+C=1/(4*%pi^2*(L1+L2)*fo^2);
+disp('pF',C*10**12,"C=");
+fo=2050*10**3;
+C=1/(4*%pi^2*(L1+L2)*fo^2);
+disp('pF',C*10**12,"C=");
diff --git a/1658/CH28/EX28.7/Ex28_7.sce b/1658/CH28/EX28.7/Ex28_7.sce new file mode 100755 index 000000000..e4ff4aba1 --- /dev/null +++ b/1658/CH28/EX28.7/Ex28_7.sce @@ -0,0 +1,10 @@ +clc;
+//e.g 28.7
+L1=0.1*10**-3;
+L2=10*10**-6;
+fo=4110*10**3;
+M=20*10**-6;
+C=1/(4*%pi^2*(L1+L2+M)*fo^2);
+disp('pF',C*10**12,"C=");
+AV=(L1/L2);
+disp(AV);
diff --git a/1658/CH28/EX28.8/Ex28_8.sce b/1658/CH28/EX28.8/Ex28_8.sce new file mode 100755 index 000000000..bd82f6da0 --- /dev/null +++ b/1658/CH28/EX28.8/Ex28_8.sce @@ -0,0 +1,6 @@ +clc;
+//e.g 28.8
+fo=100*10**3;
+L=0.5*10**-3;
+C=2/(4*%pi^2*L*fo^2);
+disp('microF',C*10**6,"C=");
diff --git a/1658/CH28/EX28.9/Ex28_9.sce b/1658/CH28/EX28.9/Ex28_9.sce new file mode 100755 index 000000000..be4ebced7 --- /dev/null +++ b/1658/CH28/EX28.9/Ex28_9.sce @@ -0,0 +1,10 @@ +clc;
+//e.g 28.9
+C1=0.001*10**-6;
+C2=0.01*10**-6;
+L=5*10**-6;
+AV=C2/C1;
+disp(AV);
+C=(C1*C2)/(C1+C2)
+fo=1/(2*%pi*sqrt(L*C));
+disp('MHZ',fo*10**-6,"fo=");
|