diff options
Diffstat (limited to '3850/CH29/EX29.4')
-rw-r--r-- | 3850/CH29/EX29.4/Ex29_4.sce | 24 | ||||
-rw-r--r-- | 3850/CH29/EX29.4/Ex29_4.txt | 2 |
2 files changed, 26 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);
diff --git a/3850/CH29/EX29.4/Ex29_4.txt b/3850/CH29/EX29.4/Ex29_4.txt new file mode 100644 index 000000000..a56defad2 --- /dev/null +++ b/3850/CH29/EX29.4/Ex29_4.txt @@ -0,0 +1,2 @@ + + net potential=27.000000 MV
\ No newline at end of file |