summaryrefslogtreecommitdiff
path: root/sample_notebooks
diff options
context:
space:
mode:
authorTrupti Kini2016-06-18 23:30:31 +0600
committerTrupti Kini2016-06-18 23:30:31 +0600
commit35e76350164a52f6ca9654e60b9e6fcc9e843293 (patch)
tree56346e5ae6ad964650bb868ac3118ca02101aab9 /sample_notebooks
parent567954f0f9089a76901da46619e67bcaa8eaf0d4 (diff)
downloadPython-Textbook-Companions-35e76350164a52f6ca9654e60b9e6fcc9e843293.tar.gz
Python-Textbook-Companions-35e76350164a52f6ca9654e60b9e6fcc9e843293.tar.bz2
Python-Textbook-Companions-35e76350164a52f6ca9654e60b9e6fcc9e843293.zip
Added(A)/Deleted(D) following books
A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter10.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter11.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter12.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter13.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter14.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter15.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter16.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter2.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter3.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter4.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter5.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter6.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter7.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/Chapter8.ipynb A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/screenshots/2correlationCoeff.png A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/screenshots/2expansionofSignal.png A Modern_Digital_And_Analog_Communication_System_by_B._P._Lathi/screenshots/2timeInvertedsignal.png A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/Chapter-2-Molecular_Diffusion_-_Principles_of_Mass_Transfer_and_Separation_Process_by_Binay_K_Dutta_1.ipynb A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/Chapter-3-Convective_Mass_Transfer_and_Mass_Transfer_Coefficient_1.ipynb A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/Chapter-4-Interphase_Mass_Transfer_1.ipynb A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/Chapter-5-Gas-Liquid_Contacting_Equipment_1.ipynb A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/screenshots/chapter2_example_2.3_plot_1.png A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/screenshots/chapter2_example_2.4_plot_1.png A PRINCIPLES_OF_MASS_TRANSFER_AND_SEPARATION_PROCESS_by_Binay_K._Dutta/screenshots/chapter4_example_4.5_plot_1.png A "sample_notebooks/PRAVEENKUMAR C/CHAPTER_1.ipynb"
Diffstat (limited to 'sample_notebooks')
-rw-r--r--sample_notebooks/PRAVEENKUMAR C/CHAPTER_1.ipynb66
1 files changed, 66 insertions, 0 deletions
diff --git a/sample_notebooks/PRAVEENKUMAR C/CHAPTER_1.ipynb b/sample_notebooks/PRAVEENKUMAR C/CHAPTER_1.ipynb
new file mode 100644
index 00000000..e2b145a8
--- /dev/null
+++ b/sample_notebooks/PRAVEENKUMAR C/CHAPTER_1.ipynb
@@ -0,0 +1,66 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The weight of a car in newton,W= 13734.0 N\n",
+ "The mass of the car in slugs,m= 95.9 slugs\n",
+ "The weight of the car in pounds,W= 3089.0 lb\n",
+ "The mass of the car in lbm,m= 3086.0 lbm\n"
+ ]
+ }
+ ],
+ "source": [
+ "# CHAPTER 1:INTRODUCTION TO FLUID STATICS\n",
+ "# SAMPLE PROBLEM 1/1,PAGE NUMBER:19\n",
+ "\n",
+ "import math\n",
+ "\n",
+ "#Variable Declaration\n",
+ "m=1400; # Mass of car in kg\n",
+ "\n",
+ "#Calculation\n",
+ "g=9.81; # The acceleration due to gravity in m/s^2\n",
+ "W_1=m*g;# Weight in N\n",
+ "m_1=m/14.594;# Mass of the car in slugs (1slug=14.594kg)\n",
+ "g=32.2; # The acceleration due to gravity in ft/s^2\n",
+ "W_2=m_1*g;# Weight in pounds (lb)\n",
+ "m_2=m/0.45359; #Mass of the car in lbm\n",
+ "print \"The weight of a car in newton,W=\",round(W_1,0),\"N\"\n",
+ "print \"The mass of the car in slugs,m=\",round(m_1,1),\"slugs\"\n",
+ "print \"The weight of the car in pounds,W=\",round(W_2,0),\"lb\"\n",
+ "print \"The mass of the car in lbm,m=\",round(m_2,0),\"lbm\"\n",
+ "\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
+}