From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3871/CH12/EX12.26/Ex12_26.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 3871/CH12/EX12.26/Ex12_26.sce (limited to '3871/CH12/EX12.26') diff --git a/3871/CH12/EX12.26/Ex12_26.sce b/3871/CH12/EX12.26/Ex12_26.sce new file mode 100644 index 000000000..31eb0e178 --- /dev/null +++ b/3871/CH12/EX12.26/Ex12_26.sce @@ -0,0 +1,19 @@ +//===================================================================================== +//Chapter 12 example 26 +clc;clear all; + +//variable declaration +C1 = 1530; //capacitance in pF +C2 = 162; //capacitance in pF +f1 = 3; //frequency in MHz +f2 =1; //frequency in MHz + +//calculations +//f1 = 1/((2*math.pi)*(math.sqrt(L*(C2+Cd)))) +//f1 = 1/((2*math.pi)*(math.sqrt(L*(C2+Cd)))) +//f2 = 3*f1 +Cd = (C1-(9*C2))/(8); //self capacitance of the coil in pF + +//result +mprintf("self capacitance of the coil = %3.2f pF",Cd); + -- cgit