summaryrefslogtreecommitdiff
path: root/Elements_of_Physical_Chemistry/Chapter2.ipynb
blob: 1730ffc1876bc613a03a1b08d8aaf596d6a569cc (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
 "metadata": {
  "name": ""
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 2 - Thermodynamics : The first law"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example I1 - Pg 46"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Calculate the change in temperature\n",
      "#Initialization of variables\n",
      "Cpm=75 #J/k mol\n",
      "n=5.55 #mol\n",
      "q=1 #kJ\n",
      "#Calculations\n",
      "deltaT=q*1000/(n*Cpm)\n",
      "#results\n",
      "print '%s %.1f %s' %('Change in temperature =',deltaT,'K')\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Change in temperature = 2.4 K\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example I4 - Pg 52"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Calculate the change in enthalpy of the sample\n",
      "#Initialization of variables\n",
      "n=5.55 #mol\n",
      "T1=20 #C\n",
      "T2=80 #K\n",
      "Cpm=75.29 #J/K mol\n",
      "#Calculations\n",
      "H=n*Cpm*(T2-T1)/1000.\n",
      "#results\n",
      "print '%s %d %s' %('Enthalpy of the sample changes by',H,'kJ')\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Enthalpy of the sample changes by 25 kJ\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example E1 - Pg 45"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Calculate the heat supplied, heat capacity and heat output of the calorimeter\n",
      "#Initialization of variables\n",
      "A=1.23 #A\n",
      "V=12 #V\n",
      "t=123 #s\n",
      "Temp=4.47 #C\n",
      "rise=3.22 #C\n",
      "#Calculations\n",
      "q=A*V*t\n",
      "C=q/Temp\n",
      "Output= C*rise/1000.\n",
      "#Results\n",
      "print '%s %.1f %s' %('heat supplied during calibration =',q,'J')\n",
      "print '%s %.1f %s' %('\\n Heat capacity of the calorimeter =',C,'J/C')\n",
      "print '%s %.2f %s' %('\\n Heat output =',Output,' kJ')\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "heat supplied during calibration = 1815.5 J\n",
        "\n",
        " Heat capacity of the calorimeter = 406.1 J/C\n",
        "\n",
        " Heat output = 1.31  kJ\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example E2 - Pg 48"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Calculate the amount by which the person's internal energy falls\n",
      "#Initialization of variables\n",
      "work=-622 #kJ\n",
      "heat=-82 #kJ\n",
      "#Calculations\n",
      "U=work+heat\n",
      "#results\n",
      "print '%s %d %s' %('The persons internal energy falls by',-U,'kJ')\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The persons internal energy falls by 704 kJ\n"
       ]
      }
     ],
     "prompt_number": 2
    }
   ],
   "metadata": {}
  }
 ]
}