summaryrefslogtreecommitdiff
path: root/sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb
diff options
context:
space:
mode:
authorTrupti Kini2016-04-12 23:30:26 +0600
committerTrupti Kini2016-04-12 23:30:26 +0600
commitbde93a104da9d4510f751a003cdf51ddaa45da1c (patch)
tree033e6b60c456cc12fdda7e3317851624e28fabb5 /sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb
parent999a3252fe20da210975277eb235d4b132592ab6 (diff)
downloadPython-Textbook-Companions-bde93a104da9d4510f751a003cdf51ddaa45da1c.tar.gz
Python-Textbook-Companions-bde93a104da9d4510f751a003cdf51ddaa45da1c.tar.bz2
Python-Textbook-Companions-bde93a104da9d4510f751a003cdf51ddaa45da1c.zip
Added(A)/Deleted(D) following books
A Power_Plant_Engineering_by_P._K._Nag/Ch1.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch10.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch11.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch12.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch2.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch3.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch4.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch5.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch6.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch7.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch8.ipynb A Power_Plant_Engineering_by_P._K._Nag/Ch9.ipynb A Power_Plant_Engineering_by_P._K._Nag/screenshots/LoadCurve.png A Power_Plant_Engineering_by_P._K._Nag/screenshots/LoadCurve2.png A Power_Plant_Engineering_by_P._K._Nag/screenshots/LoadDurationCurve.png A sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb A sample_notebooks/Hrituraj/Ch-6_1.ipynb A sample_notebooks/NishthaRani/Chapter12.ipynb A sample_notebooks/SaleemAhmed/Chapter10_1.ipynb A sample_notebooks/VivekMaindola/chap3.ipynb
Diffstat (limited to 'sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb')
-rw-r--r--sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb78
1 files changed, 78 insertions, 0 deletions
diff --git a/sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb b/sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb
new file mode 100644
index 00000000..b42dd470
--- /dev/null
+++ b/sample_notebooks/FameethaAlamBasha/Chapter7_1.ipynb
@@ -0,0 +1,78 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter 7:Starting And Speed Control Of Induction Motor "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 7.1,Page 7-6"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "x= 0.7453\n",
+ "Thus 74.53 % tapping is required\n",
+ "Ist= 3.33 IF.L\n",
+ "Thus supply starting current is 3.33 times the full load current\n"
+ ]
+ }
+ ],
+ "source": [
+ "import math\n",
+ "\n",
+ "#variable declaration\n",
+ "Isc=6 # starting current at rated voltage(amp)\n",
+ "Sf=5 # full load slip\n",
+ "Tfl=Tst=1 # full load torque=starting torque(N-m)\n",
+ "Ifl=1 # full load current(amp)\n",
+ "\n",
+ "#calculation\n",
+ "x=math.sqrt((Tst/Tfl) * ((float(Ifl)/float(Isc))**2)*(1/(float(Sf)/100)))\n",
+ "print 'x=',str (x)[:6]\n",
+ "print 'Thus',str(x*100)[:5],'% tapping is required'\n",
+ "\n",
+ "#Ist(supply)=x**2 * 6\n",
+ "Ist=(x**2) * Isc # supply starting current(IF.L)\n",
+ "Ist=round(Ist,2)\n",
+ "print 'Ist=',Ist,'IF.L'\n",
+ "print 'Thus supply starting current is',Ist,'times the full load current'"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 2",
+ "language": "python",
+ "name": "python2"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 2
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython2",
+ "version": "2.7.11"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}