create account

Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python] by drifter1

View this thread on: hive.blogpeakd.comecency.com
· @drifter1 · (edited)
$5.12
Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]
<html>
https://i.postimg.cc/1Xmc10FT/circuit-sim-series.jpg<br>
[Custom Thumbnail]<br>
All the Code of the series can be found at the <strong>Github repository</strong>:
https://github.com/drifter1/circuitsim
<hr>
<h1>Introduction</h1>&nbsp;&nbsp;&nbsp;&nbsp;Hello it's a me again @drifter1! Today we continue with the <strong>Electric Circuit Simulation series</strong>, a tutorial series where we will be implementing a full-on electronic circuit simulator (like SPICE) studying the whole concept and mainly physics behind it! In this article we will cover <strong>Electronic Circuits</strong> and more specifically:<br>
<ul>
<li>Resistor Combinations (Series, Parallel and Mixed)</li>
<li>Current and Voltage Dividers</li>
<li>Electronic Circuit Terminology</li>
<li>Kirchhoff's Laws</li>
<li>Electric Components (Active and Passive)</li>
<li>Capacitors and Inductors</li>
</ul>
<h2>Requirements:</h2>
<ul>
<li>Physics and more specifically <strong>Electromagnetism Knowledge</strong></li>
<li>Knowing <strong>how to solve Linear Systems</strong> using Linear Algebra</li>
<li>Some understanding of the <strong>Programming Language Python</strong></li>
</ul>
<h2>Difficulty:</h2>Talking about the <strong>series in general</strong> this series can be rated:
<ul><li>Intermediate to Advanced</li></ul>
<strong>Today's topic(s)</strong> can be rated:
<ul><li>Basic</li></ul>
<hr>
<h1>Actual Tutorial Content</h1>
<h2>Resistor Combinations</h2>&nbsp;&nbsp;&nbsp;&nbsp;Resistors can be combined together forming networks that are known as Resistor Combinations. Instead of having a dozen Resistors connected to each other in series, parallel or even mixed, we tend to calculate the so called <strong>Equivalent Resistance</strong> of them, which replaces many Resistors with a single one! To do that easily we think of the circuit as parts which have Resistors connected "in series" or "in parallel" and solve the whole problem in specific steps. So, let's get into these two cases and how we solve them, and also how we solve Mixed Problems...
<h3>Series</h3>&nbsp;&nbsp;&nbsp;&nbsp;Consider Resistors where Current flows through them <strong>sequentially</strong>, which means that all of them have the <strong>same Current</strong>, like in the following diagram:<br>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Resistors_in_series.svg/800px-Resistors_in_series.svg.png">
[<a href="https://commons.wikimedia.org/wiki/File:Resistors_in_series.svg">Image 1</a>]<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;The sum of the voltages of each resistor in such a combination is equal to the total voltage given by the voltage supply they are connected to. Therefore using Ohm's Law, we easily get the following equation for <strong>Equivalent Resistance</strong>:<br>
<img src="https://quicklatex.com/cache3/11/ql_58e187fcc2a43b8e180c2d3214ecef11_l3.png">
<h3>Parallel</h3>&nbsp;&nbsp;&nbsp;&nbsp;Consider Resistors that are <strong>connected directly to the same voltage source</strong>, meaning that they have the <strong>same Voltage</strong>, like in the following diagram:<br>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Resistors_in_parallel.svg/800px-Resistors_in_parallel.svg.png">
[<a href="https://commons.wikimedia.org/wiki/File:Resistors_in_parallel.svg">Image 2</a>]<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;In this case, the Current will split, making the total sum of the individual Current through each Resistor equal to the total "supplied" current. Using Ohm'w law again we end up with the following equation for the <strong>Equivalent Resistance</strong>:
<img src="https://quicklatex.com/cache3/10/ql_e13de9f4f3b889f1c355aa32cb733a10_l3.png">
<h3>Mixed</h3>From the previous two cases we know that:
<ul>
<li>Series Resistors have the same Current</li>
<li>Parallel Resistors have the same Voltage</li>
</ul>
&nbsp;&nbsp;&nbsp;&nbsp;In a mixed situation we just have to find these two types of connections and to substitute them with their individual equivalent resistance. For example think about the following diagram:<br>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Resistors_in_series_and_parallel.svg/529px-Resistors_in_series_and_parallel.svg.png"><br>
[<a href="https://commons.wikimedia.org/wiki/File:Resistors_in_series_and_parallel.svg">Image 3</a>]<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;Here R<sub>2</sub> and R<sub>3</sub> are connected in Parallel, whilst R<sub>1</sub> is connected in Series to each of them. So, we first have to calculate the equivalent Resistance of R<sub>2</sub> and R<sub>3</sub>, let's say R<sub>2,3</sub>, and then the equivalent resistance of R<sub>1</sub> and R<sub>2,3</sub>, lets' say R<sub>1,2,3</sub> or R<sub>eq</sub>. In equations this looks like this:<br>
<img src="https://quicklatex.com/cache3/58/ql_ae20a5e543a831a92f4888fe44d25c58_l3.png"><br><br>
For Resistor Combinations you can also check out my article:<br>
<a href="https://steemit.com/physics/@drifter1/physics-electromagnetism-resistor-combinations">Physics - Electromagnetism - Resistor Combinations</a>
<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;These equations will be quite useful in our simulator as we will be able to calculate equivalent resistances, as the impact of lots of Resistors in an electronic circuit can be measured by one Resistor that substitutes the others with an Equivalent Resistance...
<hr>
<h2>Current and Voltage Dividers</h2>&nbsp;&nbsp;&nbsp;&nbsp;Two quite useful circuits in Electronics are the so called Current and Voltage Dividers. As their name suggests, the first gives us the ability to divide the total current into fractional parts (think about Resistors in parallel), whilst the second gives us the ability to divide the total voltage into fractional parts (think about Resistors in series). Using specific formulas, someone can calculate the Current and Voltage respectively for specific parts of an circuits where such combinations occur. So, let's now get into how each of them and which Formula can be used to determine the Current and Voltage correspondingly...
<h3>Current Divider</h3>&nbsp;&nbsp;&nbsp;&nbsp;Suppose that we have some Resistors connected in Parallel. The current through the Resistor is equal to the voltage applied to it, which is also the same for all Resistors, divided by its Resistance. Thinking about the Equivalent Resistance R<sub>total</sub>, the voltage can also be written as a product between the total current times R<sub>total</sub>. So, the current that flows through any resistor n is:<br>
<img src="https://quicklatex.com/cache3/32/ql_6a1b24864ffd794c2eaae935e3a95532_l3.png"><br><br>
The Current Divider Formula
<h3>Voltage Divider</h3>&nbsp;&nbsp;&nbsp;&nbsp;Let's now suppose that we have some Resistors connected in Series. The voltage of each resistor is equal to the product of the current that flows through it, which is also the same for all of the resistors, times its Resistance. Knowing that the current is the same for all resistors, it's also the same when thinking about the Equivalent Resistance, and so we can write the total current as the division between the total voltage and equivalent Resistance. So, in the end we get:<br>
<img src="https://quicklatex.com/cache3/1d/ql_70c9ae563ab681e800559732cb3cf41d_l3.png"><br><br>
The Voltage Divider Formula
<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;These two equations can also become quite handy as we will be able to calculate the current and voltage respectively, knowing only the resistances and total current and voltage respectively!
<hr>
<h2>Electronic Circuit Terminology</h2>&nbsp;&nbsp;&nbsp;&nbsp;To understand the various terms that we will be using in our Electronic Circuit Analysis, we should give a small definition for the most important of them:
<ul>
<li><strong>Branch</strong>: A branch <strong>represents a single circuit element</strong> like a voltage source or a resistor and so any two-terminal element.</li>
<li><strong>Node</strong>: A node is the <strong>point of connection between two or more branches</strong>, and so circuit elements.</li>
<li><strong>Junction</strong>: A junction is the <strong>point where different wires are interconnected</strong>, which means that nodes could be made up of more than one junctions!</li>
<li><strong>Loop</strong>: A loop is <strong>any closed path in a circuit</strong>.</li>
<li><strong>Mesh</strong>: A mesh is <strong>a loop with no other loops inside it</strong>.</li>
</ul>
<br>
For example let's suppose that we have the following circuit schematic:<br>
<img src="https://i.postimg.cc/dQBVBhRL/Untitled.png"><br>
[<a href="https://www.khanacademy.org/science/electrical-engineering/ee-circuit-analysis-topic/circuit-elements/a/ee-circuit-terminology">Image 4</a>]<br><br>
These circuit has:<br>
<ul>
<li><strong>6 branches</strong>, cause there are five resistors and one voltage source, giving a total of 5 + 1 = 6 circuit elements</li>
<li><strong>4 nodes</strong>, connecting V0-R1, R1-R2-R3, R2-R4-R5 and V0-R3-R4-R5 correspondingly</li>
<li><strong>6 loops</strong>, the outer loop (V0-R1-R2-R5), three small loops (V0-R1-R3, R3-R2-R4, R4-R5) and two larger loops (V0-R1-R2-R4, R3-R2-R5)</li>
<li><strong>3 meshes</strong>, which are the three smaller loops (V0-R1-R3, R3-R2-R4, R4-R5)</li>
</ul>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;Understanding this terminology will be very important in the Mesh and Nodal Analysis that we will be starting from next time...
<hr>
<h2>Kirchhoff's Laws</h2>&nbsp;&nbsp;&nbsp;&nbsp;Anyone who did Electromagnetism in school or university has learned about Kirchhoff's Laws alongside Ohm's law. Let's refresh your knowledge about them!
<h3>KCL</h3>&nbsp;&nbsp;&nbsp;&nbsp;Kirchhoff's Current Law (KCL) tells us that <strong>the total current or charge entering a junction or node is equal to the charge leaving the node</strong>, cause the charge has no other place to go except to leave as no charge is lost within the node (conservation of charge). Mathematically this can be represented as:<br>
<img src="https://quicklatex.com/cache3/1f/ql_9cfaa5a39e98335ca66626330ab0811f_l3.png">
<h3>KVL</h3>&nbsp;&nbsp;&nbsp;&nbsp;Kirchhoff's Voltage Law (KVL) tells us that <strong>the total voltage around a loop is zero</strong> and equal to the sum of all the voltage drops within the same loop. Mathematically we have:<br>
<img src="https://quicklatex.com/cache3/13/ql_2f28bd6335d99dcae7cd0ca8650d6f13_l3.png">
<br><br>
To remember how we solve problems using KCL and KVL you can read my article:<br>
<a href="https://steemit.com/physics/@drifter1/physics-electromagnetism-kirchhoff-s-laws-with-applications">Physics - Electromagnetism - Kirchhoff's laws with applications</a>
<hr>
<h2>Electric Components</h2>&nbsp;&nbsp;&nbsp;&nbsp;Electric Components are split into two different categories:
<ol>
<li><strong>Active</strong>: Components which produce energy in form of Voltage or Current (e.g. independent voltage or current sources)</li>
<li><strong>Passive</strong>: Components which store or convert Energy in form of Voltage and Current (e.g. resistors, capacitors, inductors that convert into thermal, electric and magnetic energy correspondingly)</li>
</ol>
<hr>
<h2>Capacitors and Inductors</h2>&nbsp;&nbsp;&nbsp;&nbsp;Capacitors and Inductors are two very important circuit elements for Transient Analysis mostly, as their behavior is quite unique. I'm not sure if we will get into TA, in the moment, but why not give some basic knowledge about them?<br><br>
<h3>Capacitor</h3>&nbsp;&nbsp;&nbsp;&nbsp;A Capacitor is characterized by its property known as <strong>Capacitance</strong>, symbolized with C and calculated in Farad (F). This quantity is given by the equation:<br>
<img src="https://quicklatex.com/cache3/ea/ql_05bbac6bb1b26674ee22743fc0dd65ea_l3.png"><br><br>
&nbsp;&nbsp;&nbsp;&nbsp;Thinking about current, current is equal to the rate of change of charge over time, meaning that we can end up with the following Current-Voltage Relationship:<br>
<img src="https://quicklatex.com/cache3/ba/ql_7ea97f644c65875533cc7110936230ba_l3.png"><br><br>
The voltage can be given by the following integral:<br>
<img src="https://quicklatex.com/cache3/5a/ql_5501557d081805085cc5419b863cd85a_l3.png">
<h3>Inductor</h3>&nbsp;&nbsp;&nbsp;&nbsp;An Inductor is characterized by it's property known as <strong>Inductance</strong>, symbolized by L and calculated in Henry (H). For a coil this quantity is given by the equation:<br>
<img src="https://quicklatex.com/cache3/cb/ql_fd8136a06746a64b808783386306fdcb_l3.png"><br><br>
where: 
<ul>
<li>ΞΌ is is the magnetic permeability of the coil</li>
<li>N the number of turns of a coil</li>
<li>A the area of the coil</li>
<li>l the length of the coil</li>
</ul>
From Electromagnetic Induction we know that the Induced Voltage is given by:<br>
<img src="https://quicklatex.com/cache3/5c/ql_16c8fad19983cbd0c2b2ed59a772d05c_l3.png"><br><br>
Using this we can also calculate the current as an integral:<br>
<img src="https://quicklatex.com/cache3/18/ql_8ab777afbdea24bf09f982b4404e6118_l3.png"><br><br>
For more information around Capacitors you can also check out my articles:<br>
<a href="https://steemit.com/physics/@drifter1/physics-electromagnetism-capacitors-condensers-and-capacitance">Physics - Electromagnetism - Capacitors (Condensers) and Capacitance</a><br>
<a href="https://steemit.com/physics/@drifter1/physics-electromagnetism-how-to-solve-problems-around-capacitors">Physics - Electromagnetism - How to solve problems around Capacitors</a><br><br>
In the same way, for Inductors you can also check out:<br>
<a href="https://steemit.com/physics/@drifter1/physics-electromagnetism-self-induction">Physics - Electromagnetism - Self Induction</a>
<hr>
<h2>RESOURCES</h2>
<h3>References:</h3>
<ol>
<li>https://www.electronics-tutorials.ws/resistor/res_5.html</li>
<li>https://www.allaboutcircuits.com/textbook/direct-current/chpt-6/current-divider-circuits/</li>
<li>https://www.allaboutcircuits.com/textbook/direct-current/chpt-6/voltage-divider-circuits/</li>
<li>https://electrical-engineering-portal.com/electric-circuits-nodes-branches-loops</li>
<li>https://www.khanacademy.org/science/electrical-engineering/ee-circuit-analysis-topic/circuit-elements/a/ee-circuit-terminology</li>
<li>https://isaacphysics.org/concepts/cp_kirchhoffs_laws</li>
<li>https://www.electricaltechnology.org/2013/06/the-main-difference-between-active-and.html</li>
<li>https://www.codrey.com/dc-circuits/active-and-passive-elements/</li>
<li>https://www.electronics-tutorials.ws/capacitor/cap_1.html</li>
<li>https://www.electronics-tutorials.ws/inductor/inductor.html</li>
</ol>
<h3>Images:</h3>
<ol>
<li><a href="https://commons.wikimedia.org/wiki/File:Resistors_in_series.svg">https://commons.wikimedia.org/wiki/File:Resistors_in_series.svg</a></li>
<li><a href="https://commons.wikimedia.org/wiki/File:Resistors_in_parallel.svg">https://commons.wikimedia.org/wiki/File:Resistors_in_parallel.svg</a></li>
<li><a href="https://commons.wikimedia.org/wiki/File:Resistors_in_series_and_parallel.svg">https://commons.wikimedia.org/wiki/File:Resistors_in_series_and_parallel.svg</a></li>
<li>https://www.khanacademy.org/science/electrical-engineering/ee-circuit-analysis-topic/circuit-elements/a/ee-circuit-terminology</li>
</ol>
<br>
Mathematical Equations were made using <a href="https://www.quicklatex.com/">quicklatex</a>
<hr>
<h2>Previous parts of the series</h2>
<ul>
<li><a href="https://steemit.com/utopian-io/@drifter1/electronic-circuit-simulation-introduction-python">Introduction</a></li>
<li><a href="https://steemit.com/utopian-io/@drifter1/electronic-circuit-simulation-electromagnetism-background-part-1-python">Electromagnetism Background (part 1)</a></li>
</ul>
<hr>
<h2>Final words | Next up on the project</h2>&nbsp;&nbsp;&nbsp;&nbsp; And this is actually it for today's post! I hope that I helped you refresh your knowledge about Electronic Circuits! <br><br>
Next up on this series are the solving methods: <strong>Mesh and Nodal Analysis</strong>.<br><br>
So, see ya next time!
<hr>
<h2>GitHub Account:</h2>
https://github.com/drifter1<br>
https://steemitimages.com/0x0/https://media.giphy.com/media/ybITzMzIyabIs/giphy.gif
<br>
Keep on drifting! ;)
</html>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 56 others
properties (23)
authordrifter1
permlinkelectronic-circuit-simulation-electromagnetism-background-part-2-python
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io","tutorials","busy","programming","physics"],"users":["drifter1"],"links":["https://github.com/drifter1/circuitsim","/@drifter1","https://commons.wikimedia.org/wiki/File:Resistors_in_series.svg","https://commons.wikimedia.org/wiki/File:Resistors_in_parallel.svg","https://commons.wikimedia.org/wiki/File:Resistors_in_series_and_parallel.svg","https://steemit.com/physics/@drifter1/physics-electromagnetism-resistor-combinations","https://www.khanacademy.org/science/electrical-engineering/ee-circuit-analysis-topic/circuit-elements/a/ee-circuit-terminology","https://steemit.com/physics/@drifter1/physics-electromagnetism-kirchhoff-s-laws-with-applications","https://steemit.com/physics/@drifter1/physics-electromagnetism-capacitors-condensers-and-capacitance","https://steemit.com/physics/@drifter1/physics-electromagnetism-how-to-solve-problems-around-capacitors"],"image":["https://i.postimg.cc/1Xmc10FT/circuit-sim-series.jpg","https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Resistors_in_series.svg/800px-Resistors_in_series.svg.png","https://quicklatex.com/cache3/11/ql_58e187fcc2a43b8e180c2d3214ecef11_l3.png","https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Resistors_in_parallel.svg/800px-Resistors_in_parallel.svg.png","https://quicklatex.com/cache3/10/ql_e13de9f4f3b889f1c355aa32cb733a10_l3.png","https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Resistors_in_series_and_parallel.svg/529px-Resistors_in_series_and_parallel.svg.png","https://quicklatex.com/cache3/58/ql_ae20a5e543a831a92f4888fe44d25c58_l3.png","https://quicklatex.com/cache3/32/ql_6a1b24864ffd794c2eaae935e3a95532_l3.png","https://quicklatex.com/cache3/1d/ql_70c9ae563ab681e800559732cb3cf41d_l3.png","https://i.postimg.cc/dQBVBhRL/Untitled.png","https://quicklatex.com/cache3/1f/ql_9cfaa5a39e98335ca66626330ab0811f_l3.png","https://quicklatex.com/cache3/13/ql_2f28bd6335d99dcae7cd0ca8650d6f13_l3.png","https://quicklatex.com/cache3/ea/ql_05bbac6bb1b26674ee22743fc0dd65ea_l3.png","https://quicklatex.com/cache3/ba/ql_7ea97f644c65875533cc7110936230ba_l3.png","https://quicklatex.com/cache3/5a/ql_5501557d081805085cc5419b863cd85a_l3.png","https://quicklatex.com/cache3/cb/ql_fd8136a06746a64b808783386306fdcb_l3.png","https://quicklatex.com/cache3/5c/ql_16c8fad19983cbd0c2b2ed59a772d05c_l3.png","https://quicklatex.com/cache3/18/ql_8ab777afbdea24bf09f982b4404e6118_l3.png","https://steemitimages.com/0x0/https://media.giphy.com/media/ybITzMzIyabIs/giphy.gif"]}
created2019-04-16 19:45:54
last_update2019-04-16 19:48:36
depth0
children5
last_payout2019-04-23 19:45:54
cashout_time1969-12-31 23:59:59
total_payout_value3.984 HBD
curator_payout_value1.136 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16,214
author_reputation98,202,866,830,354
root_title"Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,218,282
net_rshares8,782,789,966,374
author_curate_reward""
vote details (120)
@portugalcoin ·
$6.70
Thank you for your contribution @drifter1.
We have been analyzing your tutorial and we suggest the following points:

