diff options
author | hardythe1 | 2015-05-05 14:21:39 +0530 |
---|---|---|
committer | hardythe1 | 2015-05-05 14:21:39 +0530 |
commit | fba055ce5aa0955e22bac2413c33493b10ae6532 (patch) | |
tree | be70ef4fccd07c9c88de778014219201b4ea971f /Physical_Chemsitry/Chapter11.ipynb | |
parent | 67068710030ddd6b6c809518c34af2e04e0bf7ca (diff) | |
download | Python-Textbook-Companions-fba055ce5aa0955e22bac2413c33493b10ae6532.tar.gz Python-Textbook-Companions-fba055ce5aa0955e22bac2413c33493b10ae6532.tar.bz2 Python-Textbook-Companions-fba055ce5aa0955e22bac2413c33493b10ae6532.zip |
add books
Diffstat (limited to 'Physical_Chemsitry/Chapter11.ipynb')
-rwxr-xr-x | Physical_Chemsitry/Chapter11.ipynb | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/Physical_Chemsitry/Chapter11.ipynb b/Physical_Chemsitry/Chapter11.ipynb deleted file mode 100755 index b98e97b5..00000000 --- a/Physical_Chemsitry/Chapter11.ipynb +++ /dev/null @@ -1,95 +0,0 @@ -{
- "metadata": {
- "name": "",
- "signature": "sha256:00f3ac32d98b00732d6a51b0562de7dab713dab2a42986a603b1c1eafc01eefd"
- },
- "nbformat": 3,
- "nbformat_minor": 0,
- "worksheets": [
- {
- "cells": [
- {
- "cell_type": "heading",
- "level": 1,
- "metadata": {},
- "source": [
- "Chapter 11 - Condensed phases"
- ]
- },
- {
- "cell_type": "heading",
- "level": 2,
- "metadata": {},
- "source": [
- "Example 1 - pg 271"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "#calculate the Vapor Pressure\n",
- "#Initialization of variables\n",
- "A=7.6546\n",
- "B=1686.8\n",
- "T=60+273.2\n",
- "#calculations\n",
- "logP=A-B/T\n",
- "P=10**logP\n",
- "#results\n",
- "print '%s %.1f %s' %(\"Vapor Pressure =\",P,\"mm\")\n"
- ],
- "language": "python",
- "metadata": {},
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "Vapor Pressure = 391.0 mm\n"
- ]
- }
- ],
- "prompt_number": 1
- },
- {
- "cell_type": "heading",
- "level": 2,
- "metadata": {},
- "source": [
- "Example 2 - pg 277"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "#calculate the change in C values\n",
- "#Initialization of variables\n",
- "alpha=4.92*10**-5 #deg**-1\n",
- "beta=7.85*10**-7 #atm**-1\n",
- "d=8.93 #g/cm**3\n",
- "T=298.15 #K\n",
- "#calculations\n",
- "dC=63.54*T*alpha**2 *1.987/(d*beta*82.06)\n",
- "#results\n",
- "print '%s %.3f %s' %(\"Change in c values = \",dC,\" cal/deg mol\")\n"
- ],
- "language": "python",
- "metadata": {},
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "Change in c values = 0.158 cal/deg mol\n"
- ]
- }
- ],
- "prompt_number": 2
- }
- ],
- "metadata": {}
- }
- ]
-}
\ No newline at end of file |