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