diff options
author | kinitrupti | 2017-05-12 18:40:35 +0530 |
---|---|---|
committer | kinitrupti | 2017-05-12 18:40:35 +0530 |
commit | d36fc3b8f88cc3108ffff6151e376b619b9abb01 (patch) | |
tree | 9806b0d68a708d2cfc4efc8ae3751423c56b7721 /sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb | |
parent | 1b1bb67e9ea912be5c8591523c8b328766e3680f (diff) | |
download | Python-Textbook-Companions-d36fc3b8f88cc3108ffff6151e376b619b9abb01.tar.gz Python-Textbook-Companions-d36fc3b8f88cc3108ffff6151e376b619b9abb01.tar.bz2 Python-Textbook-Companions-d36fc3b8f88cc3108ffff6151e376b619b9abb01.zip |
Revised list of TBCs
Diffstat (limited to 'sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb')
-rwxr-xr-x | sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb b/sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb deleted file mode 100755 index 3fff6821..00000000 --- a/sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb +++ /dev/null @@ -1,71 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# CHAPTER_8-Load Characteristics Of DC Motors" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Example 8.3 Page Dc-111" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "collapsed": false - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "speed of motion at half the torque= 1444.17 rpm\n" - ] - } - ], - "source": [ - "import math\n", - "\n", - "#variable declaration\n", - "U=230 #voltage(V)\n", - "Ia1=155 #current(A)\n", - "Rm_Rse=0.1#armature resistance(ohm)\n", - "N1=1000 #speed(rpm)\n", - "\n", - "#calculation\n", - "Ia2=round(Ia1/math.sqrt(2),1) #current(A)\n", - "Eb1=U-(Ia1*Rm_Rse) #voltage(V)\n", - "Eb2=U-(Ia2*Rm_Rse) #voltage(V)\n", - "N2=(Eb2/Eb1)*(Ia1/Ia2)*N1\n", - "print 'speed of motion at half the torque=',round(N2,2),'rpm'" - ] - } - ], - "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 -} |