summaryrefslogtreecommitdiff
path: root/sample_notebooks/hemanth/Untitled1.ipynb
diff options
context:
space:
mode:
authorTrupti Kini2016-03-05 23:30:18 +0600
committerTrupti Kini2016-03-05 23:30:18 +0600
commit2afe55befddb39c05a5bc4008d6ecd72c6c98253 (patch)
tree001631b45751776fa3436ed53c84c4be7359e442 /sample_notebooks/hemanth/Untitled1.ipynb
parentae6307f8a79b7949b564d5d10123474fcaeae650 (diff)
downloadPython-Textbook-Companions-2afe55befddb39c05a5bc4008d6ecd72c6c98253.tar.gz
Python-Textbook-Companions-2afe55befddb39c05a5bc4008d6ecd72c6c98253.tar.bz2
Python-Textbook-Companions-2afe55befddb39c05a5bc4008d6ecd72c6c98253.zip
Added(A)/Deleted(D) following books
A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_12_Ploymers_and_Polymerization_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_13_Fuel_and_Combustions_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_14_Water_Treatment_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_15_Environmental_Pollution_and_Control_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_1_Structure_and_Bonding_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_2_Spectroscopy_and_Photochemistry_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_3_Thermodynamics_and_Chemical_Equilibrium_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_5_Chemical_Kinetics_and_Catalysis_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_6_Electrochemistry_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/Chapter_7_Solid_State_2.ipynb A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/screenshots/Screenshot_from_2016-03-05_22:17:52.png A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/screenshots/Screenshot_from_2016-03-05_22:22:12.png A Advanced_Engineering_Chemistry__by_Dr._M.R._Senapati/screenshots/Screenshot_from_2016-03-05_22:24:08.png A "sample_notebooks/Ashish Kumar/Ch13.ipynb" A sample_notebooks/Babita./Ch5.ipynb A sample_notebooks/NareshKumar/Ch2.ipynb A "sample_notebooks/Suhaib Alam/Ch14.ipynb" A sample_notebooks/hemanth/Untitled1.ipynb A sample_notebooks/hemanth/Untitled1_1.ipynb
Diffstat (limited to 'sample_notebooks/hemanth/Untitled1.ipynb')
-rw-r--r--sample_notebooks/hemanth/Untitled1.ipynb27
1 files changed, 27 insertions, 0 deletions
diff --git a/sample_notebooks/hemanth/Untitled1.ipynb b/sample_notebooks/hemanth/Untitled1.ipynb
new file mode 100644
index 00000000..9684d917
--- /dev/null
+++ b/sample_notebooks/hemanth/Untitled1.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"