summaryrefslogtreecommitdiff
path: root/3537/CH8/EX8.11/Ex8_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3537/CH8/EX8.11/Ex8_11.sce')
-rw-r--r--3537/CH8/EX8.11/Ex8_11.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3537/CH8/EX8.11/Ex8_11.sce b/3537/CH8/EX8.11/Ex8_11.sce
new file mode 100644
index 000000000..5d6f26075
--- /dev/null
+++ b/3537/CH8/EX8.11/Ex8_11.sce
@@ -0,0 +1,9 @@
+//Example 8_11
+clc();
+clear;
+//To calculate the capacitance
+v=10^6 //units in Hz
+L=1 //units in henry
+C=1/(4*%pi^2*v^2*L)
+C=C*10^12 //units in PF
+printf("Capacitance C=%.3f PF",C)