diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2360/CH6/EX6.36 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2360/CH6/EX6.36')
-rwxr-xr-x | 2360/CH6/EX6.36/ex6_36.sce | 18 |
1 files changed, 18 insertions, 0 deletions
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.
|