diff options
author | nice | 2014-09-15 12:50:58 +0530 |
---|---|---|
committer | nice | 2014-09-15 12:50:58 +0530 |
commit | 2792e8d6ecab454e3cb8fb1ea1f26f1613bc1e1c (patch) | |
tree | 680c46833c53f5ecbbceb773bec170a89ac94152 /Engineering_Physics/Chapter_22.ipynb | |
parent | f77c828fecc4db415b42d5b0e28a75dd135476d4 (diff) | |
download | Python-Textbook-Companions-2792e8d6ecab454e3cb8fb1ea1f26f1613bc1e1c.tar.gz Python-Textbook-Companions-2792e8d6ecab454e3cb8fb1ea1f26f1613bc1e1c.tar.bz2 Python-Textbook-Companions-2792e8d6ecab454e3cb8fb1ea1f26f1613bc1e1c.zip |
added books
Diffstat (limited to 'Engineering_Physics/Chapter_22.ipynb')
-rwxr-xr-x | Engineering_Physics/Chapter_22.ipynb | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Engineering_Physics/Chapter_22.ipynb b/Engineering_Physics/Chapter_22.ipynb new file mode 100755 index 00000000..a955c292 --- /dev/null +++ b/Engineering_Physics/Chapter_22.ipynb @@ -0,0 +1,62 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": [ + "Chapter 22: Nanopyhsics" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Example 22.1, Page 22.13" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "\n", + "# Given \n", + "d = 12e-6 # diameter in m\n", + "d_ = 90e-9 # diameter of nanoparticle in m\n", + "\n", + "#Calculations\n", + "r = d / 2\n", + "r_ = d_ / 2\n", + "k = r / 3\n", + "k_ = r_ / 3\n", + "R = k_ / k\n", + "\n", + "#Result\n", + "print \"The ratio of the value of Nb/Ns of spherical particle and nanoparticle = %.1e\"%R" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "The ratio of the value of Nb/Ns of spherical particle and nanoparticle = 7.5e-03\n" + ] + } + ], + "prompt_number": 1 + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |