summaryrefslogtreecommitdiff
path: root/Engineering_Physics/Chapter_22.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'Engineering_Physics/Chapter_22.ipynb')
-rwxr-xr-xEngineering_Physics/Chapter_22.ipynb62
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