diff options
author | Trupti Kini | 2016-08-03 23:30:24 +0600 |
---|---|---|
committer | Trupti Kini | 2016-08-03 23:30:24 +0600 |
commit | d3c78d479465360737b668cc55559e4f4758cd71 (patch) | |
tree | 7296ca09e8f7ccbf4e7cd10cd7c1a7c89140db5d /sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb | |
parent | 4001048f8209fe2825519adff366c99c8c84ab9f (diff) | |
download | Python-Textbook-Companions-d3c78d479465360737b668cc55559e4f4758cd71.tar.gz Python-Textbook-Companions-d3c78d479465360737b668cc55559e4f4758cd71.tar.bz2 Python-Textbook-Companions-d3c78d479465360737b668cc55559e4f4758cd71.zip |
Added(A)/Deleted(D) following books
A 1000_solved_Problems_in_Fluid_Mechanics_includes_Hydraulic_machines_by_K.Subramanya/README.txt
A Fundamentals_Of_Aerodynamics_by_J._D._Anderson_Jr./README.txt
A Introductory_Methods_Of_Numerical_Analysis__by_S._S._Sastry/README.txt
A SURVYNG_AND_LEVELLING__by_N.N.BASAK/README.txt
A sample_notebooks/Harshitgarg/Chapter_1-INTRODUCTION_TO_MECHANICS_OF_SOLIDS__2.ipynb
A "sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb"
A sample_notebooks/NityaL/Sample-Chapter_26.ipynb
Diffstat (limited to 'sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb')
-rw-r--r-- | sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb b/sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb new file mode 100644 index 00000000..8f5d99cb --- /dev/null +++ b/sample_notebooks/KARTHIKEYAN S/CHAPTER_1.ipynb @@ -0,0 +1,104 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CHAPTER 1:Fundmentals" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## EXAMPLE 1.1,PAGE NUMBER:3" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Carnot COP= 6.0 (error)\n" + ] + } + ], + "source": [ + "\n", + "import math\n", + "\n", + "#Variable Declaration\n", + "T_0=-5+273;\n", + "T_1=35+273;\n", + "\n", + "#Calculation\n", + "COP=(T_0)/(T_1-T_0);# Coefficient of performance\n", + "print \"Carnot COP=\",round(COP,2),\"(error)\"\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## EXAMPLE 1.2,PAGE NUMBER:4" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The average specific heat capacity is 4.186 kJ/(kg K)\n" + ] + } + ], + "source": [ + "\n", + "import math\n", + "\n", + "#Variable Declaration\n", + "T_f=80;# Final Temperature in °C\n", + "T_i=0;# Initial Temperature in °C\n", + "h_f=334.91;#The specific enthalpy of water in kJ/kg\n", + "\n", + "#Calculation\n", + "C=h_f/(T_f-T_i);# The average specifi c heat capacity in kJ/(kg K)\n", + "print \"The average specific heat capacity is\",round(C,3),\"kJ/(kg K)\"\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 +} |