summaryrefslogtreecommitdiff
path: root/3850/CH45/EX45.1/Ex45_1.sce
blob: 3b1656f0ee576c5af3a9b5119a5d8362acbd9deb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

//To Find the Electric Field which gives 1eV average energy to a conduction electron

//Example 45.1

clear;

clc;

e=1.6*10^-19;//Charge on an electron in Coloumbs

Eav=1*e;//Energy to the Conduction Electron in Joules

l=4*10^-8;//Mean Free Path of Conduction Electrons in Copper

E=Eav/(e*l);//Electric field which can give, on an average, 1eV to a conduction electron

printf("Electric field which can give, on an average, 1eV to a conduction electron = %.1f*10^7 V/m",E*10^-7);