Post Reply 
41 voltage divider calculation
11-09-2022, 05:57 AM
Post: #7
RE: 41 voltage divider calculation
(02-13-2017 07:17 AM)Ángel Martin Wrote:  
Code:
05  RCL 01

This should rather be:
Code:
05  RCL 02

It is the lower resistor R2.

\(
\begin{align}
U_o = U_i \frac{R_2}{R_1 + R_2}
\end{align}
\)

Compare this to the original program where UO is calculated:
Code:
42 LBL 22
43 RCL 01
44 RCL 03
45 RCL 04
46 +
47 /
48 RCL 04
49 *
50 STO 02
51 RTN

Just keep in mind that the registers correspond to different variables:
R01: UI
R02: UO
R03: R1
R04: R2
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
41 voltage divider calculation - damaltor - 02-09-2017, 02:49 PM
RE: 41 voltage divider calculation - Thomas Klemm - 11-09-2022 05:57 AM



User(s) browsing this thread: 1 Guest(s)