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
|
{
"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
}
|