From 9d260e6fae7328d816a514130b691fbd0e9ef81d Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 3 Jul 2015 12:23:43 +0530 Subject: add/remove books --- Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb | 58 ++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100755 Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb (limited to 'Electrical_Power-i__by_M.L._Anand/Chapter9.ipynb') 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": {} + } + ] +} -- cgit