summaryrefslogtreecommitdiff
path: root/2102/CH5/EX5.1/exa_5_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH5/EX5.1/exa_5_1.sce')
-rwxr-xr-x2102/CH5/EX5.1/exa_5_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2102/CH5/EX5.1/exa_5_1.sce b/2102/CH5/EX5.1/exa_5_1.sce
new file mode 100755
index 000000000..e93207668
--- /dev/null
+++ b/2102/CH5/EX5.1/exa_5_1.sce
@@ -0,0 +1,15 @@
+// Exa 5.2
+clc;
+clear;
+close;
+// Given data
+C1= 5; // in pF
+C1= C1*10^-12;// in F
+C2= 50; // in pF
+C2= C2*10^-12;// in F
+L= 10;// in mH
+L= L*10^-3;// in H
+TuningRange= 1/(2*%pi*sqrt(L*C1*C2/(C1+C2)));// in Hz
+disp(TuningRange*10^-3,"The tuning range for the circuit in kHz is : ")
+
+// Note : In the book, this example is not solved. Only given data is shown.