- Tutorial very well explained and structured. Good job.

- We are curious about the practical part of the electronic circuit simulation.

Thank you for your work in developing this tutorial.
Looking forward to your upcoming tutorials.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/3-1-1-1-3-4-1-4-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorportugalcoin
permlinkre-drifter1-electronic-circuit-simulation-electromagnetism-background-part-2-python-20190416t212524684z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["drifter1"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-1-1-1-3-4-1-4-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-04-16 21:25:24
last_update2019-04-16 21:25:24
depth1
children1
last_payout2019-04-23 21:25:24
cashout_time1969-12-31 23:59:59
total_payout_value5.118 HBD
curator_payout_value1.578 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length805
author_reputation598,828,312,571,988
root_title"Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,222,599
net_rshares11,306,926,319,649
author_curate_reward""
vote details (21)
@utopian-io ·
Thank you for your review, @portugalcoin! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-drifter1-electronic-circuit-simulation-electromagnetism-background-part-2-python-20190416t212524684z-20190418t234751z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-04-18 23:47:54
last_update2019-04-18 23:47:54
depth2
children0
last_payout2019-04-25 23:47:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation152,955,367,999,756
root_title"Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,354,753
net_rshares0
@steem-ua ·
#### Hi @drifter1!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
πŸ‘  
properties (23)
authorsteem-ua
permlinkre-electronic-circuit-simulation-electromagnetism-background-part-2-python-20190416t220942z
categoryutopian-io
json_metadata"{"app": "beem/0.20.19"}"
created2019-04-16 22:09:42
last_update2019-04-16 22:09:42
depth1
children0
last_payout2019-04-23 22:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation23,214,230,978,060
root_title"Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,224,490
net_rshares14,619,496,982
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @drifter1! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@drifter1/votes.png?201904171622</td><td>You made more than 21000 upvotes. Your next target is to reach 22000 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@drifter1) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=drifter1)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
πŸ‘  
properties (23)
authorsteemitboard
permlinksteemitboard-notify-drifter1-20190417t172444000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-04-17 17:24:42
last_update2019-04-17 17:24:42
depth1
children0
last_payout2019-04-24 17:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length879
author_reputation38,975,615,169,260
root_title"Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,270,951
net_rshares14,356,781,623
author_curate_reward""
vote details (1)
@utopian-io ·
Hey, @drifter1!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
πŸ‘  
properties (23)
authorutopian-io
permlinkre-electronic-circuit-simulation-electromagnetism-background-part-2-python-20190417t120947z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-04-17 12:09:51
last_update2019-04-17 12:09:51
depth1
children0
last_payout2019-04-24 12:09:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation152,955,367,999,756
root_title"Electronic Circuit Simulation - Electromagnetism Background (part 2) [Python]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,255,509
net_rshares15,003,002,482
author_curate_reward""
vote details (1)