summaryrefslogtreecommitdiff
path: root/3850/CH29/EX29.4/Ex29_4.sce
blob: 60e173253c3fe11fdd5797bbac672599088bdd29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);