diff options
Diffstat (limited to 'sample_notebooks/hemanth/Untitled1_1.ipynb')
-rw-r--r-- | sample_notebooks/hemanth/Untitled1_1.ipynb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sample_notebooks/hemanth/Untitled1_1.ipynb b/sample_notebooks/hemanth/Untitled1_1.ipynb new file mode 100644 index 00000000..9684d917 --- /dev/null +++ b/sample_notebooks/hemanth/Untitled1_1.ipynb @@ -0,0 +1,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" |