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 /61/CH16/EX16.2 | |
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 '61/CH16/EX16.2')
-rwxr-xr-x | 61/CH16/EX16.2/ex16_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/61/CH16/EX16.2/ex16_2.sce b/61/CH16/EX16.2/ex16_2.sce new file mode 100755 index 000000000..c3a9f78d0 --- /dev/null +++ b/61/CH16/EX16.2/ex16_2.sce @@ -0,0 +1,11 @@ +//ex16.2
+A_cl=29; //A_cl=R_f/R_i;
+R3=10*10^3;
+R_f=A_cl*R3;
+disp(R_f,'value of R_f in ohms')
+//let R1=R2=R3=R and C1=C2=C3=C
+R=R3;
+C3=0.001*10^-6;
+C=C3;
+f_r=1/(2*%pi*sqrt(6)*R*C);
+disp(f_r,'frequency of oscillation in Hertz')
\ No newline at end of file |