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
-
//Sample Solution const gameState = {} function preload() { this.load.image('codey', 'https://s3.amazonaws.com/codecademy-...
-
//sample solution function guessNumber(number, clue) { // Prompt the user for a number using the string value of clue guess = promp...
-
//sample solution //Here is the original card object var card1 = {"suit":"clubs", "rank": 8}; //Create a...
-
#sample solution def colorful_conditions(): color = "blue" if color == "red": return "firs...
-
function checkAnswerWrongPlace(ans, realanswer){ // This method compares two input strings representing a player's guess ("an...
-
Instruction: Find the id of the flights whose distance is below average for their carrier. Sample Solution: SELECT id FROM flights AS f...
-
# note: The instructions state to use "text.txt" but an error comes up stating that the file does not exist # as a work around, ...
-
# Sample Solution # Import packages import numpy as np import pandas as pd # Read in transactions data transactions = pd.read_csv(...
-
# Sample Solution from song_data import songs import numpy as np q1 = np.quantile(songs, 0.25) #Create the variables q3 and interquarti...
-
/*sample solution for style.css*/ body > p { background: green; } p { background: yellow; }