summaryrefslogtreecommitdiff
path: root/3850/CH29/EX29.4/Ex29_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH29/EX29.4/Ex29_4.sce')
-rw-r--r--3850/CH29/EX29.4/Ex29_4.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3850/CH29/EX29.4/Ex29_4.sce b/3850/CH29/EX29.4/Ex29_4.sce
new file mode 100644
index 000000000..60e173253
--- /dev/null
+++ b/3850/CH29/EX29.4/Ex29_4.sce
@@ -0,0 +1,24 @@
+
+//To find the Electric Potential
+
+//Example 29.4
+
+clear;
+
+clc;
+
+Q1=10*10^-6;//First Charge in Coloumbs
+
+Q2= 20*10^-6;//Second Charge in Coloumbs
+
+r=0.02;//Distance between the charges in metres
+
+K=9*10^9;//Value of constant (1/(4*pi*ε0))
+
+V1=Q1*K*2/r;//Electric Potential due to First Charge
+
+V2=Q2*K*2/r;//Electric Potential due to Second Charge
+
+V=V1+V2;//Net Potential
+
+printf("net potential=%f MV",V/10^6);