diff options
author | Thomas Stephen Lee | 2015-08-28 16:53:23 +0530 |
---|---|---|
committer | Thomas Stephen Lee | 2015-08-28 16:53:23 +0530 |
commit | 4a1f703f1c1808d390ebf80e80659fe161f69fab (patch) | |
tree | 31b43ae8895599f2d13cf19395d84164463615d9 /Introduction_to_Solid_State_Physics_by_Kittel_C | |
parent | 9d260e6fae7328d816a514130b691fbd0e9ef81d (diff) | |
download | Python-Textbook-Companions-4a1f703f1c1808d390ebf80e80659fe161f69fab.tar.gz Python-Textbook-Companions-4a1f703f1c1808d390ebf80e80659fe161f69fab.tar.bz2 Python-Textbook-Companions-4a1f703f1c1808d390ebf80e80659fe161f69fab.zip |
add books
Diffstat (limited to 'Introduction_to_Solid_State_Physics_by_Kittel_C')
-rwxr-xr-x | Introduction_to_Solid_State_Physics_by_Kittel_C/Chapter5.ipynb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Introduction_to_Solid_State_Physics_by_Kittel_C/Chapter5.ipynb b/Introduction_to_Solid_State_Physics_by_Kittel_C/Chapter5.ipynb new file mode 100755 index 00000000..4fef7b6c --- /dev/null +++ b/Introduction_to_Solid_State_Physics_by_Kittel_C/Chapter5.ipynb @@ -0,0 +1,49 @@ +{ + "metadata": { + "name": "Chapter_5_Kittel" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": "Chapter 5 : Phonons and Lattice Vibrations\n" + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": "Example 1: Generation of phonons, Page 137" + }, + { + "cell_type": "code", + "collapsed": false, + "input": "# importing modules\nfrom __future__ import division\nimport math\n\n# Variable declaration\n\nl = 4 * 10**(-5); # the wavelength in cm for visible light -4000 Angstrom\nVs = 5 * 10**(5); # velocity of sound in cm/sec\nn = 1.5 ; # refractive index of the crystal\n\nNu = (2*Vs*2*3.14*n)/(l); # Nu = [2Vs(2*3.14)*n/l]*sin(psi/2) and here sin(psi/2)=1\n\n#Result\n\nprint \" The maximum phonon frequency is \", Nu , \" per sec\"\n\n", + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": " The maximum phonon frequency is 2.355e+11 per sec\n" + } + ], + "prompt_number": 1 + }, + { + "cell_type": "code", + "collapsed": false, + "input": "", + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |