From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2459/CH2/EX2.1/Ex2_1.PNG | Bin 0 -> 5228 bytes 2459/CH2/EX2.1/Ex2_1.sce | 17 +++++++++++++++++ 2459/CH2/EX2.2/Ex2_2.PNG | Bin 0 -> 6659 bytes 2459/CH2/EX2.2/Ex2_2.sce | 29 +++++++++++++++++++++++++++++ 4 files changed, 46 insertions(+) create mode 100644 2459/CH2/EX2.1/Ex2_1.PNG create mode 100644 2459/CH2/EX2.1/Ex2_1.sce create mode 100644 2459/CH2/EX2.2/Ex2_2.PNG create mode 100644 2459/CH2/EX2.2/Ex2_2.sce (limited to '2459/CH2') 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 Binary files /dev/null and b/2459/CH2/EX2.1/Ex2_1.PNG 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 Binary files /dev/null and b/2459/CH2/EX2.2/Ex2_2.PNG 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.634.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 -- cgit