summaryrefslogtreecommitdiff
path: root/sample_notebooks
diff options
context:
space:
mode:
authorTrupti Kini2016-06-11 23:30:39 +0600
committerTrupti Kini2016-06-11 23:30:39 +0600
commit55477762cbb4edbc41a02638aeafd5aae22a0010 (patch)
tree472a2bc21be5d5c517dd4c85bc65684b09bddec7 /sample_notebooks
parent59a36d896ee95ac3215648464259a55a7f8f9c83 (diff)
downloadPython-Textbook-Companions-55477762cbb4edbc41a02638aeafd5aae22a0010.tar.gz
Python-Textbook-Companions-55477762cbb4edbc41a02638aeafd5aae22a0010.tar.bz2
Python-Textbook-Companions-55477762cbb4edbc41a02638aeafd5aae22a0010.zip
Added(A)/Deleted(D) following books
A sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb
Diffstat (limited to 'sample_notebooks')
-rw-r--r--sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb71
1 files changed, 71 insertions, 0 deletions
diff --git a/sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb b/sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb
new file mode 100644
index 00000000..3fff6821
--- /dev/null
+++ b/sample_notebooks/AzagumozhiMadhaiyan/Chapter_8_.ipynb
@@ -0,0 +1,71 @@
+{
+ "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
+}