Find resistance of wheatstone bridge

Susan Sarandon
Release: 2024-10-13 06:09:03
Original
366 people have browsed it

Find resistance of wheatstone bridge

Find unknown resistance of Wheatstone bridge, Rx(=R in code)

The equation of Rx is below.

Rx = Rk * R2 / R1

Proportion of R2 and R1 is R2_R1 in code.

Making function.

def Find_the_resistance (Rk, R2_R1) :
    R = Rk * R2_R1
    d.append(R)

Copy after login

I put experimental values in lists, a and b.(9 times experiments)

List c has theoretical values.

List d has the result of the function

Error rate : (experimental value - theoretical value) / theoretical value * 100

a = [147, 464, 14, 47, 2180, 8100, 5570, 1470, 4620]
b = [10, 10, 100, 100, 0.1, 0.1, 0.1, 1, 1]
c = [1470, 4520, 1470, 4520, 217, 810, 557, 1470, 4520]
d = []
Copy after login

range(starting number, ending number). It doesn't include the ending number but ending number - 1

Computer counts numbers from 0 not 1. Don't forget it!(I said it for myself. XD)

for i in range(0, 9) :
    Find_the_resistance(a[i], b[i])
    print((d[i] - c[i]) / c[i] * 100)
    i = i+1
Copy after login

The above is the detailed content of Find resistance of wheatstone bridge. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!