summaryrefslogtreecommitdiff
path: root/Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb
diff options
context:
space:
mode:
authorhardythe12015-07-03 12:23:43 +0530
committerhardythe12015-07-03 12:23:43 +0530
commit9d260e6fae7328d816a514130b691fbd0e9ef81d (patch)
tree9e6035702fca0f6f8c5d161de477985cacad7672 /Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb
parentafcd9e5397e3e1bde0392811d0482d76aac391dc (diff)
downloadPython-Textbook-Companions-9d260e6fae7328d816a514130b691fbd0e9ef81d.tar.gz
Python-Textbook-Companions-9d260e6fae7328d816a514130b691fbd0e9ef81d.tar.bz2
Python-Textbook-Companions-9d260e6fae7328d816a514130b691fbd0e9ef81d.zip
add/remove books
Diffstat (limited to 'Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb')
-rwxr-xr-xElectrical_Power-i__by_M.L._Anand/Chapter9.ipynb58
1 files changed, 58 insertions, 0 deletions
diff --git a/Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb b/Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb
new file mode 100755
index 00000000..4eac07db
--- /dev/null
+++ b/Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb
@@ -0,0 +1,58 @@
+{
+ "metadata": {
+ "name": "",
+ "signature": ""
+ },
+ "nbformat": 3,
+ "nbformat_minor": 0,
+ "worksheets": [
+ {
+ "cells": [
+ {
+ "cell_type": "heading",
+ "level": 1,
+ "metadata": {},
+ "source": [
+ "Chapter9 - Substations and earthing"
+ ]
+ },
+ {
+ "cell_type": "heading",
+ "level": 2,
+ "metadata": {},
+ "source": [
+ "Problem 9.1 - page 252"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "from numpy import pi\n",
+ "#Given Data :\n",
+ "V=250 #in volt\n",
+ "f=50 #in Hz\n",
+ "l=300 #in km\n",
+ "C_earth=0.03 #in uF\n",
+ "C=l*C_earth*10**-6 #in F\n",
+ "XL=1/(3*2*pi*f*C) #in ohm\n",
+ "print \"Reactance required for the Peterson coil = %.f ohm\" %XL"
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "Reactance required for the Peterson coil = 118 ohm\n"
+ ]
+ }
+ ],
+ "prompt_number": 2
+ }
+ ],
+ "metadata": {}
+ }
+ ]
+}