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 /2582/CH3/EX3.15/Ex3_15.sce | |
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 '2582/CH3/EX3.15/Ex3_15.sce')
-rwxr-xr-x | 2582/CH3/EX3.15/Ex3_15.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2582/CH3/EX3.15/Ex3_15.sce b/2582/CH3/EX3.15/Ex3_15.sce new file mode 100755 index 000000000..76e787826 --- /dev/null +++ b/2582/CH3/EX3.15/Ex3_15.sce @@ -0,0 +1,13 @@ +//Ex 3.15
+clc;clear;close;
+format('v',6);
+fo=1*1000;//Hz
+fo_dash=1.5*1000;//Hz
+C=0.01;//micro F(have to choose C, 0.01<C<1)
+R=1/(2*%pi*fo*C*10^-6)/1000;//kohm
+K=1.2*1000/fo_dash;//scaling factor
+Rdash=K*R;///kohm
+disp("Design values are :");
+disp(C,"Capacitance(micro F)");
+disp(R,"Resistance R(kohm)");
+disp(Rdash,"Resistance Rdash(kohm)");
|