From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2360/CH6/EX6.36/ex6_36.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 2360/CH6/EX6.36/ex6_36.sce (limited to '2360/CH6/EX6.36') diff --git a/2360/CH6/EX6.36/ex6_36.sce b/2360/CH6/EX6.36/ex6_36.sce new file mode 100755 index 000000000..bc64dd8f7 --- /dev/null +++ b/2360/CH6/EX6.36/ex6_36.sce @@ -0,0 +1,18 @@ +// Exa 6.36 +format('v',7);clc;clear;close; +// Given data +C2 = 500;// capacitance in nF +C2 = C2 * 10^-9;// in F +f = 50;//frequency in Hz +omega = 2*%pi*f;// in rad/sec +C4 = 0.148;//capacitance in µF +C4 = C4 * 10^-6;// in F +R4 = 72.6;//resistance in ohm +R3 = 300;//resistance in ohm +C1 = C2*(R4/R3);// capacitance in F +C1 = C1 * 10^6;// in µF +disp(C1,"The capacitance in µF is"); +delta = atand(omega*C4*R4);//dielectric loss angle of capacitance in degree +disp(delta,"The dielectric loss angle of capacitance in degree is"); + +// Note: The calculation in the book is wrong, so the answer in the book is wrong. -- cgit