summaryrefslogtreecommitdiff
path: root/sample_notebooks
diff options
context:
space:
mode:
authorTrupti Kini2016-09-09 23:30:25 +0600
committerTrupti Kini2016-09-09 23:30:25 +0600
commit881c3e39d046002e9910d5c518c20fe000e63b37 (patch)
treec6f84e1956eb501ff64b872dafaa2184443e14c2 /sample_notebooks
parent28bb57cacd0c8bd76a5c86d7e99e3583f02f0b6c (diff)
downloadPython-Textbook-Companions-881c3e39d046002e9910d5c518c20fe000e63b37.tar.gz
Python-Textbook-Companions-881c3e39d046002e9910d5c518c20fe000e63b37.tar.bz2
Python-Textbook-Companions-881c3e39d046002e9910d5c518c20fe000e63b37.zip
Added(A)/Deleted(D) following books
A Heat_Transfer_Principles_And_Applications_by_Dutta/README.txt A Heat_Transfer_Principles_And_Applications_by_Dutta/ch10.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch11.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch2.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch3.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch4.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch5.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch6.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch7.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch8.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/ch9.ipynb A Heat_Transfer_Principles_And_Applications_by_Dutta/screenshots/10.png A Heat_Transfer_Principles_And_Applications_by_Dutta/screenshots/5.png A Heat_Transfer_Principles_And_Applications_by_Dutta/screenshots/51.png A Heat_Transfer_in_SI_units_by_Holman/Chapter1.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter10.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter11.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter2.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter3.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter4.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter5.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter6.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter7.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter8.ipynb A Heat_Transfer_in_SI_units_by_Holman/Chapter9.ipynb A Heat_Transfer_in_SI_units_by_Holman/README.txt A Heat_Transfer_in_SI_units_by_Holman/screenshots/9.1.png A Heat_Transfer_in_SI_units_by_Holman/screenshots/9.2.png A Heat_Transfer_in_SI_units_by_Holman/screenshots/9.4.png A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter1.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter2.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter3.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter4.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter5.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter6.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter7.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter8.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/Chapter9.ipynb A Power_Electronics_Principles_and_Applications_by_Jacob/README.txt A Power_Electronics_Principles_and_Applications_by_Jacob/screenshots/4.png A Power_Electronics_Principles_and_Applications_by_Jacob/screenshots/5.png A Power_Electronics_Principles_and_Applications_by_Jacob/screenshots/6.png A sample_notebooks/AviralYadav/Chapter5.ipynb
Diffstat (limited to 'sample_notebooks')
-rw-r--r--sample_notebooks/AviralYadav/Chapter5.ipynb146
1 files changed, 146 insertions, 0 deletions
diff --git a/sample_notebooks/AviralYadav/Chapter5.ipynb b/sample_notebooks/AviralYadav/Chapter5.ipynb
new file mode 100644
index 00000000..5780e6b5
--- /dev/null
+++ b/sample_notebooks/AviralYadav/Chapter5.ipynb
@@ -0,0 +1,146 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter 5:INTRODUCTION TO THERMAL POWER PLANT"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Ex5.1:pg-271"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "The coal required per hour,W= 50.95 tons/hr\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Example 5_1\n",
+ " \n",
+ "# Given data\n",
+ "P=100.0;# Plant capacity in Mw\n",
+ "CV=25600.0;# Calorific value in kJ/kg\n",
+ "n_th=30.0;# The thermal efficiency of the plant in %\n",
+ "n_eg=92.0;# Electrical generation efficiency in %\n",
+ "\n",
+ "# Calculation\n",
+ "# Mechanical energy available=W*CV*(n_th/100) in kJ/hr\n",
+ "# Electrical energy available=W*CV*(n_th/100)*(n_eg/100) in kJ/hr\n",
+ "q_e=P*10**3*3600;# Heat equivalent in kJ/hr\n",
+ "W=(q_e/(CV*(n_th/100)*(n_eg/100)));# The coal required per hour in kg/hr\n",
+ "W=(W/1000);# The coal required per hour in tons/hr\n",
+ "print \"\\nThe coal required per hour,W=\",round(W,2),\" tons/hr\"\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Ex5.2:pg-273"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ " The capacity of the power plant,P= 62.05 MW\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Example 5_2\n",
+ " \n",
+ "# Given data\n",
+ "CV=28900.0;#kJ/kg\n",
+ "n_b=83.0;# The boiler efficiency in %\n",
+ "n_t=32.0;# The turbine efficiency in %\n",
+ "n_g=97.0;# The generator efficiency in %\n",
+ "W=30.0;# The coal consumption of the station in tons/hr\n",
+ "\n",
+ "# Calculation\n",
+ "P=((W*1000*CV)*(n_b/100)*(n_t/100)*(n_g/100))/(3600*1000);# The capacity of the power plant in MW\n",
+ "print \"\\n The capacity of the power plant,P=\",round(P,2),\" MW\"\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Ex5.3:pg-273"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The volume of gas required per hour,V= 450.0 m**3/hr\n"
+ ]
+ }
+ ],
+ "source": [
+ "#Example 5_3\n",
+ "\n",
+ "# Given values\n",
+ "P=100.0;# Power in kW\n",
+ "CV=4000.0;# Calorific value in kJ/m**3\n",
+ "n_o=0.20;# Over all efficiency of the plant\n",
+ "\n",
+ "# Calculation\n",
+ "V=(3600*P)/(CV*n_o);# m**3/hr\n",
+ "print \"The volume of gas required per hour,V=\",round(V,2),\" m**3/hr\"\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.11"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}