summaryrefslogtreecommitdiff
path: root/3871/CH12/EX12.25/Ex12_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH12/EX12.25/Ex12_25.sce')
-rw-r--r--3871/CH12/EX12.25/Ex12_25.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3871/CH12/EX12.25/Ex12_25.sce b/3871/CH12/EX12.25/Ex12_25.sce
new file mode 100644
index 000000000..203e64934
--- /dev/null
+++ b/3871/CH12/EX12.25/Ex12_25.sce
@@ -0,0 +1,17 @@
+//=====================================================================================
+//Chapter 12 example 25
+clc;clear all;
+
+//variable declaration
+f1 = 3; //frequency in MHz
+f2 =6; //frequency in MHz
+C1 = 251; //capacitance in pF
+C2 = 50; //capacitance in pF
+
+//calculations
+Cd = (C1-(4*C2))/(3); //self capacitance of the coil in uuF
+//since f1 = 2f2
+
+
+//result
+mprintf("self capacitance of the coil = %3.2f pF",Cd);