summaryrefslogtreecommitdiff
path: root/2459/CH2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '2459/CH2')
-rw-r--r--2459/CH2/EX2.1/Ex2_1.PNGbin0 -> 5228 bytes
-rw-r--r--2459/CH2/EX2.1/Ex2_1.sce17
-rw-r--r--2459/CH2/EX2.2/Ex2_2.PNGbin0 -> 6659 bytes
-rw-r--r--2459/CH2/EX2.2/Ex2_2.sce29
4 files changed, 46 insertions, 0 deletions
diff --git a/2459/CH2/EX2.1/Ex2_1.PNG b/2459/CH2/EX2.1/Ex2_1.PNG
new file mode 100644
index 000000000..5bd9a0383
--- /dev/null
+++ b/2459/CH2/EX2.1/Ex2_1.PNG
Binary files differ
diff --git a/2459/CH2/EX2.1/Ex2_1.sce b/2459/CH2/EX2.1/Ex2_1.sce
new file mode 100644
index 000000000..74fdbe589
--- /dev/null
+++ b/2459/CH2/EX2.1/Ex2_1.sce
@@ -0,0 +1,17 @@
+//chapter 2
+//example 2.1
+//page 29
+
+A=60.2d4 // ampere per square m per square kelvin
+T=2500 // kelvin
+phi=4.517 // eV
+d=0.01d-2 // m
+l=5d-2 // m
+
+b=11600*phi
+Js=A*T^2*exp(-b/T)
+a=%pi*d*l
+
+emission_current=Js*a
+
+printf("emission current=%f A",emission_current)
diff --git a/2459/CH2/EX2.2/Ex2_2.PNG b/2459/CH2/EX2.2/Ex2_2.PNG
new file mode 100644
index 000000000..58444171a
--- /dev/null
+++ b/2459/CH2/EX2.2/Ex2_2.PNG
Binary files differ
diff --git a/2459/CH2/EX2.2/Ex2_2.sce b/2459/CH2/EX2.2/Ex2_2.sce
new file mode 100644
index 000000000..63dae71ae
--- /dev/null
+++ b/2459/CH2/EX2.2/Ex2_2.sce
@@ -0,0 +1,29 @@
+// Chapter 2
+// example 2.2
+// page 29
+Js=0.1 // ampere per square cm
+A=60.2 // ampere per square cm per square kelvin
+T=1900 // kelvin
+
+// Js=A*T^2*exp(-b/T) so b=-T*log(Js/(A*T^2))
+
+b=-T*log(Js/(A*T^2))
+
+// b=11600*phi so making phi as subject
+
+phi=b/11600
+
+printf("work function=%f eV \n",phi)
+// the accurate answer is 3.521466
+// but in the book it is mistakenly written as 3.56
+
+if(2.63<phi & phi<4.52)
+ printf("thoriated tungsten has work function between 2.63eV to 4.52eV.\nSo sample is likely to be thoriated tingsten")
+elseif(phi<=2.63 | phi>4.52)
+ printf("tungsten is contaminated") // for pure tungsten, phi must be 4.52 exactly
+else
+ printf("tungsten is pure") // phi=4.52 implies tungsten is pure
+end
+
+// please note that there is error in the answer of work function phi in the book
+// The correct answer is 3.521466 eV and not 3.56 eV