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 /1133/CH4/EX4.5 | |
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 '1133/CH4/EX4.5')
-rwxr-xr-x | 1133/CH4/EX4.5/Example4_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1133/CH4/EX4.5/Example4_5.sce b/1133/CH4/EX4.5/Example4_5.sce new file mode 100755 index 000000000..dd7ecb040 --- /dev/null +++ b/1133/CH4/EX4.5/Example4_5.sce @@ -0,0 +1,13 @@ +//Example 4.5
+clc
+disp("The frequency of the oscillator is given by,")
+disp(" f = 1 / 2*pi*sqrt(R1*R2*C1*C2)")
+disp("For f = 10 kHz,")
+r2=(1/(4*(%pi^2)*(100*10^6)*(10*10^3)*(0.001*10^-12))) // in k-ohm
+format(6)
+disp(r2,"Therefore, R2(in k-ohm) =")
+disp("For f = 50 kHz,")
+r2=(1/(4*(%pi^2)*(2500*10^6)*(10*10^3)*(0.001*10^-12))) // in k-ohm
+format(6)
+disp(r2,"Therefore, R2(in k-ohm) =")
+disp("So minimum value of R2 is 1.013 k-ohm while the maximum value of R2 is 25.33 k-ohm")
|