summaryrefslogtreecommitdiff
path: root/sample_notebooks/VinayBadhan
diff options
context:
space:
mode:
authorTrupti Kini2016-06-19 23:30:31 +0600
committerTrupti Kini2016-06-19 23:30:31 +0600
commitbcfdba28ef6597f80f5cac083492c27daac80b35 (patch)
treec90924d5f2850aac781d9034fa197f8276f0d35a /sample_notebooks/VinayBadhan
parentd8aa31632d10cab5a599115290a6c702512a3cd5 (diff)
downloadPython-Textbook-Companions-bcfdba28ef6597f80f5cac083492c27daac80b35.tar.gz
Python-Textbook-Companions-bcfdba28ef6597f80f5cac083492c27daac80b35.tar.bz2
Python-Textbook-Companions-bcfdba28ef6597f80f5cac083492c27daac80b35.zip
Added(A)/Deleted(D) following books
A Electrical_Network_by_R._Singh/Chapter10_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter11_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter12_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter1_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter2_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter3_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter4_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter6_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter7_1_1.ipynb A Electrical_Network_by_R._Singh/Chapter8_1_1.ipynb A Electrical_Network_by_R._Singh/screenshots/Chapter4.png A Electrical_Network_by_R._Singh/screenshots/Chapter6.png A Electrical_Network_by_R._Singh/screenshots/Chapter7.png A sample_notebooks/VinayBadhan/sample.ipynb
Diffstat (limited to 'sample_notebooks/VinayBadhan')
-rw-r--r--sample_notebooks/VinayBadhan/sample.ipynb111
1 files changed, 111 insertions, 0 deletions
diff --git a/sample_notebooks/VinayBadhan/sample.ipynb b/sample_notebooks/VinayBadhan/sample.ipynb
new file mode 100644
index 00000000..d34682ed
--- /dev/null
+++ b/sample_notebooks/VinayBadhan/sample.ipynb
@@ -0,0 +1,111 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter 1 , Introductory Concepts"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 1.4 , Page Number 23"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Equivalent voltage source is 100.0 V.\n"
+ ]
+ }
+ ],
+ "source": [
+ "#Variables\n",
+ "\n",
+ "IS = 4.0 #Current (in Ampere)\n",
+ "Rin = 25.0 #Resistance (in ohm)\n",
+ "\n",
+ "#Calculation\n",
+ "\n",
+ "Voc = IS * Rin #Voltage (in volts) \n",
+ "\n",
+ "#Result\n",
+ "\n",
+ "print \"Equivalent voltage source is \",Voc,\" V.\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 1.5 , Page Number 23"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Current in 28 ohm resistor is 2.0 A.\n"
+ ]
+ }
+ ],
+ "source": [
+ "#Variables\n",
+ "\n",
+ "R1 = 4.0 #Resistance (in ohm)\n",
+ "R2 = 8.0 #Resistance (in ohm)\n",
+ "RS = 28.0 #Resistance (in ohm)\n",
+ "V1 = 40.0 #Voltage (in volts)\n",
+ "V2 = 40.0 #Voltage (in volts)\n",
+ "\n",
+ "#Calculation\n",
+ "\n",
+ "Rnet = R1 + R2 + RS #Net resistance (in ohm)\n",
+ "Vnet = V1 + V2 #Net voltage (in volts) \n",
+ "I = Vnet / Rnet #Current (in Ampere)\n",
+ "\n",
+ "#Result\n",
+ "\n",
+ "print \"Current in 28 ohm resistor is \",I,\" A.\""
+ ]
+ }
+ ],
+ "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.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}