diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3850/CH29/EX29.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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 |