diff options
author | hardythe1 | 2015-06-03 15:27:17 +0530 |
---|---|---|
committer | hardythe1 | 2015-06-03 15:27:17 +0530 |
commit | 47d7279a724246ef7aa0f5359cf417992ed04449 (patch) | |
tree | c613e5e4813d846d24d67f46507a6a69d1a42d87 /Non_Conventional_Energy_Resources/Chapter13.ipynb | |
parent | 435840cef00c596d9e608f9eb2d96f522ea8505a (diff) | |
download | Python-Textbook-Companions-47d7279a724246ef7aa0f5359cf417992ed04449.tar.gz Python-Textbook-Companions-47d7279a724246ef7aa0f5359cf417992ed04449.tar.bz2 Python-Textbook-Companions-47d7279a724246ef7aa0f5359cf417992ed04449.zip |
add books
Diffstat (limited to 'Non_Conventional_Energy_Resources/Chapter13.ipynb')
-rwxr-xr-x | Non_Conventional_Energy_Resources/Chapter13.ipynb | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/Non_Conventional_Energy_Resources/Chapter13.ipynb b/Non_Conventional_Energy_Resources/Chapter13.ipynb new file mode 100755 index 00000000..534f0e2b --- /dev/null +++ b/Non_Conventional_Energy_Resources/Chapter13.ipynb @@ -0,0 +1,61 @@ +{
+ "metadata": {
+ "name": "",
+ "signature": "sha256:f398a98eb03764e3df9c76bb9b69ca1418effde2602c77ec655bb3f8f666faf0"
+ },
+ "nbformat": 3,
+ "nbformat_minor": 0,
+ "worksheets": [
+ {
+ "cells": [
+ {
+ "cell_type": "heading",
+ "level": 1,
+ "metadata": {},
+ "source": [
+ "Chapter13:Miscellaneous Non-conventional Technologies"
+ ]
+ },
+ {
+ "cell_type": "heading",
+ "level": 2,
+ "metadata": {},
+ "source": [
+ "Ex13.1:pg-400"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "import math\n",
+ "# given data\n",
+ "A=0.25 # area in m^2\n",
+ "d=0.5 # distance between electrodes in m \n",
+ "B=1.8 # flux density in Wb/m^2\n",
+ "u=1200.0 # average gas velocity in m/s\n",
+ "sigma=10.0 # mho/m\n",
+ "\n",
+ "Vo=B*u*d # in Volts\n",
+ "Pmax=1*sigma*(u**2)*(B**2)*A*d/(4.0*10**6) # in MW\n",
+ "\n",
+ "print \"Maximum Power output\",Pmax,\"MW\""
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "Maximum Power output 1.458 MW\n"
+ ]
+ }
+ ],
+ "prompt_number": 8
+ }
+ ],
+ "metadata": {}
+ }
+ ]
+}
\ No newline at end of file |