summaryrefslogtreecommitdiff
path: root/3487/CH6/EX6.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3487/CH6/EX6.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3487/CH6/EX6.3')
-rw-r--r--3487/CH6/EX6.3/Ex6_3.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3487/CH6/EX6.3/Ex6_3.sce b/3487/CH6/EX6.3/Ex6_3.sce
new file mode 100644
index 000000000..a9ac4ddbb
--- /dev/null
+++ b/3487/CH6/EX6.3/Ex6_3.sce
@@ -0,0 +1,19 @@
+//Chapter 6,Example 6.3 Page 199
+clc
+clear
+Cs = 500*10^-12 // F
+R1 = 800 // ohm
+R2 = 180 // ohm
+C2 = 0.15 // micro F
+w = 314
+V = 33*10^3
+Cp = Cs*(R2/R1)
+Rp = R1/(w^2*C2*Cs*10^-6*R2^2)
+tang = 1/(w*Rp*Cp)
+pl = V^2/Rp
+printf (" Rp = %e ohm \n ",Rp)
+printf (" Cp = %e F \n ",Cp)
+printf (" tan δ = %f \n ",tang)
+printf (" Power loss = %f watts \n ",pl)
+
+//Answer may vary due to round off error