diff options
author | hardythe1 | 2014-07-25 12:29:42 +0530 |
---|---|---|
committer | hardythe1 | 2014-07-25 12:29:42 +0530 |
commit | 9dd9b5240afe729a557c6ae683da0b31555a3860 (patch) | |
tree | 8058968e04159f02f98d46dbc664fe12a963b16e /Engineering_Physics/Chapter10.ipynb | |
parent | cc0f90b966a13e6edc60165bc4d4d36844af4f2b (diff) | |
download | Python-Textbook-Companions-9dd9b5240afe729a557c6ae683da0b31555a3860.tar.gz Python-Textbook-Companions-9dd9b5240afe729a557c6ae683da0b31555a3860.tar.bz2 Python-Textbook-Companions-9dd9b5240afe729a557c6ae683da0b31555a3860.zip |
removing unwated
Diffstat (limited to 'Engineering_Physics/Chapter10.ipynb')
-rwxr-xr-x | Engineering_Physics/Chapter10.ipynb | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/Engineering_Physics/Chapter10.ipynb b/Engineering_Physics/Chapter10.ipynb deleted file mode 100755 index 051ee9c1..00000000 --- a/Engineering_Physics/Chapter10.ipynb +++ /dev/null @@ -1,62 +0,0 @@ -{ - "metadata": { - "name": "Chapter10" - }, - "nbformat": 3, - "nbformat_minor": 0, - "worksheets": [ - { - "cells": [ - { - "cell_type": "heading", - "level": 1, - "metadata": {}, - "source": "10: Dielectric Materials" - }, - { - "cell_type": "heading", - "level": 2, - "metadata": {}, - "source": "Example number 10.1, Page number 289" - }, - { - "cell_type": "code", - "collapsed": false, - "input": "#importing modules\nimport math\n\n#Variable declaration\nepsilon_r = 1.0000684; #dielectric constant\nN = 2.7*10**25; #number of atoms(per m**3)\nepsilon0 = 8.85*10**-12; #permittivity of free space\n\n#Calculation\nalpha_e = epsilon0*(epsilon_r-1)/N; #electronic polarizability(Fm**2)\n\n#Result\nprint \"electronic polarizability is\",alpha_e,\"Fm**2\"", - "language": "python", - "metadata": {}, - "outputs": [ - { - "output_type": "stream", - "stream": "stdout", - "text": "electronic polarizability is 2.242e-41 Fm**2\n" - } - ], - "prompt_number": 1 - }, - { - "cell_type": "heading", - "level": 2, - "metadata": {}, - "source": "Example number 10.2, Page number 290" - }, - { - "cell_type": "code", - "collapsed": false, - "input": "#importing modules\nimport math\n\n#Variable declaration\nepsilon_r = 1.0024; #relative permittivity\nN = 2.7*10**25; #number of atoms(per m**3)\nepsilon0 = 8.85*10**-12; #permittivity of free space\n\n#Calculation\nalpha_e = epsilon0*(epsilon_r-1)/N; #electronic polarizability(Fm**2)\n\n#Result\nprint \"electronic polarizability is\",alpha_e,\"Fm**2\"", - "language": "python", - "metadata": {}, - "outputs": [ - { - "output_type": "stream", - "stream": "stdout", - "text": "electronic polarizability is 7.86666666667e-40 Fm**2\n" - } - ], - "prompt_number": 2 - } - ], - "metadata": {} - } - ] -}
\ No newline at end of file |