{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "#Chapter 8:Vapour Power Cycles" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.1;pg no: 260" ] }, { "cell_type": "code", "execution_count": 88, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.1, Page:260 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 1\n", "T-S representation for carnot cycle operating between pressure of 7 MPa and 7KPa is shown in fig.\n", "enthalpy at state 2,h2= hg at 7 MPa\n", "from steam table,h=2772.1 KJ/kg\n", "entropy at state 2,s2=sg at 7MPa\n", "from steam table,s2=5.8133 KJ/kg K\n", "enthalpy and entropy at state 3,\n", "from steam table,h3=hf at 7 MPa =1267 KJ/kg and s3=sf at 7 MPa=3.1211 KJ/kg K\n", "for process 2-1,s1=s2.Let dryness fraction at state 1 be x1 \n", "from steam table, sf at 7 KPa=0.5564 KJ/kg K,sfg at 7 KPa=7.7237 KJ/kg K\n", "s1=s2=sf+x1*sfg\n", "so x1= 0.68\n", "from steam table,hf at 7 KPa=162.60 KJ/kg,hfg at 7 KPa=2409.54 KJ/kg\n", "enthalpy at state 1,h1 in KJ/kg= 1802.53\n", "let dryness fraction at state 4 be x4\n", "for process 4-3,s4=s3=sf+x4*sfg\n", "so x4= 0.33\n", "enthalpy at state 4,h4 in KJ/kg= 962.81\n", "thermal efficiency=net work/heat added\n", "expansion work per kg=(h2-h1) in KJ/kg 969.57\n", "compression work per kg=(h3-h4) in KJ/kg(+ve) 304.19\n", "heat added per kg=(h2-h3) in KJ/kg(-ve) 1505.1\n", "net work per kg=(h2-h1)-(h3-h4) in KJ/kg 665.38\n", "thermal efficiency 0.44\n", "in percentage 44.21\n", "so thermal efficiency=44.21%\n", "turbine work=969.57 KJ/kg(+ve)\n", "compression work=304.19 KJ/kg(-ve)\n" ] } ], "source": [ "#cal of thermal efficiency,turbine work,compression work\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.1, Page:260 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 1\")\n", "print(\"T-S representation for carnot cycle operating between pressure of 7 MPa and 7KPa is shown in fig.\")\n", "print(\"enthalpy at state 2,h2= hg at 7 MPa\")\n", "print(\"from steam table,h=2772.1 KJ/kg\")\n", "h2=2772.1;\n", "print(\"entropy at state 2,s2=sg at 7MPa\")\n", "print(\"from steam table,s2=5.8133 KJ/kg K\")\n", "s2=5.8133;\n", "print(\"enthalpy and entropy at state 3,\")\n", "print(\"from steam table,h3=hf at 7 MPa =1267 KJ/kg and s3=sf at 7 MPa=3.1211 KJ/kg K\")\n", "h3=1267;\n", "s3=3.1211;\n", "print(\"for process 2-1,s1=s2.Let dryness fraction at state 1 be x1 \")\n", "s1=s2;\n", "print(\"from steam table, sf at 7 KPa=0.5564 KJ/kg K,sfg at 7 KPa=7.7237 KJ/kg K\")\n", "sf=0.5564;\n", "sfg=7.7237;\n", "print(\"s1=s2=sf+x1*sfg\")\n", "x1=(s2-sf)/sfg\n", "print(\"so x1=\"),round(x1,2) \n", "x1=0.6806;#approx.\n", "print(\"from steam table,hf at 7 KPa=162.60 KJ/kg,hfg at 7 KPa=2409.54 KJ/kg\")\n", "hf=162.60;\n", "hfg=2409.54;\n", "h1=hf+x1*hfg\n", "print(\"enthalpy at state 1,h1 in KJ/kg=\"),round(h1,2)\n", "print(\"let dryness fraction at state 4 be x4\")\n", "print(\"for process 4-3,s4=s3=sf+x4*sfg\")\n", "s4=s3;\n", "x4=(s4-sf)/sfg\n", "print(\"so x4=\"),round(x4,2)\n", "x4=0.3321;#approx.\n", "h4=hf+x4*hfg\n", "print(\"enthalpy at state 4,h4 in KJ/kg=\"),round(h4,2)\n", "print(\"thermal efficiency=net work/heat added\")\n", "(h2-h1)\n", "print(\"expansion work per kg=(h2-h1) in KJ/kg\"),round((h2-h1),2)\n", "(h3-h4)\n", "print(\"compression work per kg=(h3-h4) in KJ/kg(+ve)\"),round((h3-h4),2)\n", "(h2-h3)\n", "print(\"heat added per kg=(h2-h3) in KJ/kg(-ve)\"),round((h2-h3),2)\n", "(h2-h1)-(h3-h4)\n", "print(\"net work per kg=(h2-h1)-(h3-h4) in KJ/kg\"),round((h2-h1)-(h3-h4),2)\n", "((h2-h1)-(h3-h4))/(h2-h3)\n", "print(\"thermal efficiency\"),round(((h2-h1)-(h3-h4))/(h2-h3),2)\n", "print(\"in percentage\"),round((((h2-h1)-(h3-h4))/(h2-h3))*100,2)\n", "print(\"so thermal efficiency=44.21%\")\n", "print(\"turbine work=969.57 KJ/kg(+ve)\")\n", "print(\"compression work=304.19 KJ/kg(-ve)\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.2;pg no: 261" ] }, { "cell_type": "code", "execution_count": 89, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.2, Page:261 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 2\n", "from steam tables,at 5 MPa,hf_5MPa=1154.23 KJ/kg,sf_5MPa=2.92 KJ/kg K\n", "hg_5MPa=2794.3 KJ/kg,sg_5MPa=5.97 KJ/kg K\n", "from steam tables,at 5 Kpa,hf_5KPa=137.82 KJ/kg,sf_5KPa=0.4764 KJ/kg K\n", "hg_5KPa=2561.5 KJ/kg,sg_5KPa=8.3951 KJ/kg K,vf_5KPa=0.001005 m^3/kg\n", "as process 2-3 is isentropic,so s2=s3\n", "and s3=sf_5KPa+x3*sfg_5KPa=s2=sg_5MPa\n", "so x3= 0.69\n", "hence enthalpy at 3,\n", "h3 in KJ/kg= 1819.85\n", "enthalpy at 2,h2=hg_5KPa=2794.3 KJ/kg\n", "process 1-4 is isentropic,so s1=s4\n", "s1=sf_5KPa+x4*(sg_5KPa-sf_5KPa)\n", "so x4= 0.31\n", "enthalpy at 4,h4 in KJ/kg= 884.31\n", "enthalpy at 1,h1 in KJ/kg= 1154.23\n", "carnot cycle(1-2-3-4-1) efficiency:\n", "n_carnot=net work/heat added\n", "n_carnot 0.43\n", "in percentage 42.96\n", "so n_carnot=42.95%\n", "In rankine cycle,1-2-3-5-6-1,\n", "pump work,h6-h5=vf_5KPa*(p6-p5)in KJ/kg 5.02\n", "h5 KJ/kg= 137.82\n", "hence h6 in KJ/kg 142.84\n", "net work in rankine cycle=(h2-h3)-(h6-h5)in KJ/kg 969.43\n", "heat added=(h2-h6)in KJ/kg 2651.46\n", "rankine cycle efficiency(n_rankine)= 0.37\n", "in percentage 36.56\n", "so n_rankine=36.56%\n" ] } ], "source": [ "#cal of n_carnot,n_rankine\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.2, Page:261 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 2\")\n", "print(\"from steam tables,at 5 MPa,hf_5MPa=1154.23 KJ/kg,sf_5MPa=2.92 KJ/kg K\")\n", "print(\"hg_5MPa=2794.3 KJ/kg,sg_5MPa=5.97 KJ/kg K\")\n", "hf_5MPa=1154.23;\n", "sf_5MPa=2.92;\n", "hg_5MPa=2794.3;\n", "sg_5MPa=5.97;\n", "print(\"from steam tables,at 5 Kpa,hf_5KPa=137.82 KJ/kg,sf_5KPa=0.4764 KJ/kg K\")\n", "print(\"hg_5KPa=2561.5 KJ/kg,sg_5KPa=8.3951 KJ/kg K,vf_5KPa=0.001005 m^3/kg\")\n", "hf_5KPa=137.82;\n", "sf_5KPa=0.4764;\n", "hg_5KPa=2561.5;\n", "sg_5KPa=8.3951;\n", "vf_5KPa=0.001005;\n", "print(\"as process 2-3 is isentropic,so s2=s3\")\n", "print(\"and s3=sf_5KPa+x3*sfg_5KPa=s2=sg_5MPa\")\n", "s2=sg_5MPa;\n", "s3=s2;\n", "x3=(s3-sf_5KPa)/(sg_5KPa-sf_5KPa)\n", "print(\"so x3=\"),round(x3,2)\n", "x3=0.694;#approx.\n", "print(\"hence enthalpy at 3,\")\n", "h3=hf_5KPa+x3*(hg_5KPa-hf_5KPa)\n", "print(\"h3 in KJ/kg=\"),round(h3,2)\n", "print(\"enthalpy at 2,h2=hg_5KPa=2794.3 KJ/kg\")\n", "print(\"process 1-4 is isentropic,so s1=s4\")\n", "s1=sf_5MPa;\n", "print(\"s1=sf_5KPa+x4*(sg_5KPa-sf_5KPa)\")\n", "x4=(s1-sf_5KPa)/(sg_5KPa-sf_5KPa)\n", "print(\"so x4=\"),round(x4,2)\n", "x4=0.308;#approx.\n", "h4=hf_5KPa+x4*(hg_5KPa-hf_5KPa)\n", "print(\"enthalpy at 4,h4 in KJ/kg=\"),round(h4,2)\n", "h1=hf_5MPa\n", "h2=hg_5MPa;\n", "n_carnot=((h2-h3)-(h1-h4))/(h2-h1)\n", "print(\"enthalpy at 1,h1 in KJ/kg=\"),round(h1,2)\n", "print(\"carnot cycle(1-2-3-4-1) efficiency:\")\n", "print(\"n_carnot=net work/heat added\")\n", "print(\"n_carnot\"),round(n_carnot,2)\n", "print(\"in percentage\"),round(n_carnot*100,2)\n", "print(\"so n_carnot=42.95%\")\n", "print(\"In rankine cycle,1-2-3-5-6-1,\")\n", "p6=5000;#boiler pressure in KPa\n", "p5=5;#condenser pressure in KPa\n", "vf_5KPa*(p6-p5)\n", "print(\"pump work,h6-h5=vf_5KPa*(p6-p5)in KJ/kg\"),round(vf_5KPa*(p6-p5),2)\n", "h5=hf_5KPa;\n", "print(\"h5 KJ/kg=\"),round(hf_5KPa,2)\n", "h6=h5+(vf_5KPa*(p6-p5))\n", "print(\"hence h6 in KJ/kg\"),round(h6,2)\n", "(h2-h3)-(h6-h5)\n", "print(\"net work in rankine cycle=(h2-h3)-(h6-h5)in KJ/kg\"),round((h2-h3)-(h6-h5),2)\n", "(h2-h6)\n", "print(\"heat added=(h2-h6)in KJ/kg\"),round((h2-h6),2)\n", "n_rankine=((h2-h3)-(h6-h5))/(h2-h6)\n", "print(\"rankine cycle efficiency(n_rankine)=\"),round(n_rankine,2)\n", "print(\"in percentage\"),round(n_rankine*100,2)\n", "print(\"so n_rankine=36.56%\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.3;pg no: 263" ] }, { "cell_type": "code", "execution_count": 90, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.3, Page:263 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 3\n", "from steam tables,h2=hg_40bar=3092.5 KJ/kg\n", "s2=sg_40bar=6.5821 KJ/kg K\n", "h4=hf_0.05bar=137.82 KJ/kg,hfg=2423.7 KJ/kg \n", "s4=sf_0.05bar=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\n", "v4=vf_0.05bar=0.001005 m^3/kg\n", "let the dryness fraction at state 3 be x3,\n", "for ideal process,2-3,s2=s3\n", "s2=s3=6.5821=sf_0.05bar+x3*sfg_0.05bar\n", "so x3= 0.77\n", "h3=hf_0.05bar+x3*hfg_0.05bar in KJ/kg\n", "for pumping process,\n", "h1-h4=v4*deltap=v4*(p1-p4)\n", "so h1=h4+v4*(p1-p4) in KJ/kg 141.83\n", "pump work per kg of steam in KJ/kg 4.01\n", "net work per kg of steam =(expansion work-pump work)per kg of steam\n", "=(h2-h3)-(h1-h4) in KJ/kg= 1081.75\n", "cycle efficiency=net work/heat added 0.37\n", "in percentage 36.66\n", "so net work per kg of steam=1081.74 KJ/kg\n", "cycle efficiency=36.67%\n", "pump work per kg of steam=4.02 KJ/kg\n" ] } ], "source": [ "#cal of net work per kg of steam,cycle efficiency,pump work per kg of steam\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.3, Page:263 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 3\")\n", "print(\"from steam tables,h2=hg_40bar=3092.5 KJ/kg\")\n", "h2=3092.5;\n", "print(\"s2=sg_40bar=6.5821 KJ/kg K\")\n", "s2=6.5821;\n", "print(\"h4=hf_0.05bar=137.82 KJ/kg,hfg=2423.7 KJ/kg \")\n", "h4=137.82;\n", "hfg=2423.7;\n", "print(\"s4=sf_0.05bar=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\")\n", "s4=0.4764;\n", "sfg=7.9187;\n", "print(\"v4=vf_0.05bar=0.001005 m^3/kg\")\n", "v4=0.001005;\n", "print(\"let the dryness fraction at state 3 be x3,\")\n", "print(\"for ideal process,2-3,s2=s3\")\n", "s3=s2;\n", "print(\"s2=s3=6.5821=sf_0.05bar+x3*sfg_0.05bar\")\n", "x3=(s2-s4)/(sfg)\n", "print(\"so x3=\"),round(x3,2)\n", "x3=0.7711;#approx.\n", "print(\"h3=hf_0.05bar+x3*hfg_0.05bar in KJ/kg\")\n", "h3=h4+x3*hfg\n", "print(\"for pumping process,\")\n", "print(\"h1-h4=v4*deltap=v4*(p1-p4)\")\n", "p1=40*100;#pressure of steam enter in turbine in mPa\n", "p4=0.05*100;#pressure of steam leave turbine in mPa\n", "h1=h4+v4*(p1-p4)\n", "print(\"so h1=h4+v4*(p1-p4) in KJ/kg\"),round(h1,2)\n", "(h1-h4)\n", "print(\"pump work per kg of steam in KJ/kg\"),round((h1-h4),2)\n", "print(\"net work per kg of steam =(expansion work-pump work)per kg of steam\")\n", "(h2-h3)-(h1-h4)\n", "print(\"=(h2-h3)-(h1-h4) in KJ/kg=\"),round((h2-h3)-(h1-h4),2)\n", "print(\"cycle efficiency=net work/heat added\"),round(((h2-h3)-(h1-h4))/(h2-h1),2)\n", "print(\"in percentage\"),round(((h2-h3)-(h1-h4))*100/(h2-h1),2)\n", "print(\"so net work per kg of steam=1081.74 KJ/kg\")\n", "print(\"cycle efficiency=36.67%\")\n", "print(\"pump work per kg of steam=4.02 KJ/kg\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.4;pg no: 264" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.4, Page:264 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 4\n", "Let us assume that the condensate leaves condenser as saturated liquid and the expansion in turbine and pumping processes are isentropic.\n", "from steam tables,h2=h_20MPa=3238.2 KJ/kg\n", "s2=6.1401 KJ/kg K\n", "h5=h_0.005MPa in KJ/kg\n", "from steam tables,at 0.005 MPa,hf=137.82 KJ/kg,hfg=2423.7 KJ/kg,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\n", "h5=hf+0.9*hfg in KJ/kg 2319.15\n", "s5 in KJ/kg K= 7.6\n", "h6=hf=137.82 KJ/kg\n", "it is given that temperature at state 4 is 500 degree celcius and due to isentropic processes s4=s5=7.6032 KJ/kg K.The state 4 can be conveniently located on mollier chart by the intersection of 500 degree celcius constant temperature line and entropy value of 7.6032 KJ/kg K and the pressure and enthalpy obtained.but these shall be approximate.\n", "The state 4 can also be located by interpolation using steam table.The entropy value of 7.6032 KJ/kg K lies between the superheated steam states given under,p=1.20 MPa,s at 1.20 MPa=7.6027 KJ/kg K\n", "p=1.40 MPa,s at 1.40 MPa=7.6027 KJ/kg K\n", "by interpolation state 4 lies at pressure=\n", "=1.399,approx.=1.40 MPa\n", "thus,steam leaves HP turbine at 1.40 MPa\n", "enthalpy at state 4,h4=3474.1 KJ/kg\n", "for process 2-33,s2=s3=6.1401 KJ/kg K.The state 3 thus lies in wet region as s3sg at 40 bar(6.0701 KJ/kg K)so state 10 lies in superheated region at 40 bar pressure.\n", "From steam table by interpolation,T10=370.6oc,so h10=3141.81 KJ/kg\n", "Let dryness fraction at state 9 be x9 so,\n", "s9=6.6582=sf at 4 bar+x9*sfg at 4 bar\n", "from steam tables,at 4 bar,sf=1.7766 KJ/kg K,sfg=5.1193 KJ/kg K\n", "x9=(s9-sf)/sfg 0.95\n", "h9=hf at 4 bar+x9*hfg at 4 bar in KJ/kg\n", "from steam tables,at 4 bar,hf=604.74 KJ/kg,hfg=2133.8 KJ/kg\n", "Assuming the state of fluid leaving open feed water heater to be saturated liquid at respective pressures i.e.\n", "h11=hf at 4 bar=604.74 KJ/kg,v11=0.001084 m^3/kg=vf at 4 bar\n", "h13=hf at 40 bar=1087.31 KJ/kg,v13=0.001252 m^3/kg=vf at40 bar\n", "For process 4-8,i.e in CEP.\n", "h8 in KJ/kg= 138.22\n", "For process 11-12,i.e in FP2,\n", "h12=h11+v11*(40-4)*10^2 in KJ/kg 608.64\n", "For process 13-1_a i.e. in FP1,h1_a= in KJ/kg= 1107.34\n", "m1*3141.81+(1-m1)*608.64=1087.31\n", "so m1=(1087.31-608.64)/(3141.81-608.64)in kg\n", "Applying energy balance on open feed water heater 1 (OFWH1)\n", "m1*h10+(1-m1)*h12)=1*h13\n", "so m1 in kg= 0.19\n", "Applying energy balance on open feed water heater 2 (OFWH2)\n", "m2*h9+(1-m1-m2)*h8=(1-m1)*h11\n", "so m2 in kg= 0.15\n", "Thermal efficiency of cycle,n= 0.51\n", "W_CEP in KJ/kg steam from boiler= 0.26\n", "W_FP1=(h1_a-h13)in KJ/kg of steam from boiler 20.0\n", "W_FP2 in KJ/kg of steam from boiler= 3.17\n", "W_CEP+W_FP1+W_FP2 in KJ/kg of steam from boiler= 23.46\n", "n= 0.51\n", "in percentage 51.37\n", "so cycle thermal efficiency,na=46.18%\n", "nb=49.76%\n", "nc=51.37%\n", "hence it is obvious that efficiency increases with increase in number of feed heaters.\n" ] } ], "source": [ "#cal of maximum possible work\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.6, Page:267 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 6\")\n", "print(\"case (a) When there is no feed water heater\")\n", "print(\"Thermal efficiency of cycle=((h2-h3)-(h1-h4))/(h2-h1)\")\n", "print(\"from steam tables,h2=h at 200 bar,650oc=3675.3 KJ/kg,s2=s at 200 bar,650oc=6.6582 KJ/kg K,h4=hf at 0.05 bar=137.82 KJ/kg,v4=vf at 0.05 bar=0.001005 m^3/kg\")\n", "h2=3675.3;\n", "s2=6.6582;\n", "h4=137.82;\n", "v4=0.001005;\n", "print(\"hf at 0.05 bar=137.82 KJ/kg,hfg at 0.05 bar=2423.7 KJ/kg,sf at 0.05 bar=0.4764 KJ/kg K,sfg at 0.05 bar=7.9187 KJ/kg K\")\n", "hf=137.82;\n", "hfg=2423.7;\n", "sf=0.4764;\n", "sfg=7.9187;\n", "print(\"For process 2-3,s2=s3.Let dryness fraction at 3 be x3.\")\n", "s3=s2;\n", "print(\"s3=6.6582=sf at 0.05 bar+x3*sfg at 0.05 bar\")\n", "x3=(s3-sf)/sfg\n", "print(\"so x3=\"),round(x3,2)\n", "x3=0.781;#approx.\n", "print(\"h3=hf at 0.05 bar+x3*hfg at 0.05 bar in KJ/kg\")\n", "h3=hf+x3*hfg\n", "print(\"For pumping process 4-1,\")\n", "print(\"h1-h4=v4*deltap\")\n", "h1=h4+v4*(200-0.5)*10**2\n", "print(\"h1= in KJ/kg=\"),round(h1,2)\n", "((h2-h3)-(h1-h4))/(h2-h1)\n", "print(\"Thermal efficiency of cycle=\"),round(((h2-h3)-(h1-h4))/(h2-h1),2)\n", "print(\"in percentage\"),round(((h2-h3)-(h1-h4))*100/(h2-h1),2)\n", "print(\"case (b) When there is only one feed water heater working at 8 bar\")\n", "print(\"here,let mass of steam bled for feed heating be m kg\")\n", "print(\"For process 2-6,s2=s6=6.6582 KJ/kg K\")\n", "s6=s2;\n", "print(\"Let dryness fraction at state 6 be x6\")\n", "print(\"s6=sf at 8 bar+x6*sfg at 8 bar\")\n", "print(\"from steam tables,hf at 8 bar=721.11 KJ/kg,vf at 8 bar=0.001115 m^3/kg,hfg at 8 bar=2048 KJ/kg,sf at 8 bar=2.0462 KJ/kg K,sfg at 8 bar=4.6166 KJ/kg K\")\n", "hf=721.11;\n", "vf=0.001115;\n", "hfg=2048;\n", "sf=2.0462;\n", "sfg=4.6166;\n", "x6=(s6-sf)/sfg\n", "print(\"substituting entropy values,x6=\"),round(x6,2)\n", "x6=0.999;#approx.\n", "print(\"h6=hf at at 8 bar+x6*hfg at 8 bar in KJ/kg\")\n", "h6=hf+x6*hfg\n", "print(\"Assuming the state of fluid leaving open feed water heater to be saturated liquid at 8 bar.h7=hf at 8 bar=721.11 KJ/kg\")\n", "h7=721.11;\n", "h5=h4+v4*(8-.05)*10**2\n", "print(\"For process 4-5,h5 in KJ/kg\"),round(h5,2)\n", "print(\"Applying energy balance at open feed water heater,\")\n", "print(\"m*h6+(1-m)*h5=1*h7\")\n", "m=(h7-h5)/(h6-h5)\n", "print(\"so m= in kg\"),round(m,2)\n", "h7=hf;\n", "v7=vf;\n", "h1=h7+v7*(200-8)*10**2\n", "print(\"For process 7-1,h1 in KJ/kg=\"),round(h1,2)\n", "print(\"here h7=hf at 8 bar,v7=vf at 8 bar\")\n", "#TE=((h2-h6)+(1-m)*(h6-h3)-((1-m)*(h5-h4)+(h1-h7))/(h2-h1)\n", "print(\"Thermal efficiency of cycle=0.4976\")\n", "print(\"in percentage=49.76\")\n", "print(\"case (c) When there are two feed water heaters working at 40 bar and 4 bar\")\n", "print(\"here, let us assume the mass of steam at 40 bar,4 bar to be m1 kg and m2 kg respectively.\")\n", "print(\"2-10-9-3,s2=s10=s9=s3=6.6582 KJ/kg K\")\n", "s3=s2;\n", "s9=s3;\n", "s10=s9;\n", "print(\"At state 10.s10>sg at 40 bar(6.0701 KJ/kg K)so state 10 lies in superheated region at 40 bar pressure.\")\n", "print(\"From steam table by interpolation,T10=370.6oc,so h10=3141.81 KJ/kg\")\n", "T10=370.6;\n", "h10=3141.81;\n", "print(\"Let dryness fraction at state 9 be x9 so,\") \n", "print(\"s9=6.6582=sf at 4 bar+x9*sfg at 4 bar\")\n", "print(\"from steam tables,at 4 bar,sf=1.7766 KJ/kg K,sfg=5.1193 KJ/kg K\")\n", "sf=1.7766;\n", "sfg=5.1193;\n", "x9=(s9-sf)/sfg\n", "print(\"x9=(s9-sf)/sfg\"),round(x9,2)\n", "x9=0.9536;#approx.\n", "print(\"h9=hf at 4 bar+x9*hfg at 4 bar in KJ/kg\")\n", "print(\"from steam tables,at 4 bar,hf=604.74 KJ/kg,hfg=2133.8 KJ/kg\")\n", "hf=604.74;\n", "hfg=2133.8;\n", "h9=hf+x9*hfg \n", "print(\"Assuming the state of fluid leaving open feed water heater to be saturated liquid at respective pressures i.e.\")\n", "print(\"h11=hf at 4 bar=604.74 KJ/kg,v11=0.001084 m^3/kg=vf at 4 bar\")\n", "h11=604.74;\n", "v11=0.001084;\n", "print(\"h13=hf at 40 bar=1087.31 KJ/kg,v13=0.001252 m^3/kg=vf at40 bar\")\n", "h13=1087.31;\n", "v13=0.001252;\n", "print(\"For process 4-8,i.e in CEP.\")\n", "h8=h4+v4*(4-0.05)*10**2\n", "print(\"h8 in KJ/kg=\"),round(h8,2)\n", "print(\"For process 11-12,i.e in FP2,\")\n", "h12=h11+v11*(40-4)*10**2\n", "print(\"h12=h11+v11*(40-4)*10^2 in KJ/kg\"),round(h12,2)\n", "h1_a=h13+v13*(200-40)*10**2\n", "print(\"For process 13-1_a i.e. in FP1,h1_a= in KJ/kg=\"),round(h1_a,2)\n", "print(\"m1*3141.81+(1-m1)*608.64=1087.31\")\n", "print(\"so m1=(1087.31-608.64)/(3141.81-608.64)in kg\")\n", "m1=(1087.31-608.64)/(3141.81-608.64)\n", "print(\"Applying energy balance on open feed water heater 1 (OFWH1)\")\n", "print(\"m1*h10+(1-m1)*h12)=1*h13\")\n", "m1=(h13-h12)/(h10-h12)\n", "print(\"so m1 in kg=\"),round(m1,2)\n", "print(\"Applying energy balance on open feed water heater 2 (OFWH2)\")\n", "print(\"m2*h9+(1-m1-m2)*h8=(1-m1)*h11\")\n", "m2=(1-m1)*(h11-h8)/(h9-h8)\n", "print(\"so m2 in kg=\"),round(m2,2)\n", "W_CEP=(1-m1-m2)*(h8-h4)\n", "W_FP1=(h1_a-h13)\n", "W_FP2=(1-m1)*(h12-h11)\n", "n=(((h2-h10)+(1-m1)*(h10-h9)+(1-m1-m2)*(h9-h3))-(W_CEP+W_FP1+W_FP2))/(h2-h1_a)\n", "print(\"Thermal efficiency of cycle,n=\"),round(n,2)\n", "print(\"W_CEP in KJ/kg steam from boiler=\"),round(W_CEP,2)\n", "print(\"W_FP1=(h1_a-h13)in KJ/kg of steam from boiler\"),round(W_FP1)\n", "print(\"W_FP2 in KJ/kg of steam from boiler=\"),round(W_FP2,2)\n", "W_CEP+W_FP1+W_FP2\n", "print(\"W_CEP+W_FP1+W_FP2 in KJ/kg of steam from boiler=\"),round(W_CEP+W_FP1+W_FP2,2)\n", "n=(((h2-h10)+(1-m1)*(h10-h9)+(1-m1-m2)*(h9-h3))-(W_CEP+W_FP1+W_FP2))/(h2-h1_a)\n", "print(\"n=\"),round(n,2)\n", "print(\"in percentage\"),round(n*100,2)\n", "print(\"so cycle thermal efficiency,na=46.18%\")\n", "print(\"nb=49.76%\")\n", "print(\"nc=51.37%\")\n", "print(\"hence it is obvious that efficiency increases with increase in number of feed heaters.\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.7;pg no: 272" ] }, { "cell_type": "code", "execution_count": 94, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.7, Page:272 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 7\n", "from steam tables,\n", "h2=h at 50 bar,500oc=3433.8 KJ/kg,s2=s at 50 bar,500oc=6.9759 KJ/kg K\n", "s3=s2=6.9759 KJ/kg K\n", "by interpolation from steam tables,\n", "T3=183.14oc at 5 bar,h3=2818.03 KJ/kg,h4= h at 5 bar,400oc=3271.9 KJ/kg,s4= s at 5 bar,400oc=7.7938 KJ/kg K\n", "for expansion process 4-5,s4=s5=7.7938 KJ/kg K\n", "let dryness fraction at state 5 be x5\n", "s5=sf at 0.05 bar+x5*sfg at 0.05 bar\n", "from steam tables,at 0.05 bar,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\n", "so x5= 0.92\n", "h5=hf at 0.05 bar+x5*hfg at 0.05 bar in KJ/kg\n", "from steam tables,hf at 0.05 bar=137.82 KJ/kg,hfg at 0.05 bar=2423.7 KJ/kg\n", "h6=hf at 0.05 bar=137.82 KJ/kg\n", "v6=vf at 0.05 bar=0.001005 m^3/kg\n", "for process 6-1 in feed pump,h1 in KJ/kg= 142.84\n", "cycle efficiency=W_net/Q_add\n", "Wt in KJ/kg= 1510.35\n", "W_pump=(h1-h6)in KJ/kg 5.02\n", "W_net=Wt-W_pump in KJ/kg 1505.33\n", "Q_add in KJ/kg= 3290.96\n", "cycle efficiency= 0.4574\n", "in percentage= 45.74\n", "we know ,1 hp=0.7457 KW\n", "specific steam consumption in kg/hp hr= 1.78\n", "work ratio=net work/positive work 0.9967\n", "so cycle efficiency=45.74%,specific steam consumption =1.78 kg/hp hr,work ratio=0.9967\n" ] } ], "source": [ "#cal of cycle efficiency,specific steam consumption,work ratio\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.7, Page:272 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 7\")\n", "print(\"from steam tables,\")\n", "print(\"h2=h at 50 bar,500oc=3433.8 KJ/kg,s2=s at 50 bar,500oc=6.9759 KJ/kg K\")\n", "h2=3433.8;\n", "s2=6.9759;\n", "print(\"s3=s2=6.9759 KJ/kg K\")\n", "s3=s2;\n", "print(\"by interpolation from steam tables,\")\n", "print(\"T3=183.14oc at 5 bar,h3=2818.03 KJ/kg,h4= h at 5 bar,400oc=3271.9 KJ/kg,s4= s at 5 bar,400oc=7.7938 KJ/kg K\")\n", "T3=183.14;\n", "h3=2818.03;\n", "h4=3271.9;\n", "s4=7.7938;\n", "print(\"for expansion process 4-5,s4=s5=7.7938 KJ/kg K\")\n", "s5=s4;\n", "print(\"let dryness fraction at state 5 be x5\")\n", "print(\"s5=sf at 0.05 bar+x5*sfg at 0.05 bar\")\n", "print(\"from steam tables,at 0.05 bar,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\")\n", "sf=0.4764;\n", "sfg=7.9187;\n", "x5=(s5-sf)/sfg\n", "print(\"so x5=\"),round(x5,2)\n", "x5=0.924;#approx.\n", "print(\"h5=hf at 0.05 bar+x5*hfg at 0.05 bar in KJ/kg\")\n", "print(\"from steam tables,hf at 0.05 bar=137.82 KJ/kg,hfg at 0.05 bar=2423.7 KJ/kg\")\n", "hf=137.82;\n", "hfg=2423.7;\n", "h5=hf+x5*hfg \n", "print(\"h6=hf at 0.05 bar=137.82 KJ/kg\")\n", "h6=137.82;\n", "print(\"v6=vf at 0.05 bar=0.001005 m^3/kg\")\n", "v6=0.001005;\n", "p1=50.;#steam generation pressure in bar\n", "p6=0.05;#steam entering temperature in turbine in bar\n", "h1=h6+v6*(p1-p6)*100\n", "print(\"for process 6-1 in feed pump,h1 in KJ/kg=\"),round(h1,2)\n", "print(\"cycle efficiency=W_net/Q_add\")\n", "Wt=(h2-h3)+(h4-h5)\n", "print(\"Wt in KJ/kg=\"),round(Wt,2)\n", "W_pump=(h1-h6)\n", "print(\"W_pump=(h1-h6)in KJ/kg\"),round(W_pump,2)\n", "W_net=Wt-W_pump\n", "print(\"W_net=Wt-W_pump in KJ/kg\"),round(W_net,2)\n", "Q_add=(h2-h1)\n", "print(\"Q_add in KJ/kg=\"),round(Q_add,2)\n", "print(\"cycle efficiency=\"),round(W_net/Q_add,4)\n", "W_net*100/Q_add\n", "print(\"in percentage=\"),round(W_net*100/Q_add,2)\n", "print(\"we know ,1 hp=0.7457 KW\")\n", "print(\"specific steam consumption in kg/hp hr=\"),round(0.7457*3600/W_net,2)\n", "print(\"work ratio=net work/positive work\"),round(W_net/Wt,4)\n", "print(\"so cycle efficiency=45.74%,specific steam consumption =1.78 kg/hp hr,work ratio=0.9967\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.8;pg no: 273" ] }, { "cell_type": "code", "execution_count": 95, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.8, Page:273 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 8\n", "from steam tables,at state 2,h2=3301.8 KJ/kg,s2=6.7193 KJ/kg K\n", "h5=hf at 0.05 bar=137.82 KJ/kg,v5= vf at 0.05 bar=0.001005 m^3/kg\n", "Let mass of steam bled for feed heating be m kg/kg of steam generated in boiler.Let us also assume that condensate leaves closed feed water heater as saturated liquid i.e\n", "h8=hf at 3 bar=561.47 KJ/kg\n", "for process 2-3-4,s2=s3=s4=6.7193 KJ/kg K\n", "Let dryness fraction at state 3 and state 4 be x3 and x4 respectively.\n", "s3=6.7193=sf at 3 bar+x3* sfg at 3 bar\n", "from steam tables,sf=1.6718 KJ/kg K,sfg=5.3201 KJ/kg K\n", "so x3= 0.95\n", "s4=6.7193=sf at 0.05 bar+x4* sfg at 0.05 bar\n", "from steam tables,at 0.05 bar,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\n", "so x4= 0.79\n", "thus,h3=hf at 3 bar+x3* hfg at 3 bar in KJ/kg\n", "here from steam tables,at 3 bar,hf_3bar=561.47 KJ/kg,hfg_3bar=2163.8 KJ/kg K\n", "h4=hf at 0.05 bar+x4*hfg at 0.05 bar in KJ/kg\n", "from steam tables,at 0.05 bar,hf=137.82 KJ/kg,hfg=2423.7 KJ/kg\n", "assuming process across trap to be of throttling type so,h8=h9=561.47 KJ/kg.Assuming v5=v6,\n", "pumping work=(h7-h6)=v5*(p1-p5)in KJ/kg\n", "for mixing process between condenser and feed pump,\n", "(1-m)*h5+m*h9=1*h6\n", "h6=m(h9-h5)+h5\n", "we get,h6=137.82+m*423.65\n", "therefore h7=h6+6.02=143.84+m*423.65\n", "Applying energy balance at closed feed water heater;\n", "m*h3+(1-m)*h7=m*h8+(Cp*T_cond)\n", "so (m*2614.92)+(1-m)*(143.84+m*423.65)=m*561.47+480.7\n", "so m=0.144 kg\n", "steam bled for feed heating=0.144 kg/kg steam generated\n", "The net power output,W_net in KJ/kg steam generated= 1167.27\n", "mass of steam required to be generated in kg/s= 26.23\n", "or in kg/hr\n", "so capacity of boiler required=94428 kg/hr\n", "overall thermal efficiency=W_net/Q_add\n", "here Q_add in KJ/kg= 3134.56\n", "overall thermal efficiency= 0.37\n", "in percentage= 37.24\n", "so overall thermal efficiency=37.24%\n" ] } ], "source": [ "#cal of mass of steam bled for feed heating,capacity of boiler required,overall thermal efficiency\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.8, Page:273 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 8\")\n", "T_cond=115;#condensate temperature in degree celcius\n", "Cp=4.18;#specific heat at constant pressure in KJ/kg K\n", "P=30*10**3;#actual alternator output in KW\n", "n_boiler=0.9;#boiler efficiency\n", "n_alternator=0.98;#alternator efficiency\n", "print(\"from steam tables,at state 2,h2=3301.8 KJ/kg,s2=6.7193 KJ/kg K\")\n", "h2=3301.8;\n", "s2=6.7193;\n", "print(\"h5=hf at 0.05 bar=137.82 KJ/kg,v5= vf at 0.05 bar=0.001005 m^3/kg\")\n", "h5=137.82;\n", "v5=0.001005;\n", "print(\"Let mass of steam bled for feed heating be m kg/kg of steam generated in boiler.Let us also assume that condensate leaves closed feed water heater as saturated liquid i.e\")\n", "print(\"h8=hf at 3 bar=561.47 KJ/kg\")\n", "h8=561.47;\n", "print(\"for process 2-3-4,s2=s3=s4=6.7193 KJ/kg K\")\n", "s3=s2;\n", "s4=s3;\n", "print(\"Let dryness fraction at state 3 and state 4 be x3 and x4 respectively.\")\n", "print(\"s3=6.7193=sf at 3 bar+x3* sfg at 3 bar\")\n", "print(\"from steam tables,sf=1.6718 KJ/kg K,sfg=5.3201 KJ/kg K\")\n", "sf_3bar=1.6718;\n", "sfg_3bar=5.3201;\n", "x3=(s3-sf_3bar)/sfg_3bar\n", "print(\"so x3=\"),round(x3,2)\n", "x3=0.949;#approx.\n", "print(\"s4=6.7193=sf at 0.05 bar+x4* sfg at 0.05 bar\")\n", "print(\"from steam tables,at 0.05 bar,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\")\n", "sf=0.4764;\n", "sfg=7.9187;\n", "x4=(s4-sf)/sfg\n", "print(\"so x4=\"),round(x4,2)\n", "x4=0.788;#approx.\n", "print(\"thus,h3=hf at 3 bar+x3* hfg at 3 bar in KJ/kg\")\n", "print(\"here from steam tables,at 3 bar,hf_3bar=561.47 KJ/kg,hfg_3bar=2163.8 KJ/kg K\")\n", "hf_3bar=561.47;\n", "hfg_3bar=2163.8;\n", "h3=hf_3bar+x3*hfg_3bar \n", "print(\"h4=hf at 0.05 bar+x4*hfg at 0.05 bar in KJ/kg\")\n", "print(\"from steam tables,at 0.05 bar,hf=137.82 KJ/kg,hfg=2423.7 KJ/kg\")\n", "hf=137.82;\n", "hfg=2423.7;\n", "h4=hf+x4*hfg\n", "print(\"assuming process across trap to be of throttling type so,h8=h9=561.47 KJ/kg.Assuming v5=v6,\")\n", "h9=h8;\n", "v6=v5;\n", "print(\"pumping work=(h7-h6)=v5*(p1-p5)in KJ/kg\")\n", "p1=60;#pressure of steam in high pressure turbine in bar\n", "p5=0.05;#pressure of steam in low pressure turbine in bar\n", "v5*(p1-p5)*100\n", "print(\"for mixing process between condenser and feed pump,\")\n", "print(\"(1-m)*h5+m*h9=1*h6\")\n", "print(\"h6=m(h9-h5)+h5\")\n", "print(\"we get,h6=137.82+m*423.65\")\n", "print(\"therefore h7=h6+6.02=143.84+m*423.65\")\n", "print(\"Applying energy balance at closed feed water heater;\")\n", "print(\"m*h3+(1-m)*h7=m*h8+(Cp*T_cond)\")\n", "print(\"so (m*2614.92)+(1-m)*(143.84+m*423.65)=m*561.47+480.7\")\n", "print(\"so m=0.144 kg\")\n", "m=0.144;\n", "h6=137.82+m*423.65;\n", "h7=143.84+m*423.65;\n", "print(\"steam bled for feed heating=0.144 kg/kg steam generated\")\n", "W_net=(h2-h3)+(1-m)*(h3-h4)-(1-m)*(h7-h6)\n", "print(\"The net power output,W_net in KJ/kg steam generated=\"),round(W_net,2)\n", "P/(n_alternator*W_net)\n", "print(\"mass of steam required to be generated in kg/s=\"),round(P/(n_alternator*W_net),2)\n", "print(\"or in kg/hr\")\n", "26.23*3600\n", "print(\"so capacity of boiler required=94428 kg/hr\")\n", "print(\"overall thermal efficiency=W_net/Q_add\")\n", "Q_add=(h2-Cp*T_cond)/n_boiler\n", "print(\"here Q_add in KJ/kg=\"),round(Q_add,2) \n", "W_net/Q_add\n", "print(\"overall thermal efficiency=\"),round(W_net/Q_add,2)\n", "W_net*100/Q_add\n", "print(\"in percentage=\"),round(W_net*100/Q_add,2)\n", "print(\"so overall thermal efficiency=37.24%\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.9;pg no: 275" ] }, { "cell_type": "code", "execution_count": 96, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.9, Page:275 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 9\n", "At inlet to first turbine stage,h2=3230.9 KJ/kg,s2=6.9212 KJ/kg K\n", "For ideal expansion process,s2=s3\n", "By interpolation,T3=190.97 degree celcius from superheated steam tables at 6 bar,h3=2829.63 KJ/kg\n", "actual stste at exit of first stage,h3_a in KJ/kg= 2909.88\n", "actual state 3_a shall be at 232.78 degree celcius,6 bar,so s3_a KJ/kg K= 7.1075\n", "for second stage,s3_a=s4;By interpolation,s4=7.1075=sf at 1 bar+x4*sfg at 1 bar\n", "from steam tables,at 1 bar,sf=1.3026 KJ/kg K,sfg=6.0568 KJ/kg K\n", "so x4= 0.96\n", "h4=hf at 1 bar+x4*hfg at 1 bar in KJ/kg\n", "from steam tables,at 1 bar,hf=417.46 KJ/kg,hfg=2258.0 KJ/kg\n", "actual enthalpy at exit from second stage,h4_a in KJ/kg= 2646.48\n", "actual dryness fraction,x4_a=>h4_a=hf at 1 bar+x4_a*hfg at 1 bar\n", "so x4_a= 0.99\n", "x4_a=0.987,actual entropy,s4_a=7.2806 KJ/kg K\n", "for third stage,s4_a=7.2806=sf at 0.075 bar+x5*sfg at 0.075 bar\n", "from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\n", "so x5= 0.87\n", "h5=2270.43 KJ/kg\n", "actual enthalpy at exit from third stage,h5_a in KJ/kg= 2345.64\n", "Let mass of steam bled out be m1 and m2 kg at 6 bar,1 bar respectively.\n", "By heat balance on first closed feed water heater,(see schematic arrangement)\n", "h11=hf at 6 bar=670.56 KJ\n", "m1*h3_a+h10=m1*h11+4.18*150\n", "(m1*2829.63)+h10=(m1*670.56)+627\n", "h10+2159.07*m1=627\n", "By heat balance on second closed feed water heater,(see schematic arrangement)\n", "h7=hf at 1 bar=417.46 KJ/kg\n", "m2*h4+(1-m1-m2)*4.18*38=(m1+m2)*h7+4.18*95*(1-m1-m2)\n", "m2*2646.4+(1-m1-m2)*158.84=((m1+m2)*417.46)+(397.1*(1-m1-m2))\n", "m2*2467.27-m1*179.2-238.26=0\n", "heat balance at point of mixing,\n", "h10=(m1+m2)*h8+(1-m1-m2)*4.18*95\n", "neglecting pump work,h7=h8\n", "h10=m2*417.46+(1-m1-m2)*397.1\n", "substituting h10 and solving we get,m1=0.1293 kg and m2=0.1059 kg/kg of steam generated\n", "Turbine output per kg of steam generated,Wt in KJ/kg of steam generated= 780.445\n", "Rate of steam generation required in kg/s= 19.22\n", "in kg/hr\n", "capacity of drain pump i.e. FP shown in layout in kg/hr= 16273.96\n", "so capacity of drain pump=16273.96 kg/hr\n" ] } ], "source": [ "#cal of capacity of drain pump\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.9, Page:275 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 9\")\n", "P=15*10**3;#turbine output in KW\n", "print(\"At inlet to first turbine stage,h2=3230.9 KJ/kg,s2=6.9212 KJ/kg K\")\n", "h2=3230.9;\n", "s2=6.9212;\n", "print(\"For ideal expansion process,s2=s3\")\n", "s3=s2;\n", "print(\"By interpolation,T3=190.97 degree celcius from superheated steam tables at 6 bar,h3=2829.63 KJ/kg\")\n", "T3=190.97;\n", "h3=2829.63;\n", "h3_a=h2-0.8*(h2-h3)\n", "print(\"actual stste at exit of first stage,h3_a in KJ/kg=\"),round(h3_a,2)\n", "s3_a=7.1075;\n", "print(\"actual state 3_a shall be at 232.78 degree celcius,6 bar,so s3_a KJ/kg K=\"),round(s3_a,4)\n", "print(\"for second stage,s3_a=s4;By interpolation,s4=7.1075=sf at 1 bar+x4*sfg at 1 bar\")\n", "s4=7.1075;\n", "print(\"from steam tables,at 1 bar,sf=1.3026 KJ/kg K,sfg=6.0568 KJ/kg K\")\n", "sf=1.3026;\n", "sfg=6.0568;\n", "x4=(s4-sf)/sfg\n", "print(\"so x4=\"),round(x4,2)\n", "x4=0.958;#approx.\n", "print(\"h4=hf at 1 bar+x4*hfg at 1 bar in KJ/kg\")\n", "print(\"from steam tables,at 1 bar,hf=417.46 KJ/kg,hfg=2258.0 KJ/kg\")\n", "hf=417.46;\n", "hfg=2258.0;\n", "h4=hf+x4*hfg\n", "h4_a=h3_a-.8*(h3_a-h4)\n", "print(\"actual enthalpy at exit from second stage,h4_a in KJ/kg=\"),round(h4_a,2)\n", "print(\"actual dryness fraction,x4_a=>h4_a=hf at 1 bar+x4_a*hfg at 1 bar\")\n", "x4_a=(h4_a-hf)/hfg\n", "print(\"so x4_a=\"),round(x4_a,2)\n", "print(\"x4_a=0.987,actual entropy,s4_a=7.2806 KJ/kg K\")\n", "s4_a=7.2806;\n", "print(\"for third stage,s4_a=7.2806=sf at 0.075 bar+x5*sfg at 0.075 bar\")\n", "print(\"from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\")\n", "sf=0.5764;\n", "sfg=7.6750;\n", "x5=(s4_a-sf)/sfg\n", "print(\"so x5=\"),round(x5,2)\n", "x5=0.8735;#approx.\n", "print(\"h5=2270.43 KJ/kg\")\n", "h5=2270.43;\n", "h5_a=h4_a-0.8*(h4_a-h5)\n", "print(\"actual enthalpy at exit from third stage,h5_a in KJ/kg=\"),round(h5_a,2)\n", "print(\"Let mass of steam bled out be m1 and m2 kg at 6 bar,1 bar respectively.\")\n", "print(\"By heat balance on first closed feed water heater,(see schematic arrangement)\")\n", "print(\"h11=hf at 6 bar=670.56 KJ\")\n", "h11=670.56;\n", "print(\"m1*h3_a+h10=m1*h11+4.18*150\")\n", "print(\"(m1*2829.63)+h10=(m1*670.56)+627\")\n", "print(\"h10+2159.07*m1=627\")\n", "print(\"By heat balance on second closed feed water heater,(see schematic arrangement)\")\n", "print(\"h7=hf at 1 bar=417.46 KJ/kg\")\n", "h7=417.46;\n", "print(\"m2*h4+(1-m1-m2)*4.18*38=(m1+m2)*h7+4.18*95*(1-m1-m2)\")\n", "print(\"m2*2646.4+(1-m1-m2)*158.84=((m1+m2)*417.46)+(397.1*(1-m1-m2))\")\n", "print(\"m2*2467.27-m1*179.2-238.26=0\")\n", "print(\"heat balance at point of mixing,\")\n", "print(\"h10=(m1+m2)*h8+(1-m1-m2)*4.18*95\")\n", "print(\"neglecting pump work,h7=h8\")\n", "print(\"h10=m2*417.46+(1-m1-m2)*397.1\")\n", "print(\"substituting h10 and solving we get,m1=0.1293 kg and m2=0.1059 kg/kg of steam generated\")\n", "m1=0.1293;\n", "m2=0.1059;\n", "Wt=(h2-h3_a)+(1-m1)*(h3_a-h4_a)+(1-m1-m2)*(h4_a-h5_a)\n", "print(\"Turbine output per kg of steam generated,Wt in KJ/kg of steam generated=\"),round(Wt,3)\n", "P/Wt\n", "print(\"Rate of steam generation required in kg/s=\"),round(P/Wt,2)\n", "print(\"in kg/hr\")\n", "P*3600/Wt\n", "(m1+m2)*69192\n", "print(\"capacity of drain pump i.e. FP shown in layout in kg/hr=\"),round((m1+m2)*69192,2)\n", "print(\"so capacity of drain pump=16273.96 kg/hr\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.10;pg no: 277" ] }, { "cell_type": "code", "execution_count": 97, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.10, Page:277 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 10\n", "at inlet to HP turbine,h2=3287.1 KJ/kg,s2=6.6327 KJ/kg K\n", "By interpolation state 3 i.e. for isentropic expansion betweeen 2-3 lies at 328.98oc at 30 bar.h3=3049.48 KJ/kg\n", "actual enthapy at 3_a,h3_a in KJ/kg= 3097.0\n", "enthalpy at inlet to LP turbine,h4=3230.9 KJ/kg,s4=6.9212 KJ K\n", "for ideal expansion from 4-6,s4=s6.Let dryness fraction at state 6 be x6.\n", "s6=6.9212=sf at 0.075 bar+x6* sfg at 0.075 bar in KJ/kg K\n", "from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\n", "so x6= 0.83\n", "h6=hf at 0.075 bar+x6*hfg at 0.075 bar in KJ/kg K\n", "from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\n", "for actual expansion process in LP turbine.\n", "h6_a=h4-0.85*(h4-h6) in KJ/kg 2319.4\n", "Ideally,enthalpy at bleed point can be obtained by locating state 5 using s5=s4.The pressure at bleed point shall be saturation pressure corresponding to the 140oc i.e from steam tables.Let dryness fraction at state 5 be x5.\n", "s5_a=6.9212=sf at 140oc+x5*sfg at 140oc\n", "from steam tables,at 140oc,sf=1.7391 KJ/kg K,sfg=5.1908 KJ/kg K\n", "so x5= 1.0\n", "h5=hf at 140oc+x5*hfg at 140oc in KJ/kg\n", "from steam tables,at 140oc,hf=589.13 KJ/kg,hfg=2144.7 KJ/kg\n", "actual enthalpy,h5_a in KJ/kg= 2790.16\n", "enthalpy at exit of open feed water heater,h9=hf at 30 bar=1008.42 KJ/kg\n", "specific volume at inlet of CEP,v7=0.001008 m^3/kg\n", "enthalpy at inlet of CEP,h7=168.79 KJ/kg\n", "for pumping process 7-8,h8 in KJ/kg= 169.15\n", "Applying energy balance at open feed water heater.Let mass of bled steam be m kg per kg of steam generated.\n", "m*h5+(1-m)*h8=h9\n", "so m in kg /kg of steam generated= 0.33\n", "For process on feed pump,9-1,v9=vf at 140oc=0.00108 m^3/kg\n", "h1= in KJ/kg= 1015.59\n", "Net work per kg of steam generated,W_net=in KJ/kg steam generated= 938.83\n", "heat added per kg of steam generated,q_add in KJ/kg of steam generated= 2405.41\n", "Thermal efficiency,n= 0.39\n", "in percentage= 39.03\n", "so thermal efficiency=39.03%%\n", "NOTE=>In this question there is some calculation mistake while calculating W_net and q_add in book, which is corrected above and the answers may vary.\n" ] } ], "source": [ "#cal of cycle efficiency\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.10, Page:277 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 10\")\n", "print(\"at inlet to HP turbine,h2=3287.1 KJ/kg,s2=6.6327 KJ/kg K\")\n", "h2=3287.1;\n", "s2=6.6327;\n", "print(\"By interpolation state 3 i.e. for isentropic expansion betweeen 2-3 lies at 328.98oc at 30 bar.h3=3049.48 KJ/kg\")\n", "h3=3049.48;\n", "h3_a=h2-0.80*(h2-h3)\n", "print(\"actual enthapy at 3_a,h3_a in KJ/kg=\"),round(h3_a,2)\n", "print(\"enthalpy at inlet to LP turbine,h4=3230.9 KJ/kg,s4=6.9212 KJ K\")\n", "h4=3230.9;\n", "s4=6.9212;\n", "print(\"for ideal expansion from 4-6,s4=s6.Let dryness fraction at state 6 be x6.\")\n", "s6=s4;\n", "print(\"s6=6.9212=sf at 0.075 bar+x6* sfg at 0.075 bar in KJ/kg K\")\n", "print(\"from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\")\n", "sf=0.5764;\n", "sfg=7.6750;\n", "x6=(s6-sf)/sfg\n", "print(\"so x6=\"),round(x6,2)\n", "x6=0.827;#approx.\n", "print(\"h6=hf at 0.075 bar+x6*hfg at 0.075 bar in KJ/kg K\")\n", "print(\"from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\")\n", "hf=168.79;\n", "hfg=2406.0;\n", "h6=hf+x6*hfg\n", "print(\"for actual expansion process in LP turbine.\")\n", "h6_a=h4-0.85*(h4-h6)\n", "print(\"h6_a=h4-0.85*(h4-h6) in KJ/kg\"),round(h6_a,2)\n", "print(\"Ideally,enthalpy at bleed point can be obtained by locating state 5 using s5=s4.The pressure at bleed point shall be saturation pressure corresponding to the 140oc i.e from steam tables.Let dryness fraction at state 5 be x5.\")\n", "p5=3.61;\n", "s5=s4;\n", "print(\"s5_a=6.9212=sf at 140oc+x5*sfg at 140oc\")\n", "print(\"from steam tables,at 140oc,sf=1.7391 KJ/kg K,sfg=5.1908 KJ/kg K\")\n", "sf=1.7391;\n", "sfg=5.1908;\n", "x5=(s5-sf)/sfg\n", "print(\"so x5=\"),round(x5,2)\n", "x5=0.99;#approx.\n", "print(\"h5=hf at 140oc+x5*hfg at 140oc in KJ/kg\")\n", "print(\"from steam tables,at 140oc,hf=589.13 KJ/kg,hfg=2144.7 KJ/kg\")\n", "hf=589.13;\n", "hfg=2144.7;\n", "h5=hf+x5*hfg\n", "h5_a=h4-0.85*(h4-h5)\n", "print(\"actual enthalpy,h5_a in KJ/kg=\"),round(h5_a,2)\n", "print(\"enthalpy at exit of open feed water heater,h9=hf at 30 bar=1008.42 KJ/kg\")\n", "h9=1008.42;\n", "print(\"specific volume at inlet of CEP,v7=0.001008 m^3/kg\")\n", "v7=0.001008;\n", "print(\"enthalpy at inlet of CEP,h7=168.79 KJ/kg\")\n", "h7=168.79;\n", "h8=h7+v7*(3.61-0.075)*10**2\n", "print(\"for pumping process 7-8,h8 in KJ/kg=\"),round(h8,2)\n", "print(\"Applying energy balance at open feed water heater.Let mass of bled steam be m kg per kg of steam generated.\")\n", "print(\"m*h5+(1-m)*h8=h9\")\n", "m=(h9-h8)/(h5-h8)\n", "print(\"so m in kg /kg of steam generated=\"),round(m,2)\n", "print(\"For process on feed pump,9-1,v9=vf at 140oc=0.00108 m^3/kg\")\n", "v9=0.00108;\n", "h1=h9+v9*(70-3.61)*10**2\n", "print(\"h1= in KJ/kg=\"),round(h1,2) \n", "W_net=(h2-h3_a)+(h4-h5_a)+(1-m)*(h5_a-h6_a)-((1-m)*(h8-h7)+(h1-h9))\n", "print(\"Net work per kg of steam generated,W_net=in KJ/kg steam generated=\"),round(W_net,2)\n", "q_add=(h2-h1)+(h4-h3_a)\n", "print(\"heat added per kg of steam generated,q_add in KJ/kg of steam generated=\"),round(q_add,2)\n", "n=W_net/q_add\n", "print(\"Thermal efficiency,n=\"),round(n,2)\n", "n=n*100\n", "print(\"in percentage=\"),round(n,2)\n", "print(\"so thermal efficiency=39.03%%\")\n", "print(\"NOTE=>In this question there is some calculation mistake while calculating W_net and q_add in book, which is corrected above and the answers may vary.\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.11;pg no: 279" ] }, { "cell_type": "code", "execution_count": 98, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.11, Page:279 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 11\n", "Enthalpy of steam entering ST1,h2=3308.6 KJ/kg,s2=6.3443 KJ/kg K\n", "for isentropic expansion 2-3-4-5,s2=s3=s4=s5\n", "Let dryness fraction of states 3,4 and 5 be x3,x4 and x5\n", "s3=6.3443=sf at 10 bar+x3*sfg at 10 bar\n", "so x3=(s3-sf)/sfg\n", "from steam tables,at 10 bar,sf=2.1387 KJ/kg K,sfg=4.4478 KJ/kg K\n", "h3=hf+x3*hfg in KJ/kg\n", "from steam tables,hf=762.81 KJ/kg,hfg=2015.3 KJ/kg\n", "s4=6.3443=sf at 1.5 bar+x4*sfg at 1.5 bar\n", "so x4=(s4-sf)/sfg\n", "from steam tables,at 1.5 bar,sf=1.4336 KJ/kg K,sfg=5.7897 KJ/kg K\n", "so h4=hf+x4*hfg in KJ/kg\n", "from steam tables,at 1.5 bar,hf=467.11 KJ/kg,hfg=2226.5 KJ/kg\n", "s5=6.3443=sf at 0.05 bar+x5*sfg at 0.05 bar\n", "so x5=(s5-sf)/sfg\n", "from steam tables,at 0.05 bar,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\n", "h5=hf+x5*hfg in KJ/kg\n", "from steam tables,at 0.05 bar,hf=137.82 KJ/kg,hfg=2423.7 KJ/kg\n", "h6=hf at 0.05 bar=137.82 KJ/kg\n", "v6=vf at 0.05 bar=0.001005 m^3/kg\n", "h7=h6+v6*(1.5-0.05)*10^2 in KJ/kg\n", "h8=hf at 1.5 bar=467.11 KJ/kg\n", "v8=0.001053 m^3/kg=vf at 1.5 bar\n", "h9=h8+v8*(150-1.5)*10^2 in KJ/kg\n", "h10=hf at 150 bar=1610.5 KJ/kg\n", "v10=0.001658 m^3/kg=vf at 150 bar\n", "h12=h10+v10*(150-10)*10^2 in KJ/kg\n", "Let mass of steam bled out at 10 bar,1.5 bar be m1 and m2 per kg of steam generated.\n", "Heat balance on closed feed water heater yields,\n", "m1*h3+(1-m)*h9=m1*h10+(1-m1)*4.18*150\n", "so m1=(4.18*150-h9)/(h3-h9-h10+4.18*150)in kg/kg of steam generated.\n", "heat balance on open feed water can be given as under,\n", "m2*h4+(1-m1-m2)*h7=(1-m1)*h8\n", "so m2=((1-m1)*(h8-h7))/(h4-h7)in kg/kg of steam\n", "for mass flow rate of 300 kg/s=>m1=36 kg/s,m2=39 kg/s\n", "For mixing after closed feed water heater,\n", "h1=(4.18*150)*(1-m1)+m1*h12 in KJ/kg\n", "Net work output per kg of steam generated=W_ST1+W_ST2+W_ST3-{W_CEP+W_FP+W_FP2}\n", "W_net=(h2-h3)+(1-m1)*(h3-h4)+(1-m1-m2)*(h4-h5)-{(1-m1-m2)*(h7-h6)+(1-m1)*(h9-h8)+(m1*(h12-h10))}in KJ/kg of steam generated.\n", "heat added per kg of steam generated,q_add=(h2-h1) in KJ/kg\n", "cycle thermal efficiency,n=W_net/q_add 0.48\n", "in percentage 47.59\n", "Net power developed in KW=1219*300 in KW 365700.0\n", "cycle thermal efficiency=47.6%\n", "Net power developed=365700 KW\n" ] } ], "source": [ "#cal of cycle thermal efficiency,Net power developed\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.11, Page:279 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 11\")\n", "print(\"Enthalpy of steam entering ST1,h2=3308.6 KJ/kg,s2=6.3443 KJ/kg K\")\n", "h2=3308.6;\n", "s2=6.3443;\n", "print(\"for isentropic expansion 2-3-4-5,s2=s3=s4=s5\")\n", "s3=s2;\n", "s4=s3;\n", "s5=s4;\n", "print(\"Let dryness fraction of states 3,4 and 5 be x3,x4 and x5\")\n", "print(\"s3=6.3443=sf at 10 bar+x3*sfg at 10 bar\")\n", "print(\"so x3=(s3-sf)/sfg\")\n", "print(\"from steam tables,at 10 bar,sf=2.1387 KJ/kg K,sfg=4.4478 KJ/kg K\")\n", "sf=2.1387;\n", "sfg=4.4478;\n", "x3=(s3-sf)/sfg\n", "x3=0.945;#approx.\n", "print(\"h3=hf+x3*hfg in KJ/kg\")\n", "print(\"from steam tables,hf=762.81 KJ/kg,hfg=2015.3 KJ/kg\")\n", "hf=762.81;\n", "hfg=2015.3;\n", "h3=hf+x3*hfg\n", "print(\"s4=6.3443=sf at 1.5 bar+x4*sfg at 1.5 bar\")\n", "print(\"so x4=(s4-sf)/sfg\")\n", "print(\"from steam tables,at 1.5 bar,sf=1.4336 KJ/kg K,sfg=5.7897 KJ/kg K\")\n", "sf=1.4336;\n", "sfg=5.7897;\n", "x4=(s4-sf)/sfg\n", "x4=0.848;#approx.\n", "print(\"so h4=hf+x4*hfg in KJ/kg\")\n", "print(\"from steam tables,at 1.5 bar,hf=467.11 KJ/kg,hfg=2226.5 KJ/kg\")\n", "hf=467.11;\n", "hfg=2226.5;\n", "h4=hf+x4*hfg\n", "print(\"s5=6.3443=sf at 0.05 bar+x5*sfg at 0.05 bar\")\n", "print(\"so x5=(s5-sf)/sfg\")\n", "print(\"from steam tables,at 0.05 bar,sf=0.4764 KJ/kg K,sfg=7.9187 KJ/kg K\")\n", "sf=0.4764;\n", "sfg=7.9187;\n", "x5=(s5-sf)/sfg\n", "x5=0.739;#approx.\n", "print(\"h5=hf+x5*hfg in KJ/kg\")\n", "print(\"from steam tables,at 0.05 bar,hf=137.82 KJ/kg,hfg=2423.7 KJ/kg\")\n", "hf=137.82;\n", "hfg=2423.7;\n", "h5=hf+x5*hfg \n", "print(\"h6=hf at 0.05 bar=137.82 KJ/kg\")\n", "h6=137.82;\n", "print(\"v6=vf at 0.05 bar=0.001005 m^3/kg\")\n", "v6=0.001005;\n", "print(\"h7=h6+v6*(1.5-0.05)*10^2 in KJ/kg\")\n", "h7=h6+v6*(1.5-0.05)*10**2\n", "print(\"h8=hf at 1.5 bar=467.11 KJ/kg\")\n", "h8=467.11; \n", "print(\"v8=0.001053 m^3/kg=vf at 1.5 bar\")\n", "v8=0.001053;\n", "print(\"h9=h8+v8*(150-1.5)*10^2 in KJ/kg\")\n", "h9=h8+v8*(150-1.5)*10**2\n", "print(\"h10=hf at 150 bar=1610.5 KJ/kg\")\n", "h10=1610.5; \n", "print(\"v10=0.001658 m^3/kg=vf at 150 bar\")\n", "v10=0.001658;\n", "print(\"h12=h10+v10*(150-10)*10^2 in KJ/kg\")\n", "h12=h10+v10*(150-10)*10**2\n", "print(\"Let mass of steam bled out at 10 bar,1.5 bar be m1 and m2 per kg of steam generated.\")\n", "print(\"Heat balance on closed feed water heater yields,\")\n", "print(\"m1*h3+(1-m)*h9=m1*h10+(1-m1)*4.18*150\")\n", "print(\"so m1=(4.18*150-h9)/(h3-h9-h10+4.18*150)in kg/kg of steam generated.\")\n", "m1=(4.18*150-h9)/(h3-h9-h10+4.18*150)\n", "print(\"heat balance on open feed water can be given as under,\")\n", "print(\"m2*h4+(1-m1-m2)*h7=(1-m1)*h8\")\n", "print(\"so m2=((1-m1)*(h8-h7))/(h4-h7)in kg/kg of steam\")\n", "m2=((1-m1)*(h8-h7))/(h4-h7)\n", "print(\"for mass flow rate of 300 kg/s=>m1=36 kg/s,m2=39 kg/s\")\n", "print(\"For mixing after closed feed water heater,\")\n", "print(\"h1=(4.18*150)*(1-m1)+m1*h12 in KJ/kg\")\n", "h1=(4.18*150)*(1-m1)+m1*h12\n", "print(\"Net work output per kg of steam generated=W_ST1+W_ST2+W_ST3-{W_CEP+W_FP+W_FP2}\")\n", "print(\"W_net=(h2-h3)+(1-m1)*(h3-h4)+(1-m1-m2)*(h4-h5)-{(1-m1-m2)*(h7-h6)+(1-m1)*(h9-h8)+(m1*(h12-h10))}in KJ/kg of steam generated.\")\n", "W_net=(h2-h3)+(1-m1)*(h3-h4)+(1-m1-m2)*(h4-h5)-((1-m1-m2)*(h7-h6)+(1-m1)*(h9-h8)+(m1*(h12-h10)))\n", "print(\"heat added per kg of steam generated,q_add=(h2-h1) in KJ/kg\")\n", "q_add=(h2-h1)\n", "n=W_net/q_add\n", "print(\"cycle thermal efficiency,n=W_net/q_add\"),round(n,2)\n", "print(\"in percentage\"),round(n*100,2)\n", "print(\"Net power developed in KW=1219*300 in KW\"),round(1219*300,2)\n", "print(\"cycle thermal efficiency=47.6%\")\n", "print(\"Net power developed=365700 KW\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.12;pg no: 282" ] }, { "cell_type": "code", "execution_count": 99, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.12, Page:282 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 12\n", "At inlet to HPT,h2=3373.7 KJ/kg,s2=6.5966 KJ/kg K\n", "For isentropic expansion between 2-3-4-5,s2=s3=s4=s5\n", "state 3 lies in superheated region as s3>sg at 20 bar.By interpolation from superheated steam table,T3=261.6oc.Enthalpy at 3,h3=2930.57 KJ/kg\n", "since s4 For the reheating introduced at 20 bar up to 400oc.The modified cycle representation is shown on T-S diagram by 1-2-3-3_a-4_a-5_a-6-7-8-9-10-11\n", "At state 2,h2=3373.7 KJ/kg,s2=6.5966 KJ/kg K\n", "At state 3,h3=2930.57 KJ/kg\n", "At state 3_a,h3_a=3247.6 KJ/kg,s3_a=7.1271 KJ/kg K\n", "At state 4_a and 5_a,s3_a=s4_a=s5_a=7.1271 KJ/kg K\n", "From steam tables by interpolation state 4_a is seen to be at 190.96oc at 4 bar,h4_a=2841.02 KJ/kg\n", "Let dryness fraction at state 5_a be x5,\n", "s5_a=7.1271=sf at 0.075 bar+x5_a*sfg at 0.075 bar\n", "from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\n", "so x5_a=(s5_a-sf)/sfg\n", "h5_a=hf at 0.075 bar+x5_a*hfg at 0.075 bar in KJ/kg\n", "from steam tables,at 0.075 bar,hf=168.76 KJ/kg,hfg=2406.0 KJ/kg\n", "Let mass of bled steam at 20 bar and 4 bar be m1_a,m2_a per kg of steam generated.Applying heat balance at closed feed water heater.\n", "m1_a*h3+h9=m1*h10+4.18*200\n", "so m1_a=(4.18*200-h9)/(h3-h10) in kg\n", "Applying heat balance at open feed water heater,\n", "m1_a*h11+m2_a*h4_a+(1-m1_a-m2_a)*h7=h8\n", "so m2_a=(h8-m1_a*h11-h7+m1_a*h7)/(h4_a-h7) in kg\n", "Net work per kg steam generated\n", "w_net=(h2-h3)+(1-m1_a)*(h3_a-h4_a)+(1-m1_a-m2_a)*(h4_a-h5_a)-{(1-m1_a-m2_a)*(h7-h6)+(h9-h8)}in KJ/kg\n", "Heat added per kg steam generated,q_add=(h2-h1)+(1-m1_a)*(h3_a-h3)in KJ/kg\n", "Thermal efficiency,n= 0.45\n", "in percentage 45.04\n", "% increase in thermal efficiency due to reheating= 0.56\n", "so thermal efficiency of reheat cycle=45.03%\n", "% increase in efficiency due to reheating=0.56%\n" ] } ], "source": [ "#cal of thermal efficiency,steam generation rate\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.12, Page:282 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 12\")\n", "P=100*10**3;#net power output in KW\n", "print(\"At inlet to HPT,h2=3373.7 KJ/kg,s2=6.5966 KJ/kg K\")\n", "h2=3373.7;\n", "s2=6.5966;\n", "print(\"For isentropic expansion between 2-3-4-5,s2=s3=s4=s5\")\n", "s3=s2;\n", "s4=s3;\n", "s5=s4;\n", "print(\"state 3 lies in superheated region as s3>sg at 20 bar.By interpolation from superheated steam table,T3=261.6oc.Enthalpy at 3,h3=2930.57 KJ/kg\")\n", "T3=261.6;\n", "h3=2930.57;\n", "print(\"since s4 For the reheating introduced at 20 bar up to 400oc.The modified cycle representation is shown on T-S diagram by 1-2-3-3_a-4_a-5_a-6-7-8-9-10-11\")\n", "print(\"At state 2,h2=3373.7 KJ/kg,s2=6.5966 KJ/kg K\")\n", "h2=3373.7;\n", "s2=6.5966;\n", "print(\"At state 3,h3=2930.57 KJ/kg\")\n", "h3=2930.57;\n", "print(\"At state 3_a,h3_a=3247.6 KJ/kg,s3_a=7.1271 KJ/kg K\")\n", "h3_a=3247.6;\n", "s3_a=7.1271;\n", "print(\"At state 4_a and 5_a,s3_a=s4_a=s5_a=7.1271 KJ/kg K\")\n", "s4_a=s3_a;\n", "s5_a=s4_a;\n", "print(\"From steam tables by interpolation state 4_a is seen to be at 190.96oc at 4 bar,h4_a=2841.02 KJ/kg\")\n", "h4_a=2841.02;\n", "print(\"Let dryness fraction at state 5_a be x5,\")\n", "print(\"s5_a=7.1271=sf at 0.075 bar+x5_a*sfg at 0.075 bar\")\n", "print(\"from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\")\n", "print(\"so x5_a=(s5_a-sf)/sfg\")\n", "x5_a=(s5_a-sf)/sfg\n", "x5_a=0.853;#approx.\n", "print(\"h5_a=hf at 0.075 bar+x5_a*hfg at 0.075 bar in KJ/kg\")\n", "print(\"from steam tables,at 0.075 bar,hf=168.76 KJ/kg,hfg=2406.0 KJ/kg\")\n", "h5_a=hf+x5_a*hfg\n", "print(\"Let mass of bled steam at 20 bar and 4 bar be m1_a,m2_a per kg of steam generated.Applying heat balance at closed feed water heater.\")\n", "print(\"m1_a*h3+h9=m1*h10+4.18*200\")\n", "print(\"so m1_a=(4.18*200-h9)/(h3-h10) in kg\")\n", "m1_a=(4.18*200-h9)/(h3-h10)\n", "m1_a=0.114;#approx.\n", "print(\"Applying heat balance at open feed water heater,\")\n", "print(\"m1_a*h11+m2_a*h4_a+(1-m1_a-m2_a)*h7=h8\")\n", "print(\"so m2_a=(h8-m1_a*h11-h7+m1_a*h7)/(h4_a-h7) in kg\")\n", "m2_a=(h8-m1_a*h11-h7+m1_a*h7)/(h4_a-h7)\n", "m2_a=0.131;#approx.\n", "print(\"Net work per kg steam generated\")\n", "print(\"w_net=(h2-h3)+(1-m1_a)*(h3_a-h4_a)+(1-m1_a-m2_a)*(h4_a-h5_a)-{(1-m1_a-m2_a)*(h7-h6)+(h9-h8)}in KJ/kg\")\n", "w_net=(h2-h3)+(1-m1_a)*(h3_a-h4_a)+(1-m1_a-m2_a)*(h4_a-h5_a)-((1-m1_a-m2_a)*(h7-h6)+(h9-h8))\n", "print(\"Heat added per kg steam generated,q_add=(h2-h1)+(1-m1_a)*(h3_a-h3)in KJ/kg\")\n", "q_add=(h2-h1)+(1-m1_a)*(h3_a-h3)\n", "n=w_net/q_add\n", "print(\"Thermal efficiency,n=\"),round(n,2)\n", "print(\"in percentage\"),round(n*100,2)\n", "print(\"% increase in thermal efficiency due to reheating=\"),round((0.4503-0.4478)*100/0.4478,2)\n", "print(\"so thermal efficiency of reheat cycle=45.03%\")\n", "print(\"% increase in efficiency due to reheating=0.56%\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.13;pg no: 286" ] }, { "cell_type": "code", "execution_count": 100, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.13, Page:286 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 13\n", "For mercury cycle,\n", "insentropic heat drop=349-234.5 in KJ/kg Hg\n", "actual heat drop=0.85*114.5 in KJ/kg Hg\n", "Heat rejected in condenser=(349-97.325-35)in KJ/kg\n", "heat added in boiler=349-35 in KJ/kg\n", "For steam cycle,\n", "Enthalpy of steam generated=h at 40 bar,0.98 dry=2767.13 KJ/kg\n", "Enthalpy of inlet to steam turbine,h2=h at 40 bar,450oc=3330.3 KJ/kg\n", "Entropy of steam at inlet to steam turbine,s2=6.9363 KJ/kg K\n", "Therefore,heat added in condenser of mercury cycle=h at 40 bar,0.98 dry-h_feed at 40 bar in KJ/kg\n", "Therefore,mercury required per kg of steam=2140.13/heat rejected in condenser in kg per kg of steam\n", "for isentropic expansion,s2=s3=s4=s5=6.9363 KJ/kg K\n", "state 3 lies in superheated region,by interpolation the state can be given by,temperature 227.07oc at 8 bar,h3=2899.23 KJ/kg\n", "state 4 lies in wet region,say with dryness fraction x4\n", "s4=6.9363=sf at 1 bar+x4*sfg at 1 bar\n", "so x4=(s4-sf)/sfg\n", "from steam tables,at 1 bar,sf=1.3026 KJ/kg K,sfg=6.0568 KJ/kg K\n", "h4=hf at 1 bar+x4*hfg at 1 bar in KJ/kg\n", "from steam tables,at 1 bar,hf=417.46 KJ/kg,hfg=2258.0 KJ/kg\n", "Let state 5 lie in wet region with dryness fraction x5,\n", "s5=6.9363=sf at 0.075 bar+x5*sfg at 0.075 bar\n", "so x5=(s5-sf)/sfg\n", "from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\n", "h5=hf+x5*hfg in KJ/kg\n", "from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\n", "Let mass of steam bled at 8 bar and 1 bar be m1 and m2 per kg of steam generated.\n", "h7=h6+v6*(1-0.075)*10^2 in KJ/kg\n", "from steam tables,at 0.075 bar,h6=hf=168.79 KJ/kg,v6=vf=0.001008 m^3/kg\n", "h9=hf at 1 bar=417.46 KJ/kg,h13=hf at 8 bar=721.11 KJ/kg\n", "Applying heat balance on CFWH1,T1=150oc and also T15=150oc\n", "m1*h3+(1-m1)*h12=m1*h13+(4.18*150)*(1-m1)\n", "(m1-2899.23)+(1-m1)*h12=(m1*721.11)+627*(1-m1)\n", "Applying heat balance on CFEH2,T11=90oc\n", "m2*h4+(1-m1-m2)*h7=m2*h9+(1-m1-m2)*4.18*90\n", "(m2*2517.4)+(1-m1-m2)*168.88=(m2*417.46)+376.2*(1-m1-m2)\n", "Heat balance at mixing between CFWH1 and CFWH2,\n", "(1-m1-m2)*4.18*90+m2*h10=(1-m1)*h12\n", "376.2*(1-m1-m2)+m2*h10=(1-m1)*h12\n", "For pumping process,9-10,h10=h9+v9*(8-1)*10^2 in KJ/kg\n", "from steam tables,h9=hf at 1 bar=417.46 KJ/kg,v9=vf at 1 bar=0.001043 m^3/kg\n", "solving above equations,we get\n", "m1=0.102 kg per kg steam generated\n", "m2=0.073 kg per kg steam generated\n", "pump work in process 13-14,h14-h13=v13*(40-8)*10^2\n", "so h14-h13 in KJ/kg\n", "Total heat supplied(q_add)=(9.88*314)+(3330.3-2767.13) in KJ/kg of steam\n", "net work per kg of steam,w_net=w_mercury+w_steam\n", "w_net=(9.88*97.325)+{(h2-h3)+(1-m1)*(h3-h4)+(1-m1-m2)*(h4-h5)-(1-m1-m2)*(h4-h6)-m2*(h10-h9)-m1*(h14-h13)} in KJ/kg\n", "thermal efficiency of binary vapour cycle=w_net/q_add 0.55\n", "in percentage 55.36\n", "so thermal efficiency=55.36%\n", "NOTE=>In this question there is some mistake in formula used for w_net which is corrected above.\n" ] } ], "source": [ "#cal of thermal efficiency\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.13, Page:286 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 13\")\n", "print(\"For mercury cycle,\")\n", "print(\"insentropic heat drop=349-234.5 in KJ/kg Hg\")\n", "349-234.5\n", "print(\"actual heat drop=0.85*114.5 in KJ/kg Hg\")\n", "0.85*114.5\n", "print(\"Heat rejected in condenser=(349-97.325-35)in KJ/kg\")\n", "(349-97.325-35)\n", "print(\"heat added in boiler=349-35 in KJ/kg\")\n", "349-35\n", "print(\"For steam cycle,\")\n", "print(\"Enthalpy of steam generated=h at 40 bar,0.98 dry=2767.13 KJ/kg\")\n", "h=2767.13;\n", "print(\"Enthalpy of inlet to steam turbine,h2=h at 40 bar,450oc=3330.3 KJ/kg\")\n", "h2=3330.3;\n", "print(\"Entropy of steam at inlet to steam turbine,s2=6.9363 KJ/kg K\")\n", "s2=6.9363;\n", "print(\"Therefore,heat added in condenser of mercury cycle=h at 40 bar,0.98 dry-h_feed at 40 bar in KJ/kg\")\n", "h-4.18*150\n", "print(\"Therefore,mercury required per kg of steam=2140.13/heat rejected in condenser in kg per kg of steam\")\n", "2140.13/216.675\n", "print(\"for isentropic expansion,s2=s3=s4=s5=6.9363 KJ/kg K\")\n", "s3=s2;\n", "s4=s3;\n", "s5=s4;\n", "print(\"state 3 lies in superheated region,by interpolation the state can be given by,temperature 227.07oc at 8 bar,h3=2899.23 KJ/kg\")\n", "h3=2899.23;\n", "print(\"state 4 lies in wet region,say with dryness fraction x4\")\n", "print(\"s4=6.9363=sf at 1 bar+x4*sfg at 1 bar\")\n", "print(\"so x4=(s4-sf)/sfg\")\n", "print(\"from steam tables,at 1 bar,sf=1.3026 KJ/kg K,sfg=6.0568 KJ/kg K\")\n", "sf=1.3026;\n", "sfg=6.0568;\n", "x4=(s4-sf)/sfg\n", "x4=0.93;#approx.\n", "print(\"h4=hf at 1 bar+x4*hfg at 1 bar in KJ/kg\")\n", "print(\"from steam tables,at 1 bar,hf=417.46 KJ/kg,hfg=2258.0 KJ/kg\")\n", "hf=417.46;\n", "hfg=2258.0;\n", "h4=hf+x4*hfg\n", "print(\"Let state 5 lie in wet region with dryness fraction x5,\")\n", "print(\"s5=6.9363=sf at 0.075 bar+x5*sfg at 0.075 bar\")\n", "print(\"so x5=(s5-sf)/sfg\")\n", "print(\"from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\")\n", "sf=0.5764;\n", "sfg=7.6750;\n", "x5=(s5-sf)/sfg\n", "x5=0.828;#approx.\n", "print(\"h5=hf+x5*hfg in KJ/kg\")\n", "print(\"from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\")\n", "hf=168.79;\n", "hfg=2406.0;\n", "h5=hf+x5*hfg\n", "print(\"Let mass of steam bled at 8 bar and 1 bar be m1 and m2 per kg of steam generated.\")\n", "print(\"h7=h6+v6*(1-0.075)*10^2 in KJ/kg\")\n", "print(\"from steam tables,at 0.075 bar,h6=hf=168.79 KJ/kg,v6=vf=0.001008 m^3/kg\")\n", "h6=168.79;\n", "v6=0.001008;\n", "h7=h6+v6*(1-0.075)*10**2\n", "print(\"h9=hf at 1 bar=417.46 KJ/kg,h13=hf at 8 bar=721.11 KJ/kg\")\n", "h9=417.46;\n", "h13=721.11;\n", "print(\"Applying heat balance on CFWH1,T1=150oc and also T15=150oc\")\n", "T1=150;\n", "T15=150;\n", "print(\"m1*h3+(1-m1)*h12=m1*h13+(4.18*150)*(1-m1)\")\n", "print(\"(m1-2899.23)+(1-m1)*h12=(m1*721.11)+627*(1-m1)\")\n", "print(\"Applying heat balance on CFEH2,T11=90oc\")\n", "T11=90;\n", "print(\"m2*h4+(1-m1-m2)*h7=m2*h9+(1-m1-m2)*4.18*90\")\n", "print(\"(m2*2517.4)+(1-m1-m2)*168.88=(m2*417.46)+376.2*(1-m1-m2)\")\n", "print(\"Heat balance at mixing between CFWH1 and CFWH2,\")\n", "print(\"(1-m1-m2)*4.18*90+m2*h10=(1-m1)*h12\")\n", "print(\"376.2*(1-m1-m2)+m2*h10=(1-m1)*h12\")\n", "print(\"For pumping process,9-10,h10=h9+v9*(8-1)*10^2 in KJ/kg\")\n", "print(\"from steam tables,h9=hf at 1 bar=417.46 KJ/kg,v9=vf at 1 bar=0.001043 m^3/kg\")\n", "h9=417.46;\n", "v9=0.001043;\n", "h10=h9+v9*(8-1)*10**2 \n", "print(\"solving above equations,we get\")\n", "print(\"m1=0.102 kg per kg steam generated\")\n", "print(\"m2=0.073 kg per kg steam generated\")\n", "m1=0.102;\n", "m2=0.073;\n", "print(\"pump work in process 13-14,h14-h13=v13*(40-8)*10^2\")\n", "print(\"so h14-h13 in KJ/kg\")\n", "v13=0.001252;\n", "v13*(40-8)*10**2\n", "print(\"Total heat supplied(q_add)=(9.88*314)+(3330.3-2767.13) in KJ/kg of steam\")\n", "q_add=(9.88*314)+(3330.3-2767.13)\n", "print(\"net work per kg of steam,w_net=w_mercury+w_steam\")\n", "print(\"w_net=(9.88*97.325)+{(h2-h3)+(1-m1)*(h3-h4)+(1-m1-m2)*(h4-h5)-(1-m1-m2)*(h4-h6)-m2*(h10-h9)-m1*(h14-h13)} in KJ/kg\")\n", "w_net=(9.88*97.325)+((h2-h3)+(1-m1)*(h3-h4)+(1-m1-m2)*(h4-h5)-(1-m1-m2)*(h7-h6)-m2*(h10-h9)-m1*4.006)\n", "print(\"thermal efficiency of binary vapour cycle=w_net/q_add\"),round(w_net/q_add,2)\n", "print(\"in percentage\"),round(w_net*100/q_add,2)\n", "print(\"so thermal efficiency=55.36%\")\n", "print(\"NOTE=>In this question there is some mistake in formula used for w_net which is corrected above.\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.14;pg no: 288" ] }, { "cell_type": "code", "execution_count": 101, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.14, Page:288 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 14\n", "This is a mixed pressure turbine so the output of turbine shall be sum of the contributions by HP and LP steam streams.\n", "For HP:at inlet of HP steam=>h1=3023.5 KJ/kg,s1=6.7664 KJ/kg K\n", "ideally, s2=s1=6.7664 KJ/kg K\n", "s2=sf at 0.075 bar +x3* sfg at 0.075 bar\n", "from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\n", "so x3=(s2-sf)/sfg\n", "h_3HP=hf at 0.075 bar+x3*hfg at 0.075 bar in KJ/kg\n", "from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\n", "actual enthalpy drop in HP(h_HP)=(h1-h_3HP)*n in KJ/kg\n", "for LP:at inlet of LP steam\n", "h2=2706.7 KJ/kg,s2=7.1271 KJ/kg K\n", "Enthalpy at exit,h_3LP=2222.34 KJ/kg\n", "actual enthalpy drop in LP(h_LP)=(h2-h_3LP)*n in KJ/kg\n", "HP steam consumption at full load=P*0.7457/h_HP in kg/s\n", "HP steam consumption at no load=0.10*(P*0.7457/h_HP)in kg/s\n", "LP steam consumption at full load=P*0.7457/h_LP in kg/s\n", "LP steam consumption at no load=0.10*(P*0.7457/h_LP)in kg/s\n", "The problem can be solved geometrically by drawing willans line as per scale on graph paper and finding out the HP stream requirement for getting 1000 hp if LP stream is available at 1.5 kg/s.\n", "or,Analytically the equation for willans line can be obtained for above full load and no load conditions for HP and LP seperately.\n", "Willians line for HP:y=m*x+C,here y=steam consumption,kg/s\n", "x=load,hp\n", "y_HP=m_HP*x+C_HP\n", "0.254=m_HP*0+C_HP\n", "so C_HP=0.254\n", "2.54=m_HP*2500+C_HP\n", "so m_HP=(2.54-C_HP)/2500\n", "so y_HP=9.144*10^-4*x_HP+0.254\n", "Willans line for LP:y_LP=m_LP*x_LP+C_LP\n", "0.481=m_LP*0+C_LP\n", "so C_LP=0.481\n", "4.81=m_LP*2500+C_LP\n", "so m_LP=(4.81-C_LP)/2500\n", "so y_LP=1.732*10^-3*x_LP+0.481\n", "Total output(load) from mixed turbine,x=x_HP+x_LP\n", "For load of 1000 hp to be met by mixed turbine,let us find out the load shared by LP for steam flow rate of 1.5 kg/s\n", "from y_LP=1.732*10^-3*x_LP+0.481,\n", "x_LP=(y_LP-0.481)/1.732*10^-3\n", "since by 1.5 kg/s of LP steam only 588.34 hp output contribution is made so remaining(1000-588.34)=411.66 hp,411.66 hp should be contributed by HP steam.By willans line for HP turbine,\n", "from y_HP=9.144*10^-4*x_HP+C_HP in kg/s 0.63\n", "so HP steam requirement=0.63 kg/s\n" ] } ], "source": [ "#cal of HP steam required\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.14, Page:288 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 14\")\n", "n=0.8;#efficiency of both HP and LP turbine\n", "P=2500;#output in hp\n", "print(\"This is a mixed pressure turbine so the output of turbine shall be sum of the contributions by HP and LP steam streams.\")\n", "print(\"For HP:at inlet of HP steam=>h1=3023.5 KJ/kg,s1=6.7664 KJ/kg K\")\n", "h1=3023.5;\n", "s1=6.7664;\n", "print(\"ideally, s2=s1=6.7664 KJ/kg K\")\n", "s2=s1;\n", "print(\"s2=sf at 0.075 bar +x3* sfg at 0.075 bar\")\n", "print(\"from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\")\n", "sf=0.5764;\n", "sfg=7.6750;\n", "print(\"so x3=(s2-sf)/sfg\")\n", "x3=(s2-sf)/sfg\n", "x3=0.806;#approx.\n", "print(\"h_3HP=hf at 0.075 bar+x3*hfg at 0.075 bar in KJ/kg\")\n", "print(\"from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\")\n", "hf=168.79;\n", "hfg=2406.0; \n", "h_3HP=hf+x3*hfg\n", "print(\"actual enthalpy drop in HP(h_HP)=(h1-h_3HP)*n in KJ/kg\")\n", "h_HP=(h1-h_3HP)*n\n", "print(\"for LP:at inlet of LP steam\")\n", "print(\"h2=2706.7 KJ/kg,s2=7.1271 KJ/kg K\")\n", "h2=2706.7;\n", "s2=7.1271;\n", "print(\"Enthalpy at exit,h_3LP=2222.34 KJ/kg\")\n", "h_3LP=2222.34;\n", "print(\"actual enthalpy drop in LP(h_LP)=(h2-h_3LP)*n in KJ/kg\")\n", "h_LP=(h2-h_3LP)*n\n", "print(\"HP steam consumption at full load=P*0.7457/h_HP in kg/s\")\n", "P*0.7457/h_HP\n", "print(\"HP steam consumption at no load=0.10*(P*0.7457/h_HP)in kg/s\")\n", "0.10*(P*0.7457/h_HP)\n", "print(\"LP steam consumption at full load=P*0.7457/h_LP in kg/s\")\n", "P*0.7457/h_LP\n", "print(\"LP steam consumption at no load=0.10*(P*0.7457/h_LP)in kg/s\")\n", "0.10*(P*0.7457/h_LP)\n", "print(\"The problem can be solved geometrically by drawing willans line as per scale on graph paper and finding out the HP stream requirement for getting 1000 hp if LP stream is available at 1.5 kg/s.\")\n", "print(\"or,Analytically the equation for willans line can be obtained for above full load and no load conditions for HP and LP seperately.\")\n", "print(\"Willians line for HP:y=m*x+C,here y=steam consumption,kg/s\")\n", "print(\"x=load,hp\")\n", "print(\"y_HP=m_HP*x+C_HP\")\n", "print(\"0.254=m_HP*0+C_HP\")\n", "print(\"so C_HP=0.254\")\n", "C_HP=0.254;\n", "print(\"2.54=m_HP*2500+C_HP\")\n", "print(\"so m_HP=(2.54-C_HP)/2500\")\n", "m_HP=(2.54-C_HP)/2500\n", "print(\"so y_HP=9.144*10^-4*x_HP+0.254\")\n", "print(\"Willans line for LP:y_LP=m_LP*x_LP+C_LP\")\n", "print(\"0.481=m_LP*0+C_LP\")\n", "print(\"so C_LP=0.481\")\n", "C_LP=0.481;\n", "print(\"4.81=m_LP*2500+C_LP\")\n", "print(\"so m_LP=(4.81-C_LP)/2500\")\n", "m_LP=(4.81-C_LP)/2500\n", "print(\"so y_LP=1.732*10^-3*x_LP+0.481\")\n", "print(\"Total output(load) from mixed turbine,x=x_HP+x_LP\")\n", "print(\"For load of 1000 hp to be met by mixed turbine,let us find out the load shared by LP for steam flow rate of 1.5 kg/s\")\n", "y_LP=1.5;\n", "print(\"from y_LP=1.732*10^-3*x_LP+0.481,\")\n", "print(\"x_LP=(y_LP-0.481)/1.732*10^-3\")\n", "x_LP=(y_LP-0.481)/(1.732*10**-3)\n", "print(\"since by 1.5 kg/s of LP steam only 588.34 hp output contribution is made so remaining(1000-588.34)=411.66 hp,411.66 hp should be contributed by HP steam.By willans line for HP turbine,\")\n", "x_HP=411.66;\n", "y_HP=9.144*10**-4*x_HP+C_HP\n", "print(\"from y_HP=9.144*10^-4*x_HP+C_HP in kg/s\"),round(y_HP,2)\n", "print(\"so HP steam requirement=0.63 kg/s\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.15;pg no: 289" ] }, { "cell_type": "code", "execution_count": 102, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.15, Page:289 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 15\n", "Let us carry out analysis for 1 kg of steam generated in boiler.\n", "Enthalpy at inlet to HPT,h2=2960.7 KJ/kg,s2=6.3615 KJ/kg K\n", "state at 3 i.e. exit from HPT can be identified by s2=s3=6.3615 KJ/kg K\n", "Let dryness fraction be x3,s3=6.3615=sf at 2 bar+x3*sfg at 2 bar\n", "so x3= 0.86\n", "from stem tables,at 2 bar,sf=1.5301 KJ/kg K,sfg=5.5970 KJ/kg K\n", "h3=2404.94 KJ/kg\n", "If one kg of steam is generated in bolier then at exit of HPT,0.5 kg goes into process heater and 0.5 kg goes into separator\n", "mass of moisture retained in separator(m)=(1-x3)*0.5 kg\n", "Therefore,mass of steam entering LPT(m_LP)=0.5-m kg\n", "Total mass of water entering hot well at 8(i.e. from process heater and drain from separator)=(0.5+0.685)=0.5685 kg\n", "Let us assume the temperature of water leaving hotwell be T oc.Applying heat balance for mixing;\n", "(0.5685*4.18*90)+(0.4315*4.18*40)=(1*4.18*T)\n", "so T in degree celcius= 68.425\n", "so temperature of water leaving hotwell=68.425 degree celcius\n", "Applying heat balanced on trap\n", "0.5*h7+0.0685*hf at 2 bar=(0.5685*4.18*90)\n", "so h7=((0.5685*4.18*90)-(0.0685*hf))/0.5 in KJ/kg\n", "from steam tables,at 2 bar,hf=504.70 KJ/kg\n", "Therefore,heat transferred in process heater in KJ/kg steam generated= 1023.172\n", "so heat transferred per kg steam generated=1023.175 KJ/kg steam generated\n", "For state 10 at exit of LPT,s10=s3=s2=6.3615 KJ/kg K\n", "Let dryness fraction be x10\n", "s10=6.3615=sf at 0.075 bar+x10*sfg at 0.075 bar\n", "from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\n", "so x10=(s10-sf)/sfg\n", "h10=hf at 0.075 bar+x10*hfg at 0.075 bar\n", "from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\n", "so h10=hf+x10*hfg in KJ/kg \n", "net work output,neglecting pump work per kg of steam generated,\n", "w_net=(h2-h3)*1+0.4315*(h3-h10) in KJ/kg steam generated\n", "Heat added in boiler per kg steam generated,q_add in KJ/kg= 2674.68\n", "thermal efficiency=w_net/q_add 0.28\n", "in percentage 27.59\n", "so Thermal efficiency=27.58%\n" ] } ], "source": [ "#cal of thermal efficiency,heat transferred and temperature\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.15, Page:289 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 15\")\n", "print(\"Let us carry out analysis for 1 kg of steam generated in boiler.\")\n", "print(\"Enthalpy at inlet to HPT,h2=2960.7 KJ/kg,s2=6.3615 KJ/kg K\")\n", "h2=2960.7;\n", "s2=6.3615;\n", "print(\"state at 3 i.e. exit from HPT can be identified by s2=s3=6.3615 KJ/kg K\")\n", "s3=s2;\n", "print(\"Let dryness fraction be x3,s3=6.3615=sf at 2 bar+x3*sfg at 2 bar\")\n", "sf=1.5301;\n", "sfg=5.5970;\n", "x3=(s3-sf)/sfg\n", "print(\"so x3=\"),round(x3,2)\n", "print(\"from stem tables,at 2 bar,sf=1.5301 KJ/kg K,sfg=5.5970 KJ/kg K\")\n", "x3=0.863;#approx.\n", "print(\"h3=2404.94 KJ/kg\")\n", "h3=2404.94;\n", "print(\"If one kg of steam is generated in bolier then at exit of HPT,0.5 kg goes into process heater and 0.5 kg goes into separator\")\n", "print(\"mass of moisture retained in separator(m)=(1-x3)*0.5 kg\")\n", "m=(1-x3)*0.5\n", "print(\"Therefore,mass of steam entering LPT(m_LP)=0.5-m kg\")\n", "m_LP=0.5-m\n", "print(\"Total mass of water entering hot well at 8(i.e. from process heater and drain from separator)=(0.5+0.685)=0.5685 kg\")\n", "print(\"Let us assume the temperature of water leaving hotwell be T oc.Applying heat balance for mixing;\")\n", "print(\"(0.5685*4.18*90)+(0.4315*4.18*40)=(1*4.18*T)\")\n", "T=((0.5685*4.18*90)+(0.4315*4.18*40))/4.18\n", "print(\"so T in degree celcius=\"),round(T,3)\n", "print(\"so temperature of water leaving hotwell=68.425 degree celcius\")\n", "print(\"Applying heat balanced on trap\")\n", "print(\"0.5*h7+0.0685*hf at 2 bar=(0.5685*4.18*90)\")\n", "print(\"so h7=((0.5685*4.18*90)-(0.0685*hf))/0.5 in KJ/kg\")\n", "print(\"from steam tables,at 2 bar,hf=504.70 KJ/kg\")\n", "hf=504.70;\n", "h7=((0.5685*4.18*90)-(0.0685*hf))/0.5\n", "print(\"Therefore,heat transferred in process heater in KJ/kg steam generated=\"),round(0.5*(h3-h7),3)\n", "print(\"so heat transferred per kg steam generated=1023.175 KJ/kg steam generated\")\n", "print(\"For state 10 at exit of LPT,s10=s3=s2=6.3615 KJ/kg K\")\n", "s10=s3;\n", "print(\"Let dryness fraction be x10\")\n", "print(\"s10=6.3615=sf at 0.075 bar+x10*sfg at 0.075 bar\")\n", "print(\"from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K\")\n", "sf=0.5764;\n", "sfg=7.6750;\n", "print(\"so x10=(s10-sf)/sfg\")\n", "x10=(s10-sf)/sfg\n", "x10=0.754;#approx.\n", "print(\"h10=hf at 0.075 bar+x10*hfg at 0.075 bar\")\n", "print(\"from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg\")\n", "hf=168.79;\n", "hfg=2406.0;\n", "print(\"so h10=hf+x10*hfg in KJ/kg \")\n", "h10=hf+x10*hfg \n", "print(\"net work output,neglecting pump work per kg of steam generated,\")\n", "print(\"w_net=(h2-h3)*1+0.4315*(h3-h10) in KJ/kg steam generated\")\n", "w_net=(h2-h3)*1+0.4315*(h3-h10) \n", "q_add=(h2-4.18*68.425)\n", "print(\"Heat added in boiler per kg steam generated,q_add in KJ/kg=\"),round(q_add,2)\n", "w_net/q_add\n", "print(\"thermal efficiency=w_net/q_add\"),round(w_net/q_add,2)\n", "print(\"in percentage\"),round(w_net*100/q_add,2)\n", "print(\"so Thermal efficiency=27.58%\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.16;pg no: 291" ] }, { "cell_type": "code", "execution_count": 103, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.16, Page:291 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 16\n", "from steam tables,h1=3530.9 KJ/kg,s1=6.9486 KJ/kg K\n", "Assuming isentropic expansion in nozzle,s1=s2=6.9486\n", "Letdryness fraction at state 2,x2=0.864\n", "s2=sf at 0.2 bar+x2*sfg at 0.2 bar\n", "from steam tables,sf=0.8320 KJ/kg K,sfg=7.0766 KJ/kg K\n", "so x2= 0.86\n", "hence,h2=hf at 0.2 bar+x2*hfg at 0.2 bar in KJ/kg\n", "from steam tables,hf at 0.2 bar=251.4 KJ/kg,hfg at 0.2 bar=2358.3 KJ/kg\n", "considering pump work to be of isentropic type,deltah_34=v3*deltap_34\n", "from steam table,v3=vf at 0.2 bar=0.001017 m^3/kg\n", "or deltah_34 in KJ/kg= 7.1\n", "pump work,Wp in KJ/kg= 7.1\n", "turbine work,Wt=deltah_12=(h1-h2)in KJ/kg\n", "net work(W_net)=Wt-Wp in KJ/kg\n", "power produced(P)=mass flow rate*W_net in KJ/s\n", "so net power=43.22 MW\n", "heat supplied in boiler(Q)=(h1-h4) in KJ/kg\n", "enthalpy at state 4,h4=h3+deltah_34 in KJ/kg\n", "total heat supplied to boiler(Q)=m*(h1-h4)in KJ/s 114534.05\n", "thermal efficiency=net work/heat supplied=W_net/Q 0.38\n", "in percentage 37.73\n", "so thermal efficiency=37.73%\n" ] } ], "source": [ "#cal of thermal efficiency,net power\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.16, Page:291 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 16\")\n", "m=35;#mass flow rate in kg/s\n", "print(\"from steam tables,h1=3530.9 KJ/kg,s1=6.9486 KJ/kg K\")\n", "h1=3530.9;\n", "s1=6.9486;\n", "print(\"Assuming isentropic expansion in nozzle,s1=s2=6.9486\")\n", "s2=s1;\n", "print(\"Letdryness fraction at state 2,x2=0.864\")\n", "print(\"s2=sf at 0.2 bar+x2*sfg at 0.2 bar\")\n", "print(\"from steam tables,sf=0.8320 KJ/kg K,sfg=7.0766 KJ/kg K\")\n", "sf=0.8320;\n", "sfg=7.0766;\n", "x2=(s2-sf)/sfg\n", "print(\"so x2=\"),round(x2,2)\n", "x2=0.864;#approx.\n", "print(\"hence,h2=hf at 0.2 bar+x2*hfg at 0.2 bar in KJ/kg\")\n", "print(\"from steam tables,hf at 0.2 bar=251.4 KJ/kg,hfg at 0.2 bar=2358.3 KJ/kg\")\n", "hf=251.4;\n", "hfg=2358.3;\n", "h2=hf+x2*hfg\n", "print(\"considering pump work to be of isentropic type,deltah_34=v3*deltap_34\")\n", "print(\"from steam table,v3=vf at 0.2 bar=0.001017 m^3/kg\")\n", "v3=0.001017;\n", "p3=70;#;pressure of steam entering turbine in bar\n", "p4=0.20;#condenser pressure in bar\n", "deltah_34=v3*(p3-p4)*100\n", "print(\"or deltah_34 in KJ/kg=\"),round(deltah_34,2)\n", "Wp=deltah_34\n", "print(\"pump work,Wp in KJ/kg=\"),round(Wp,2)\n", "print(\"turbine work,Wt=deltah_12=(h1-h2)in KJ/kg\")\n", "Wt=(h1-h2)\n", "print(\"net work(W_net)=Wt-Wp in KJ/kg\")\n", "W_net=Wt-Wp\n", "print(\"power produced(P)=mass flow rate*W_net in KJ/s\")\n", "P=m*W_net\n", "print(\"so net power=43.22 MW\")\n", "print(\"heat supplied in boiler(Q)=(h1-h4) in KJ/kg\")\n", "print(\"enthalpy at state 4,h4=h3+deltah_34 in KJ/kg\")\n", "h3=hf;\n", "h4=h3+deltah_34 \n", "Q=m*(h1-h4)\n", "print(\"total heat supplied to boiler(Q)=m*(h1-h4)in KJ/s\"),round(Q,2)\n", "print(\"thermal efficiency=net work/heat supplied=W_net/Q\"),round(P/Q,2)\n", "print(\"in percentage\"),round(P*100/Q,2)\n", "print(\"so thermal efficiency=37.73%\")\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##example 8.17;pg no: 292" ] }, { "cell_type": "code", "execution_count": 104, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example 8.1, Page:292 \n", " \n", "\n", "Engineering Thermodynamics by Onkar Singh Chapter 8 Example 17\n", "from steam tables,h1=3625.3 KJ/s,s1=6.9029 KJ/kg K\n", "due to isentropic expansion,s1=s2=s3=6.9029 KJ/kg K\n", "at state 2,i.e at pressure of 2 MPa and entropy 6.9029 KJ/kg K\n", "by interpolating state for s2 between 2 MPa,300 degree celcius and 2 MPa,350 degree celcius from steam tables,\n", "h2=3105.08 KJ/kg \n", "for state 3,i.e at pressure of 0.01 MPa entropy,s3 lies in wet region as s3In this question there is some caclulation mistake while calculating m6 in book,which is corrected above so some answers may vary.\n" ] } ], "source": [ "#cal of thermal efficiency,mass of steam\n", "#intiation of all variables\n", "# Chapter 8\n", "print\"Example 8.18, Page:294 \\n \\n\"\n", "print(\"Engineering Thermodynamics by Onkar Singh Chapter 8 Example 18\")\n", "W_net=50*10**3;#net output of turbine in KW\n", "print(\"from steam tables,at inlet to first stage of turbine,h1=h at 100 bar,500oc=3373.7 KJ/kg,s1=s at 100 bar,500oc=6.5966 KJ/kg\")\n", "h1=3373.7;\n", "s1=6.5966;\n", "print(\"Due to isentropic expansion,s1=s6=s2 and s3=s8=s4\")\n", "s2=s1;\n", "s6=s2;\n", "print(\"State at 6 i.e bleed state from HP turbine,temperature by interpolation from steam table =261.6oc.\")\n", "print(\"At inlet to second stage of turbine,h6=2930.572 KJ/kg\")\n", "h6=2930.572;\n", "print(\"h3=h at 10 bar,500oc=3478.5 KJ/kg,s3=s at 10 bar,500oc=7.7622 KJ/kg K\")\n", "h3=3478.5;\n", "s3=7.7622;\n", "s4=s3;\n", "s8=s4;\n", "print(\"At exit from first stage of turbine i.e. at 10 bar and entropy of 6.5966 KJ/kg K,Temperature by interpolation from steam table at 10 bar and entropy of 6.5966 KJ/kg K\")\n", "print(\"T2=181.8oc,h2=2782.8 KJ/kg\")\n", "T2=181.8;\n", "h2=2782.8;\n", "print(\"state at 8,i.e bleed state from second stage of expansion,i.e at 4 bar and entropy of 7.7622 KJ/kg K,Temperature by interpolation from steam table,T8=358.98oc=359oc\")\n", "T8=359;\n", "print(\"h8=3188.7 KJ/kg\")\n", "h8=3188.7;\n", "print(\"state at 4 i.e. at condenser pressure of 0.1 bar and entropy of 7.7622 KJ/kg K,the state lies in wet region.So let the dryness fraction be x4.\")\n", "print(\"s4=sf at 0.1 bar+x4*sfg at 0.1 bar\")\n", "print(\"from steam tables,at 0.1 bar,sf=0.6493 KJ/kg K,sfg=7.5009 KJ/kg K\")\n", "sf=0.6493;\n", "sfg=7.5009; \n", "x4=(s4-sf)/sfg\n", "print(\"so x4=\"),round(x4,2)\n", "x4=0.95;#approx.\n", "print(\"h4=hf at 0.1 bar+x4*hfg at 0.1 bar in KJ/kg \")\n", "print(\"from steam tables,at 0.1 bar,hf=191.83 KJ/kg,hfg=2392.8 KJ/kg\")\n", "hf=191.83;\n", "hfg=2392.8;\n", "h4=hf+x4*hfg\n", "print(\"given,h4=2464.99 KJ/kg,h11=856.8 KJ/kg,h9=hf at 4 bar=604.74 KJ/kg\")\n", "h4=2464.99;\n", "h11=856.8;\n", "h9=604.74;\n", "print(\"considering pump work,the net output can be given as,\")\n", "print(\"W_net=W_HPT+W_LPT-(W_CEP+W_FP)\")\n", "print(\"where,W_HPT={(h1-h6)+(1-m6)*(h6-h2)}per kg of steam from boiler.\")\n", "print(\"W_LPT={(1-m6)+(h3-h8)*(1-m6-m8)*(h8-h4)}per kg of steam from boiler.\")\n", "print(\"for closed feed water heater,energy balance yields;\")\n", "print(\"m6*h6+h10=m6*h7+h11\")\n", "print(\"assuming condensate leaving closed feed water heater to be saturated liquid,\")\n", "print(\"h7=hf at 20 bar=908.79 KJ/kg\")\n", "h7=908.79; \n", "print(\"due to throttline,h7=h7_a=908.79 KJ/kg\")\n", "h7_a=h7;\n", "print(\"for open feed water heater,energy balance yields,\")\n", "print(\"m6*h7_a+m8*h8+(1-m6-m8)*h5=h9\")\n", "print(\"for condensate extraction pump,h5-h4_a=v4_a*deltap\")\n", "print(\"h5-hf at 0.1 bar=vf at 0.1 bar*(4-0.1)*10^2 \")\n", "print(\"from steam tables,at 0.1 bar,hf=191.83 KJ/kg,vf=0.001010 m^3/kg\")\n", "hf=191.83;\n", "vf=0.001010; \n", "h5=hf+vf*(4-0.1)*10**2\n", "print(\"so h5 in KJ/kg=\"),round(h5,2)\n", "print(\"for feed pump,h10-h9=v9*deltap\")\n", "print(\"h10=h9+vf at 4 bar*(100-4)*10^2 in KJ/kg\")\n", "print(\"from steam tables,at 4 bar,hf=604.74 KJ/kg,vf=0.001084 m^3/kg \")\n", "hf=604.74;\n", "vf=0.001084;\n", "h10=h9+vf*(100-4)*10**2\n", "print(\"substituting in energy balance upon closed feed water heater,\")\n", "m6=(h11-h10)/(h6-h7)\n", "print(\"m6 in kg per kg of steam from boiler=\"),round(m6,3)\n", "print(\"substituting in energy balance upon feed water heater,\")\n", "m8=(h9-m6*h7_a+m6*h5-h5)/(h8-h5)\n", "print(\"m8 in kg per kg of steam from boiler=\"),round(m8,3)\n", "print(\"Let the mass of steam entering first stage of turbine be m kg,then\")\n", "{(h1-h6)+(1-m6)*(h6-h2)}\n", "print(\"W_HPT=m*{(h1-h6)+(1-m6)*(h6-h2)}\")\n", "print(\"W_HPT/m=\"),round(((h1-h6)+(1-m6)*(h6-h2)),2)\n", "print(\"so W_HPT=m*573.24 KJ\")\n", "print(\"also,W_LPT={(1-m6)*(h3-h8)+(1-m6-m8)*(h8-h4)}per kg of steam from boiler\")\n", "{(1-m6)*(h3-h8)+(1-m6-m8)*(h8-h4)}\n", "print(\"W_LPT/m=\"),round(((1-m6)*(h3-h8)+(1-m6-m8)*(h8-h4)),2)\n", "print(\"so W_LPT=m*813.42 KJ\")\n", "print(\"pump works(negative work)\")\n", "print(\"W_CEP=m*(1-m6-m8)*(h5-h4_a)\")\n", "h4_a=191.83;#h4_a=hf at 0.1 bar\n", "print(\"W_CEP/m=\")\n", "(1-m6-m8)*(h5-h4_a)\n", "print(\"so W_CEP=m* 0.304\")\n", "print(\"W_FP=m*(h10-h9)\")\n", "print(\"W_FP/m=\"),round((h10-h9),2)\n", "print(\"so W_FP=m*10.41\")\n", "print(\"net output,\")\n", "print(\"W_net=W_HPT+W_LPT-W_CEP-W_FP \")\n", "print(\"so 50*10^3=(573.24*m+813.42*m-0.304*m-10.41*m)\")\n", "m=W_net/(573.24+813.42-0.304-10.41)\n", "print(\"so m in kg/s=\"),round(m,2)\n", "Q_add=m*(h1-h11)\n", "print(\"heat supplied in boiler,Q_add in KJ/s=\"),round(m*(h1-h11),2)\n", "print(\"Thermal efficenncy=\"),round(W_net/Q_add,2)\n", "print(\"in percentage\"),round(W_net*100/Q_add,2)\n", "print(\"so mass of steam bled at 20 bar=0.119 kg per kg of steam entering first stage\")\n", "print(\"mass of steam bled at 4 bar=0.109 kg per kg of steam entering first stage\")\n", "print(\"mass of steam entering first stage=36.33 kg/s\")\n", "print(\"thermal efficiency=54.66%\")\n", "print(\"NOTE=>In this question there is some caclulation mistake while calculating m6 in book,which is corrected above so some answers may vary.\")\n" ] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.9" } }, "nbformat": 4, "nbformat_minor": 0 }