summaryrefslogtreecommitdiff
path: root/Grobs_Basic_Electronics_by_M_E_Schultz/Chapter6.ipynb
blob: 5ad419754dd6719d8c8e08378f55b495c5d22cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Chapter 6 : Series-Parallel Crcuits"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example No. 6_1 Page No.  194"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The Unknown Resistance Rx = 564.20 ohms\n"
     ]
    }
   ],
   "source": [
    "# The Current in M1 reads 0 \u0002A with the standard resistor RS adjusted to 5642 Ohms\u0002. What is the value of the unknown resistor Rx?\n",
    "\n",
    "# Given data\n",
    "\n",
    "Rs = 5642.#          # Standard Resistor=5642 Ohms\n",
    "R1 = 1.*10**3#        # Resistor 1=1k Ohms\n",
    "R2 = 10.*10**3#       # Resistor 2=10k Ohms\n",
    "\n",
    "Rx = Rs*(R1/R2)#\n",
    "print 'The Unknown Resistance Rx = %0.2f ohms'%Rx"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example No. 6_2 Page No.  195"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The Unknown Resistance Rx(max) = 999.90 Ohms\n"
     ]
    }
   ],
   "source": [
    "# what is the maximum unknown resistance Rx that can be measured for the ratio arm values shown?\n",
    "\n",
    "# Given data\n",
    "\n",
    "Rsmax = 9999.#      # Standard Resistor(max)=9999 Ohms\n",
    "R1 = 1.*10**3#       # Resistor 1=1k Ohms\n",
    "R2 = 10.*10**3#       # Resistor 2=10k Ohms\n",
    "\n",
    "Rxmax = Rsmax*(R1/R2)#\n",
    "print 'The Unknown Resistance Rx(max) = %0.2f Ohms'%Rxmax"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example No. 6_3 Page No.  197"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The Resistance R(AB) = 100.00 ohms\n"
     ]
    }
   ],
   "source": [
    "# Assume that the series-parallel circuit in Fig. 6–15a has failed. A technician troubleshooting the circuit has measured the following voltages: V1 = 10.8 V# VAB = 9 V# V4 = 16.2 V. These voltage readings are shown in Fig. 6–15b. Based on the voltmeter readings shown, which component is defective and what type of defect does it have?\n",
    "\n",
    "# Given data\n",
    "\n",
    "V1 = 10.8#      # Voltage at R1=10.8 Volts\n",
    "Vab = 9.0#        # Voltage at point (AB)=9 Volts\n",
    "V4 = 16.2#      # Voltage at R4=16.2 Volts\n",
    "R1 = 120.0#       # Resistor 1=120 Ohms\n",
    "\n",
    "\n",
    "It = V1/R1#\n",
    "Rab = Vab/It#\n",
    "print 'The Resistance R(AB) = %0.2f ohms'%Rab\n",
    "\n"
   ]
  }
 ],
 "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.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 0
}