summaryrefslogtreecommitdiff
path: root/608/CH40/EX40.02/40_02.sce
diff options
context:
space:
mode:
Diffstat (limited to '608/CH40/EX40.02/40_02.sce')
-rwxr-xr-x608/CH40/EX40.02/40_02.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/608/CH40/EX40.02/40_02.sce b/608/CH40/EX40.02/40_02.sce
new file mode 100755
index 000000000..05c6fb9aa
--- /dev/null
+++ b/608/CH40/EX40.02/40_02.sce
@@ -0,0 +1,15 @@
+//Problem 40.02: A field plot for a cross-section of a concentric cable is shown in Figure 40.10. If the relative permeability of the dielectric is 3.4, determine the capacitance of a 100 m length of the cable.
+
+//initializing the variables:
+e0 = 8.85E-12;
+er = 3.4;
+l = 100; // in m
+
+//calculation:
+//From Figure 40.10
+m = 13; // number of parallel squares measured along each equipotential
+n = 4; // the number of series squares measured along each line of force
+C = e0*er*l*m/n
+
+printf("\n\n Result \n\n")
+printf("\n capacitance is %.3E Farad.",C) \ No newline at end of file