From 83c1bfceb1b681b4bb7253b47491be2d8b2014a1 Mon Sep 17 00:00:00 2001 From: debashisdeb Date: Fri, 20 Jun 2014 15:42:42 +0530 Subject: removing problem statements --- .../CH10.ipynb | 10 ----- .../CH12.ipynb | 16 -------- .../CH14.ipynb | 24 ------------ .../CH16.ipynb | 15 -------- .../CH17.ipynb | 12 ------ .../CH18.ipynb | 33 ---------------- .../CH19.ipynb | 3 -- .../CH20.ipynb | 13 ------- .../CH21.ipynb | 8 ---- .../CH3.ipynb | 45 ---------------------- .../CH4.ipynb | 15 -------- .../CH5.ipynb | 26 ------------- .../CH6.ipynb | 33 ---------------- .../CH7.ipynb | 17 -------- .../CH8.ipynb | 11 ------ .../CH9.ipynb | 11 ------ 16 files changed, 292 deletions(-) (limited to 'Materials_science_and_engineering_an_introduction') diff --git a/Materials_science_and_engineering_an_introduction/CH10.ipynb b/Materials_science_and_engineering_an_introduction/CH10.ipynb index 2a7a789c..b7fb2351 100644 --- a/Materials_science_and_engineering_an_introduction/CH10.ipynb +++ b/Materials_science_and_engineering_an_introduction/CH10.ipynb @@ -27,27 +27,21 @@ "cell_type": "code", "collapsed": false, "input": [ - "#(a)Computation of Critical Nuclear Radius\n", "\n", - "#Given\n", "Hf=-1.16*10**9 # in J/m**3 latent heat of fusion\n", "Y=0.132 # in J/m**2 Surface energy\n", "Tm=1064.0+273.0 # in K Melting point of gold\n", "\n", - "#calculation\n", "import math\n", "T=Tm-230.0 # in K 230 is supercooling value\n", "r=-2*Y*Tm/(Hf*(Tm-T))\n", "G=16*math.pi*Y**3*Tm**2/(3*Hf**2*(Tm-T)**2)\n", "\n", - "#part (b)\n", "a=0.413*10**-9 # in m Unit Cell edge length\n", - "#unit cells per paticle\n", "u_c=4*math.pi*r**3/(3*a**3)\n", "n=4 #In FCC . no of atoms in per unit cell\n", "U_c=int(u_c)*n\n", "\n", - "#Result\n", "print\"(a)Critical Radius is \",round(r/10**-9,2),\"nm\"\n", "print\"Activation free energy is \",round(G,21),\"J\"\n", "print\"(b)Total no. of atoms per critical nucleus are \",U_c\n", @@ -80,19 +74,15 @@ "cell_type": "code", "collapsed": false, "input": [ - "#Determination the rate of recrystallization\n", "\n", - "#Given\n", "n=5.0\n", "y=0.3\n", "t=100.0 #in min\n", "\n", - "#Calculation\n", "k=-math.log(1-y)/t**n\n", "thalf=(-math.log(1-0.5)/k)**(1/n)\n", "rate=1/thalf\n", "\n", - "#Result\n", "print\"Rate is \",rate,\"min**-1\"\n", "\n" ], diff --git a/Materials_science_and_engineering_an_introduction/CH12.ipynb b/Materials_science_and_engineering_an_introduction/CH12.ipynb index ee793447..b2774698 100644 --- a/Materials_science_and_engineering_an_introduction/CH12.ipynb +++ b/Materials_science_and_engineering_an_introduction/CH12.ipynb @@ -27,16 +27,12 @@ "cell_type": "code", "collapsed": false, "input": [ - "#Computation of Minimum Caion-to-Anion Radius Ratio forCo-ordination No. of 3\n", "\n", - "#For equilateral triangle after joining centres of the atoms Angle = 30\n", "a=30\n", "\n", - "#Calculation\n", "import math\n", "ratio=(1-math.cos(a*math.pi/180.0))/math.cos(a*math.pi/180.0)\n", "\n", - "#Result\n", "print\"Cation to anion raio is \",round(ratio,3)\n", "\n" ], @@ -65,16 +61,12 @@ "cell_type": "code", "collapsed": false, "input": [ - "#Ceramic Crystal structure prediction\n", "\n", - "#Given\n", "r_Fe=0.077 # in nm Radius of iron cation Fe++\n", "r_O=0.140 #in nm Radius of Oxygen anion O--\n", "\n", - "#Calculation\n", "ratio=r_Fe/r_O\n", "\n", - "#Result\n", "print\"Ratio is \",ratio\n", "if 0.414