From 680d88758fa56798d0cd89ab95c8062c4b2cb690 Mon Sep 17 00:00:00 2001 From: Trupti Kini Date: Thu, 7 Jul 2016 23:30:28 +0600 Subject: Added(A)/Deleted(D) following books A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter1.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter10.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter13.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter14.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter15.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter2.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter3.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter4.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter5.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter6.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter7.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter8.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter9.ipynb A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/screenshots/Screenshot_(88).png A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/screenshots/Screenshot_(89).png A Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/screenshots/Screenshot_(90).png A "sample_notebooks/PRAVEENKUMAR C/STATICS_CHAPTER_1.ipynb" --- .../chapter1.ipynb | 111 +++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter1.ipynb (limited to 'Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter1.ipynb') diff --git a/Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter1.ipynb b/Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter1.ipynb new file mode 100644 index 00000000..d34682ed --- /dev/null +++ b/Basic_Electronics_(Electronics_Engineering)_by_J.B.Gupta/chapter1.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 +} -- cgit