summaryrefslogtreecommitdiff
path: root/Physical_Chemistry_by_D._Farrington/Chapter16.ipynb
diff options
context:
space:
mode:
authorkinitrupti2017-05-12 18:53:46 +0530
committerkinitrupti2017-05-12 18:53:46 +0530
commitf270f72badd9c61d48f290c3396004802841b9df (patch)
treebc8ba99d85644c62716ce397fe60177095b303db /Physical_Chemistry_by_D._Farrington/Chapter16.ipynb
parent64d949698432e05f2a372d9edc859c5b9df1f438 (diff)
downloadPython-Textbook-Companions-f270f72badd9c61d48f290c3396004802841b9df.tar.gz
Python-Textbook-Companions-f270f72badd9c61d48f290c3396004802841b9df.tar.bz2
Python-Textbook-Companions-f270f72badd9c61d48f290c3396004802841b9df.zip
Removed duplicates
Diffstat (limited to 'Physical_Chemistry_by_D._Farrington/Chapter16.ipynb')
-rw-r--r--Physical_Chemistry_by_D._Farrington/Chapter16.ipynb114
1 files changed, 114 insertions, 0 deletions
diff --git a/Physical_Chemistry_by_D._Farrington/Chapter16.ipynb b/Physical_Chemistry_by_D._Farrington/Chapter16.ipynb
new file mode 100644
index 00000000..e1e439a5
--- /dev/null
+++ b/Physical_Chemistry_by_D._Farrington/Chapter16.ipynb
@@ -0,0 +1,114 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter16 Quantum Theory"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 16.1, Pageno.67"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "avagadros number = 6.031 *10**23 coloumbs equivˆ−1\n"
+ ]
+ }
+ ],
+ "source": [
+ "import math\n",
+ "#initialisation of variables\n",
+ "e=1.6*10**-19 #coloumb electron ˆ−1\n",
+ "F=96496 # coloumbs equivˆ−1\n",
+ "#CALCULATIONS\n",
+ "N=F/e\n",
+ "#RESULTS\n",
+ "N=N*10**-23\n",
+ "N=round(N,4)\n",
+ "print 'avagadros number =',N,'*10**23 coloumbs equivˆ−1'"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 16.2, Pageno.67"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "wavelength in centimetres = 4.5 * 10**-5 cm\n",
+ "wavelength in micrometres = 450.0 cm\n",
+ "frequency of bluelight = 6.667 * 10**14 secˆ−1\n",
+ "wave number = 22222.2 cmˆ−1\n"
+ ]
+ }
+ ],
+ "source": [
+ "import math\n",
+ "#initialisation of variables\n",
+ "wl=4500 #A\n",
+ "c=3*10**10 #cm/ sec\n",
+ "#CALCULATIONS\n",
+ "l=wl*10**-8\n",
+ "l1=wl*10**-1\n",
+ "f=1/l\n",
+ "f1=c/l\n",
+ "#RESULTS\n",
+ "l=l*10**5\n",
+ "f=round(f,1)\n",
+ "f1=f1*10**-14\n",
+ "f1=round(f1,3)\n",
+ "print 'wavelength in centimetres =',l,'* 10**-5 cm'\n",
+ "print 'wavelength in micrometres =',l1,'cm'\n",
+ "print 'frequency of bluelight =',f1,'* 10**14 secˆ−1'\n",
+ "print 'wave number =',f,'cmˆ−1'"
+ ]
+ }
+ ],
+ "metadata": {
+ "anaconda-cloud": {},
+ "kernelspec": {
+ "display_name": "Python [Root]",
+ "language": "python",
+ "name": "Python [Root]"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 2
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython2",
+ "version": "2.7.11"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}