summaryrefslogtreecommitdiff
path: root/Principles_of_Power_System/chapter20.ipynb
diff options
context:
space:
mode:
authornice2014-09-16 17:48:17 +0530
committernice2014-09-16 17:48:17 +0530
commitb8bb8bbfa81499ad7fc3f3508be257da65f543af (patch)
tree204976d3209b79a52e8518c65fa27a4ca48f8489 /Principles_of_Power_System/chapter20.ipynb
parent2792e8d6ecab454e3cb8fb1ea1f26f1613bc1e1c (diff)
downloadPython-Textbook-Companions-b8bb8bbfa81499ad7fc3f3508be257da65f543af.tar.gz
Python-Textbook-Companions-b8bb8bbfa81499ad7fc3f3508be257da65f543af.tar.bz2
Python-Textbook-Companions-b8bb8bbfa81499ad7fc3f3508be257da65f543af.zip
updating repo
Diffstat (limited to 'Principles_of_Power_System/chapter20.ipynb')
-rwxr-xr-xPrinciples_of_Power_System/chapter20.ipynb64
1 files changed, 64 insertions, 0 deletions
diff --git a/Principles_of_Power_System/chapter20.ipynb b/Principles_of_Power_System/chapter20.ipynb
new file mode 100755
index 00000000..768f8fa6
--- /dev/null
+++ b/Principles_of_Power_System/chapter20.ipynb
@@ -0,0 +1,64 @@
+{
+ "metadata": {
+ "name": "",
+ "signature": "sha256:37bb87f048a2d4a670b09cf05bff6f5c622ef838c4da8caa7225a316e1b26b5e"
+ },
+ "nbformat": 3,
+ "nbformat_minor": 0,
+ "worksheets": [
+ {
+ "cells": [
+ {
+ "cell_type": "heading",
+ "level": 1,
+ "metadata": {},
+ "source": [
+ "Chapter 20: Fuses"
+ ]
+ },
+ {
+ "cell_type": "heading",
+ "level": 3,
+ "metadata": {},
+ "source": [
+ "Example 20.1, Page Number: 495"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "from __future__ import division\n",
+ "\n",
+ "#Variable declaration:\n",
+ "r1 = 0.8 #radius of fuse wire(mm)\n",
+ "I1 = 8 #blow current at r1 radius(A)\n",
+ "I2 = 1 #blow current(A)\n",
+ "\n",
+ "\n",
+ "#Calculation:\n",
+ "r2 = r1*(I2/I1)**(2/3) #radius for bearing 1 A of blow current(mm)\n",
+ "\n",
+ "\n",
+ "\n",
+ "#Result:\n",
+ "print \"The radius of the wire that will blow off at a current of 1A is\",r2,\"mm\""
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "The radius of the wire that will blow off at a current of 1A is 0.2 mm\n"
+ ]
+ }
+ ],
+ "prompt_number": 1
+ }
+ ],
+ "metadata": {}
+ }
+ ]
+} \ No newline at end of file