summaryrefslogtreecommitdiff
path: root/sample_notebooks/hemanth/Untitled1_1.ipynb
blob: 9684d9173861ebb08d5c802a0573e207a16ea8ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

# coding: utf-8

# # UNIT 3 : ELECTRICAL CONDUCTIVITY IN METALS

# 
# 
# # Example number 1 , page number 208

# In[ ]:

#importing module
from __future__ import division
import math


#Variable declaration
u= 7*10**-3                # mobility of an electron
E= 100                     # applied field


#Calculations
Vd=u*E

#Result
print"the drift velocity = %.1f m/s" %Vd
print"the correct choice is B"