summaryrefslogtreecommitdiff
path: root/1850/CH7/EX7.6/exa_7_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1850/CH7/EX7.6/exa_7_6.sce')
-rwxr-xr-x1850/CH7/EX7.6/exa_7_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1850/CH7/EX7.6/exa_7_6.sce b/1850/CH7/EX7.6/exa_7_6.sce
new file mode 100755
index 000000000..0aa2c76d9
--- /dev/null
+++ b/1850/CH7/EX7.6/exa_7_6.sce
@@ -0,0 +1,11 @@
+// Exa 7.6
+clc;
+clear;
+close;
+//given data
+R= 10;// in kohm
+R=R*10^3;// in ohm
+C= 100;// in pF
+C=C*10^-12;// in F
+f=1/(2*%pi*R*C);// in Hz
+disp(f*10^-3,"Frequency of the oscillation of the circuit in kHz")