diff options
Diffstat (limited to 'Problems_In_Fluid_Flow/ch5.ipynb')
-rw-r--r-- | Problems_In_Fluid_Flow/ch5.ipynb | 78 |
1 files changed, 13 insertions, 65 deletions
diff --git a/Problems_In_Fluid_Flow/ch5.ipynb b/Problems_In_Fluid_Flow/ch5.ipynb index 2f6c5b6c..9a1752c6 100644 --- a/Problems_In_Fluid_Flow/ch5.ipynb +++ b/Problems_In_Fluid_Flow/ch5.ipynb @@ -1,6 +1,7 @@ { "metadata": { - "name": "" + "name": "", + "signature": "sha256:f59ee9dc4c5262ffa9663e99f39b4e3b3c7c93a564a44e8c761f2c4379d0bbed" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,12 +28,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "volumetric flow rate\n", - "chezy coefficient\n", - "velocity gradient in the channel\n", - "'''\n", + "\n", "import math \n", "\n", "# Initialization of Variable\n", @@ -85,7 +81,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "# find depth of water\n", + "\n", "\n", "from scipy.optimize import fsolve \n", "import math \n", @@ -134,7 +130,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "# find slope of channel\n", + "\n", "\n", "from scipy.optimize import fsolve \n", "import math \n", @@ -181,13 +177,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "maximum velocity\n", - "maximum volumetric flow \n", - "maximum velocity of obtained fluid \n", - "maximum flow rate obtained\n", - "'''\n", + "\n", "\n", "from scipy.optimize import fsolve \n", "import math \n", @@ -255,13 +245,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "velocity of fluid \n", - "fluid depth over weir in (m)\n", - "fluid depth over weir in if SI units \n", - "base angle of the notch of weir\n", - "'''\n", + "\n", "\n", "from scipy.optimize import fsolve \n", "import math \n", @@ -330,14 +314,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "alternative depth \n", - "maximum volumetric flow\n", - "Froude no.\n", - "% of kinetic energy in initial system\n", - "% of kinetic energy in final system \n", - "'''\n", + "\n", "\n", "import math \n", "from numpy import poly1d\n", @@ -399,12 +376,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "alternate depths \n", - "slode when depth is 12.9cm\n", - "slode when depth is 45.1cm \n", - "'''\n", + "\n", "\n", "import math \n", "from numpy import *\n", @@ -453,12 +425,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "critical depth\n", - "critical velocity\n", - "Critical volumetric flow\n", - "'''\n", + "\n", "\n", "import math \n", "from numpy import *\n", @@ -522,11 +489,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "volumetric flow rate over flat topped weir over rectangular section in non uniform width\n", - "volumetric flow rate over flat topped weir over rectangular section in uniform width\n", - "'''\n", + "\n", "\n", "import math \n", "\n", @@ -577,12 +540,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "Normal depth \n", - "Critical depth \n", - "distance in (m) from upstream to that place\n", - "'''\n", + "\n", "\n", "from numpy import linspace\n", "from scipy.optimize import fsolve \n", @@ -648,17 +606,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "'''\n", - "find\n", - "critical depth \n", - "normal depth upstream\n", - "normal depth downstream \n", - "conjugate depth for upstream \n", - "conjugate depth for downstream \n", - "distance in (m) of occurence of jump by accurate method\n", - "distance in (m) of occurence of jump by not so accurate method\n", - "power loss in hydraulic jump per unit width\n", - "'''\n", + "\n", "\n", "import math \n", "from numpy import linspace\n", |