summaryrefslogtreecommitdiff
path: root/3648/CH16
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH16')
-rw-r--r--3648/CH16/EX16.1/Ex16_1.sce8
-rw-r--r--3648/CH16/EX16.1/Ex16_1.txt1
-rw-r--r--3648/CH16/EX16.10/Ex16_10.sce15
-rw-r--r--3648/CH16/EX16.10/Ex16_10.txt4
-rw-r--r--3648/CH16/EX16.2/Ex16_2.sce9
-rw-r--r--3648/CH16/EX16.2/Ex16_2.txt1
-rw-r--r--3648/CH16/EX16.3/Ex16_3.sce10
-rw-r--r--3648/CH16/EX16.3/Ex16_3.txt1
-rw-r--r--3648/CH16/EX16.5/Ex16_5.sce15
-rw-r--r--3648/CH16/EX16.5/Ex16_5.txt7
-rw-r--r--3648/CH16/EX16.6/Ex16_6.sce11
-rw-r--r--3648/CH16/EX16.6/Ex16_6.txt1
-rw-r--r--3648/CH16/EX16.7/Ex16_7.sce5
-rw-r--r--3648/CH16/EX16.7/Ex16_7.txt2
-rw-r--r--3648/CH16/EX16.8/Ex16_8.sce12
-rw-r--r--3648/CH16/EX16.8/Ex16_8.txt1
-rw-r--r--3648/CH16/EX16.9/Ex16_9.sce17
-rw-r--r--3648/CH16/EX16.9/Ex16_9.txt4
18 files changed, 124 insertions, 0 deletions
diff --git a/3648/CH16/EX16.1/Ex16_1.sce b/3648/CH16/EX16.1/Ex16_1.sce
new file mode 100644
index 000000000..bf1cfa810
--- /dev/null
+++ b/3648/CH16/EX16.1/Ex16_1.sce
@@ -0,0 +1,8 @@
+//Example 16_1
+clc();
+clear;
+//To find the magnitude of the electric field
+v=12 //Units in V
+d=5*10^-3 //units in Meters
+e=v/d //Units in V/meter
+printf("The magnitude of electric field is E=%d V/meters",e)
diff --git a/3648/CH16/EX16.1/Ex16_1.txt b/3648/CH16/EX16.1/Ex16_1.txt
new file mode 100644
index 000000000..72bd425b7
--- /dev/null
+++ b/3648/CH16/EX16.1/Ex16_1.txt
@@ -0,0 +1 @@
+The magnitude of electric field is E=2400 V/meters \ No newline at end of file
diff --git a/3648/CH16/EX16.10/Ex16_10.sce b/3648/CH16/EX16.10/Ex16_10.sce
new file mode 100644
index 000000000..ebdc42c1e
--- /dev/null
+++ b/3648/CH16/EX16.10/Ex16_10.sce
@@ -0,0 +1,15 @@
+//Example 16_10
+clc();
+clear;
+//To find the absolute potential and how much energy is needed to pull the electrons from atom
+k=9*10^9 //Units in N meter^2/C^2
+q=1.6*10^-19 //Units in C
+r=5.3*10^-11 //Units in meters
+v=(k*q)/r //Units in V
+printf("The absolute potential is V=%.1f V\n",v)
+Vinfinity=0 //Units in V
+deltaV=Vinfinity-v //Units in V
+work=-q*deltaV //Units in J
+printf("The energy that is required is W=")
+disp(work)
+printf("J")
diff --git a/3648/CH16/EX16.10/Ex16_10.txt b/3648/CH16/EX16.10/Ex16_10.txt
new file mode 100644
index 000000000..7226f8877
--- /dev/null
+++ b/3648/CH16/EX16.10/Ex16_10.txt
@@ -0,0 +1,4 @@
+The absolute potential is V=27.2 V
+The energy that is required is W=
+ 4.347D-18
+J \ No newline at end of file
diff --git a/3648/CH16/EX16.2/Ex16_2.sce b/3648/CH16/EX16.2/Ex16_2.sce
new file mode 100644
index 000000000..2b0a7d4e7
--- /dev/null
+++ b/3648/CH16/EX16.2/Ex16_2.sce
@@ -0,0 +1,9 @@
+//Example 16_2
+clc();
+clear;
+//To calculate the speed of the proton
+q=1.6*10^-19 //Units in C
+vab=45 //Units in V
+m=1.67*10^-27 //Units in Kg
+va=sqrt((2*q*vab)/m) //Units in meters/sec
+printf("The speed of the proton is Vab=%.2f meters/sec",va)
diff --git a/3648/CH16/EX16.2/Ex16_2.txt b/3648/CH16/EX16.2/Ex16_2.txt
new file mode 100644
index 000000000..ddb7bd0bd
--- /dev/null
+++ b/3648/CH16/EX16.2/Ex16_2.txt
@@ -0,0 +1 @@
+The speed of the proton is Vab=92858.79 meters/sec \ No newline at end of file
diff --git a/3648/CH16/EX16.3/Ex16_3.sce b/3648/CH16/EX16.3/Ex16_3.sce
new file mode 100644
index 000000000..417d056e1
--- /dev/null
+++ b/3648/CH16/EX16.3/Ex16_3.sce
@@ -0,0 +1,10 @@
+
+//Example 16_3
+clc();
+clear;
+//To find the speed of an electron
+e=1.6*10^-19 //Units in C
+vab=45 //Units in V
+m=9.11*10^-31 //Units in Kg
+va=sqrt((2*e*vab)/m) //Units in meters/sec
+printf("The speed of the electron is Vab=%.2f meters/sec",va)
diff --git a/3648/CH16/EX16.3/Ex16_3.txt b/3648/CH16/EX16.3/Ex16_3.txt
new file mode 100644
index 000000000..5940329a7
--- /dev/null
+++ b/3648/CH16/EX16.3/Ex16_3.txt
@@ -0,0 +1 @@
+The speed of the electron is Vab=3975777.37 meters/sec \ No newline at end of file
diff --git a/3648/CH16/EX16.5/Ex16_5.sce b/3648/CH16/EX16.5/Ex16_5.sce
new file mode 100644
index 000000000..690595315
--- /dev/null
+++ b/3648/CH16/EX16.5/Ex16_5.sce
@@ -0,0 +1,15 @@
+//Example 16_5
+clc();
+clear;
+//To find the work done in carrying a proton and for an electron
+q=1.6*10^-19 //Units in C
+vab=9 //Units in V
+work=q*vab //Units in J
+printf("The work done in carrying proton is=")
+disp(work)
+printf("Joules\n")
+q=-1.6*10^-19 //Units in C
+work=q*vab //Units in J
+printf("The work done in carrying electron is=")
+disp(work)
+printf("Joules\n")
diff --git a/3648/CH16/EX16.5/Ex16_5.txt b/3648/CH16/EX16.5/Ex16_5.txt
new file mode 100644
index 000000000..1c5c493b0
--- /dev/null
+++ b/3648/CH16/EX16.5/Ex16_5.txt
@@ -0,0 +1,7 @@
+The work done in carrying proton is=
+ 1.440D-18
+Joules
+The work done in carrying electron is=
+ - 1.440D-18
+Joules
+ \ No newline at end of file
diff --git a/3648/CH16/EX16.6/Ex16_6.sce b/3648/CH16/EX16.6/Ex16_6.sce
new file mode 100644
index 000000000..0dd566ec6
--- /dev/null
+++ b/3648/CH16/EX16.6/Ex16_6.sce
@@ -0,0 +1,11 @@
+
+//Example 16_6
+clc();
+clear;
+//To calculate the speed just before it strikes it
+va=8*10^6 //Units in meters/sec
+q=1.6*10^-19 //Units in C
+m=1.67*10^-27 //Units in Kg
+vab=20000 //Units in V
+vb=sqrt(va^2-((2*q*vab)/m)) //Units in meters/sec
+printf("The speed of proton before it strikes is Vb=%.1f meters/sec",vb)
diff --git a/3648/CH16/EX16.6/Ex16_6.txt b/3648/CH16/EX16.6/Ex16_6.txt
new file mode 100644
index 000000000..9886a4869
--- /dev/null
+++ b/3648/CH16/EX16.6/Ex16_6.txt
@@ -0,0 +1 @@
+The speed of proton before it strikes is Vb=7756781.9 meters/sec \ No newline at end of file
diff --git a/3648/CH16/EX16.7/Ex16_7.sce b/3648/CH16/EX16.7/Ex16_7.sce
new file mode 100644
index 000000000..3263c36fa
--- /dev/null
+++ b/3648/CH16/EX16.7/Ex16_7.sce
@@ -0,0 +1,5 @@
+//Example 16_7
+clc();
+clear;
+//To calculate the minimum value of Vab needed
+printf("Since each proton has a minimum energy of 13.6 eV and a charge of 1.602*10^-19 C\n The required potential difference is=13.6 eV")
diff --git a/3648/CH16/EX16.7/Ex16_7.txt b/3648/CH16/EX16.7/Ex16_7.txt
new file mode 100644
index 000000000..ec1df5838
--- /dev/null
+++ b/3648/CH16/EX16.7/Ex16_7.txt
@@ -0,0 +1,2 @@
+Since each proton has a minimum energy of 13.6 eV and a charge of 1.602*10^-19 C
+ The required potential difference is=13.6 eV \ No newline at end of file
diff --git a/3648/CH16/EX16.8/Ex16_8.sce b/3648/CH16/EX16.8/Ex16_8.sce
new file mode 100644
index 000000000..a0ad6ae1f
--- /dev/null
+++ b/3648/CH16/EX16.8/Ex16_8.sce
@@ -0,0 +1,12 @@
+//Example 16_8
+clc();
+clear;
+//To find out the speed of the proton
+k=9*10^9 //Units in N meter^2/C^2
+q=5*10^-6 //Units in C
+r=0.5 //Units in meters
+v1=(k*q)/r //Units in V
+q=1.6*10^-19 //Units in V
+m=1.672*10^-27 //Units in Kg
+v=sqrt((v1*q*2)/m) //Units in V
+printf("The speed of electron is v=%.2f meters/sec",v)
diff --git a/3648/CH16/EX16.8/Ex16_8.txt b/3648/CH16/EX16.8/Ex16_8.txt
new file mode 100644
index 000000000..aa6982c3b
--- /dev/null
+++ b/3648/CH16/EX16.8/Ex16_8.txt
@@ -0,0 +1 @@
+The speed of electron is v=4150286.78 meters/sec \ No newline at end of file
diff --git a/3648/CH16/EX16.9/Ex16_9.sce b/3648/CH16/EX16.9/Ex16_9.sce
new file mode 100644
index 000000000..246c8e03e
--- /dev/null
+++ b/3648/CH16/EX16.9/Ex16_9.sce
@@ -0,0 +1,17 @@
+//Example 16_9
+clc();
+clear;
+//To compute the absolute potential at B
+k=9*10^9 //Units in N meter^2/C^2
+q=5*10^-8 //Units in C
+r=0.1 //Units in meters
+v1=(k*q)/r //Units in V
+q=8*10^-8 //Units in C
+r=0.1 //Units in meters
+v2=(k*q)/r //Units in V
+q=40*10^-8 //Units in C
+r=0.2 //Units in meters
+v3=-(k*q)/r //Units in V
+vb=v1+v2+v3 //Units in V
+printf("Due to 5*10^-8 C V1=%d V\nDue to 8*10^-8 C V2=%d V\nDue to 40*10^-8 C V3=%d V\n Absolute potential at B is Vb=%d V",v1,v2,v3,vb)
+
diff --git a/3648/CH16/EX16.9/Ex16_9.txt b/3648/CH16/EX16.9/Ex16_9.txt
new file mode 100644
index 000000000..850938dec
--- /dev/null
+++ b/3648/CH16/EX16.9/Ex16_9.txt
@@ -0,0 +1,4 @@
+Due to 5*10^-8 C V1=4500 V
+Due to 8*10^-8 C V2=7200 V
+Due to 40*10^-8 C V3=-18000 V
+ Absolute potential at B is Vb=-6300 V \ No newline at end of file