Quotes help make search much faster. Example: "Practice Makes Perfect"
Showing posts with label Series Resistor. Show all posts
Showing posts with label Series Resistor. Show all posts
Saturday, May 19, 2012
Computing the value of a series resistor
Question: Determine series resistance needed to convert a galvanometer to a voltmeter reading 15V on full scale deflection if a current of 2.5 mA causes full scale deflection and the resistance of the coil is 10 ohms?
Answer:
V original meter max = (I full scale deflection) x (R meter) = (2.5 mA) x (10 ohms) = 25 mV
Using the voltage divider principle:
(V original meter max)/(V adjusted meter max)=(R meter)/(R meter + R series)
(25 mV) / (15 V) = (10 ohms) / (10 ohms + R series)
R series = 5990 ohms
Use of a Series Resistor
Question: What device is used to extend the range of a DC voltmeter and how is it connected to the basic meter?
Answer:
A resistor connected in series to the voltmeter can be used to extend the voltmeter's range.
Labels:
Answers to Problems,
Resistance,
Series Resistor,
Voltmeter
Subscribe to:
Posts (Atom)
This is an example of scrolling text using Javascript.
Popular Posts
-
favorite_animal ||= "dog" favorite_animal ||= "cat"
-
//sample solution def isEven(x): if(x % 2 == 0): return "yep" else: return "nope"
-
$("#tours > li")
-
<!-- Sample solution to index.html --> <!DOCTYPE html> <html> <body> <div class="nav"> ...
-
#sample solution def favorite_actors(*actors): """Prints out your favorite actorS (plural!)""" pr...
-
Answer: Alt - p p stands for previous. If you keep pressing Alt - p, you will continue cycling back through commands you typed before. I...
-
#sample solution grades = [100, 100, 90, 40, 80, 100, 85, 70, 90, 65, 90, 85, 50.5] def grade_sum(grades): sum = 0 for grade in gra...
-
<DOCTYPE! html> <html> <head> <link rel="text/javascript" href="script.js" /> ...
-
$("span").text("$100")
-
var req = new XMLHttpRequest(); req.onreadystatechange = function() { if (req.readyState == 4 && req.status == 200) { console...