Et1210: module 4 ac and capacitor fundamentals

 

 

 

 

 

ET1210: Module 4 AC and Capacitor Fundamentals Exercise 4.1 Magnetic Induction and Capacitors

 

1

 

 

 

 

1. Calculate the frequency for each of the following periods:

 

a. 1 s

 

b. 0.2 s

 

c. 50 ms

 

d. 1 ms

 

e. 500 ms

 

f. 10 ms

 

2. A sine wave goes through 5 cycles in 10 ms. What is its period?

 

3. For a particular 0° reference sinusoidal current, the peak value is 100 mA. Determine the instantaneous value at each of the following points:

 

a. 35°

 

b. 95°

 

c. 190°

 

d. 215°

 

e. 275°

 

f. 360°

4. Determine the rms voltage across Rз in the following figure.

 

ET1210: Module 4 AC and Capacitor Fundamentals Exercise 4.1 Magnetic Induction and Capacitors

 

 

 

 

2

 

 

 

 

 

 

 

5. Determine the rms value and the frequency of the sine wave displayed on the scope screen in the following figure.

 

6. a. Find the capacitance when Q = 50 mC and V = 10 V.

 

b. Find the charge when C = 0.001 mF and V = 1 kV.

 

c. Find the voltage when Q = 2 mC and C = 200 μF.

 

d. Find the capacitance when Q = 50 mC and V = 10 V.

 

7. Convert the following values from picofarads to microfarads:

 

a. 1000 pF

 

b. 3500 pF

 

c. 250 pF

8. A student decides to construct a capacitor using two conducting plates 30 cm on a side. He separates the plates with a paper dielectric (er = 2.5) that is 8 x 10–5 m thick. What is the capacitance of his capacitor?

 

ET1210: Module 4 AC and Capacitor Fundamentals Exercise 4.1 Magnetic Induction and Capacitors

 

 

 

 

3

 

 

 

 

 

 

 

9. Find the total capacitance for each circuit in the following figure.

 

10. Determine the total capacitance and total charge on the capacitors in the following figure.

 

11. Determine the time constant for each of the following series RC combinations:

 

a. R = 100 Ω, C = 1 μF

 

b. R = 10 MΩ, C = 56 pF

 

c. R = 4.7 kΩ, C = 0.0047 μF

 

d. R = 1.5 MΩ, C = 0.01 μF

ET1210: Module 4 AC and Capacitor Fundamentals Exercise 4.1 Magnetic Induction and Capacitors

 

 

 

 

4

 

 

 

 

 

 

 

12. In the circuit of the following figure, the capacitor is uncharged initially. Determine the capacitor voltage at the following times after the switch is closed:

 

a. 10 μs

 

b. 20 μs

 

c. 30 μs

 

d. 40 μs

 

e. 50 μs

 

13. Ideally, what should the reactance of a bypass capacitor be in order to eliminate a 10 kHz ac voltage at a given point in an amplifier circuit?

 

14. An 8 kHz sinusoidal voltage is applied to a series RC circuit. What is the frequency of the voltage across the resistor? Across the capacitor?

 

15. Find the impedance of each circuit in the following figure.

 

16. Calculate the total current in each circuit of the figure in question no. 15.

ET1210: Module 4 AC and Capacitor Fundamentals Exercise 4.1 Magnetic Induction and Capacitors

 

 

 

 

5

 

 

 

 

 

 

 

17. Determine the impedance and the phase angle in the following figure.

 

18. For the parallel circuit in the following figure, find each branch current and the total current. What is the phase angle between the source voltage and the total current?

19. The circuit in the following figure is a complex circuit consisting of five components. With trigonometry, it can be shown that R1, R2, C2, and C3 are equivalent to a resistance of 3.08 V in series with a capacitive reactance of 39.5 V. From this given information, determine the voltages across each component in the original circuit.

 

ET1210: Module 4 AC and Capacitor Fundamentals Exercise 4.1 Magnetic Induction and Capacitors

 

 

 

 

6

 

 

 

 

 

 

 

20. Find the current through each branch and the total current in the following figure.

Source: Floyd, T. L., & Buchla, D. M. (2013). DC/AC fundamentals: A systems approach (1st ed.). Upper Saddle River, NJ: Prentice Hall.

 

Submission Requirements: Submit your answers in a Microsoft Word document. The submission should use:

 

 

 Font: Arial; 12-point

 

 Line spacing: Double

Evaluation Criteria: Your submission will be evaluated against the following criteria:

 

 

 Did you include appropriate steps or rationales to determine the answers to questions wherever required?

Did you correctly answer each question?

 

Case study crime scene | Science homework help

In the attachment, you will find photographs of a crime scene that has some challenges. You will be asked to analyze these photographs and provide a paper (minimum 600 words) detailing the challenges and how, exactly, to overcome these challenges to process the crime scene safely. You should also explain in detail all of the safety issues at this scene, including the dangers to the processing personnel as well as explain how the CSI and detective personnel can examine the scene and recover evidence safely.

 

Note: Remember, it is a paper, therefore you need an introduction and a conclusion and a minimum of five references (make sure you cite in text and then list the references in APA in your bibliography at the end of the paper). 

 

a sequential search member function of sorted type has the following

1. A sequential search member function of Sorted Type has the following prototype: void Sorted Type::Search( int value, bool & found);

a. Write the function definition as a recursive search, assuming a linked list implementation.

b. Write the function definition as a recursive search, assuming an array based implementation.

2. We want to count the number of possible paths to move from row 1, column 1 to row N, column N in a two-dimensional grid. Steps are restricted to going up or to the right, but not diagonally. The illustration that follows shows three of many paths, if N = 10:

a. The following function, NumPaths, is supposed to count the number of paths, but it has some problems. Debug the function.

int NumPaths(int row, int col, int n)

{

if (row == n)

return 1;

else

if (col == n)

return NumPaths + 1;

else

return NumPaths(row + 1, col) * NumPaths(row, col + 1);

}

b. After you have corrected the function, trace the execution of NumPaths with

n = 4 by hand. Why is this algorithm inefficient?

c. You can improve the efficiency of this operation by keeping intermediate values of NumPaths in a two-dimensional array of integer values. This approach keeps the function from having to recalculate values that it has already figured out. Design and code a version of NumPaths that uses this approach.

d. Show an invocation of the version of NumPaths you developed in part (c), including any array initialization necessary.

e. How do the two versions of NumPaths compare in terms of time efficiency? Space efficiency?

Politics on film analysis | Social Science homework help

Compare and contrast the: 3 movies Birth of a Nation, Mr. Smith Goes to Washington, and Citizen Kane. Discuss the political content of these films. What is the political message of each movie? Hoe does the film reflect social and political reality of the era? What was the political impact of these movies at the time of their release?  PLEASE add your interpretation of how politics was reflected and resolved in film. DO NOT provide a plot summation of the movies. Analyze the political content and intent contained in these films. 

 

– Answer to the essay question is 3-5 pages ( TNR 12 point, double spaced. 

– Cite all material 

– Use direct quotes sparingly.

Doscussion on research at least two articles on the topic of big data

Delivering a high-quality product at a reasonable price is not enough anymore.

That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Romero and juliet theme | Literature homework help

 

1.  THEMATIC DEVELOPMENT

 

We are reading Romeo and Juliet this week in order to better understand some of its more important themes and how these themes are deployed in the play.  Using some of the literary terminology that you have learned this week, identify one of the following themes and write about its development in the play.  Romeo and Juliet is about: class conflict; a dysfunctional society; patriarchal oppression of women; generational conflict; the pathology of violence in society; imagination vs. reality; the destructiveness of love; free will vs. fate.

 

 

 

2.  SCRIPT TO SCREEN

 

Choose one of the following film adaptations:

 

Gnomeo & Juliet (2011), Chicken Rice War (2000), Romeo Must Die (2000), Romeo + Juliet (1996), Romeo and Juliet(1968), Romeo and Juliet (1966), West Side Story (1961), Romeo and Juliet (1954), Romeo and Juliet (1936).

 

After carefully reading Romeo and Juliet the play, carefully watch one of the adaptations (you will need to rent the film from Amazon, Netflix, etc., if it is not on YouTube); it is better of you watch it twice.  Then compose a comparison and contrast of the play and film.  In what ways does the film change the play?  Remain faithful to it?  Bring it to life?  Make it relevant for modern society?  Offer a cogent thematic interpretation

 

 

 

https://umuc.equella.ecollege.com/file/6895a1fc-44ec-4cf4-8bc7-542c7828964d/1/The%20Tragedy%20of%20Romeo%20and%20Juliet.pdf

 

http://www.william-shakespeare.info/william-shakespeare-dictionary.htm

 

http://www.sandhills.edu/academic-departments/english/film/narrativearc.html

 

https://www.cla.purdue.edu/english/theory/narratology/terms/narrativetermsmainframe.html

 

https://twp.duke.edu/uploads/assets/film.pdf

 

Phi 103 week 4 discussion 1 – fallacies and biases

Once you learn the names of the major logical fallacies, you will probably start noticing them all over the place, including in advertisements, movies, TV shows, and everyday conversations. This can be both fascinating and frustrating, but it can certainly help you to avoid certain pitfalls in reasoning that are unfortunately very common. This exercise gives you a chance to practice identifying fallacies as they occur in daily life. 

Prepare: To prepare to address this prompt, carefully read through Chapter 7 of our book, paying special attention to learning the names of common fallacies, biases, and rhetorical tricks. Take a look as well at the required resources from this week. 

Reflect: Search through common media sources looking for examples of fallacies. Some common places to find fallacies include advertisements, opinion pieces in news media, and arguments about politics, religion, and other controversial issues. You may also notice fallacies in your daily life.

Write: Present three distinct informal logical fallacies you have discovered in these types of sources or in your life. Make sure to identify the specific fallacy committed by each example. Explain how the fallacies were used and the context in which they occurred. Then, explain how the person should have presented the argument to have avoided committing this logical error. 

Guided Response: Read the fallacies presented by your classmates and analyze the reasoning that they have presented. Respond in a way that furthers the discussion. For example, you might comment on any of the following types of questions: Have ever seen or fallen for similar fallacies in your own life? Are any of the cases presented also instances of some other type of fallacy? Is there a sense in which the reasoning might not be fallacious in some cases? What can people do to avoid falling for such fallacies in the future?

Hlt-302 week 8 benchmark – spiritual needs assessment

This assignment requires you to interview one person and requires an analysis of your interview experience. 

 

Part I: Interview

 

Select a patient, a family member, or a friend to interview. Be sure to focus on the interviewee’s experience as a patient, regardless of whom you choose to interview.

 

Review The Joint Commission resource which provides some guidelines for creating spiritual assessment tools for evaluating the spiritual needs of patients. Using this resource and any other guidelines/examples that you can find, create your own tool for assessing the spiritual needs of patients.

 

Create a survey to assess the subject’s spiritual need during the interview. The spiritual needs assessment survey needs a minimum of five questions that can be answered during the interview.  During the interview, document the interviewee’s responses.

 

Submit the transcript of the interview. The transcript should include the questions asked and the answers provided.  Be sure record the responses during the interview by taking detailed notes. Omit specific names and other personal information from the interview. 

 

Part II: Analysis

 

Write a 500-750 word analysis of your interview experience. Be sure to exclude specific names and other personal information from the interview. Instead provide demographics such as sex, age, ethnicity, and religion. Include the following in your response:

  1. What went well?
  2. What would you do differently in the future?
  3. Were there any barriers or challenges that inhibited your ability to complete the assessment tool? How would you address these in the future or change your assessment to better address these challenges?
  4. Describe the spiritual experience you had with your patient, family member, or friend using this tool. How does this tool allow you to better meet the needs of your patient?
  5. Did you discover that illness and stress amplified the spiritual concern and needs of your interviewee?  Explain your answer with examples.

Submit both the transcript of the interview and the analysis of your results.

 

Prepare this assignment according to the APA guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is not required.

 

This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.

 

You are required to submit this assignment to Turnitin. Please refer to the directions in the Student Success Center.

please use excel spreadsheet for complete info 1. grand

                                              Please use Excel spreadsheet for complete info                                                                                                                                  1. Grand Adventure Properties offers a 8 percent coupon bond with annual payments. The yield to maturity is 6.85 percent and the maturity date is 8 years from today. What is the market price of this bond if the face value is $1,000?                       $951.69                                            $1,069.07                                            $1,077.18                                            $877.51                                            $1,020.76                                                                                                                                                                                   3. A Japanese company has a bond outstanding that sells for 89 percent of its ¥100,000 par value. The bond has a coupon rate of 4.8 percent paid annually and matures in 19 years.                                                                         What is the yield to maturity of this bond? (Do not round intermediate calculations and enter your answer as a percent rounded to 2 decimal places, e.g., 32.16.)                                                                                                                                                                                                                  10. Central Systems, Inc. desires a weighted average cost of capital of 9 percent. The firm has an after-tax cost of debt of 6 percent and a cost of equity of 12 percent. What debt-equity ratio is needed for the firm to achieve its targeted weighted average cost of capital?                   1                                            1.17                                            0.9                                            1.1                                            0.83                                                                                                                                                                                                                                                                             11. Miller Manufacturing has a target debt–equity ratio of .50. Its cost of equity is 15 percent, and its cost of debt is 6 percent. If the tax rate is 34 percent, what is the company’s WACC? (Do not round intermediate calculations and enter your answer as a percent rounded to 2 decimal places, e.g., 32.16.)                                                                                                                                                                                                                                                                                              12. Filer Manufacturing has 5 million shares of common stock outstanding. The current share price is $84, and the book value per share is $7. The company also has two bond issues outstanding. The first bond issue has a face value $60 million, a coupon of 7 percent, and sells for 94 percent of par. The second issue has a face value of $35 million, a coupon of 8 percent, and sells for 107 percent of par. The first issue matures in 22 years, the second in 4 years.                                                                                            13. Titan Mining Corporation has 9.7 million shares of common stock outstanding and 410,000 –4 percent semiannual bonds outstanding, par value $1,000 each. The common stock currently sells for $45 per share and has a beta of 1.35, and the bonds have 10 years to maturity and sell for 116 percent of par. The market risk premium is 8.5 percent, T-bills are yielding 5 percent, and the company’s tax rate is 35 percent.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

My guitar shop database problems

This assignment uses the database create_my_guitar_shop.sql

 (Links to an external siteWrite all queries and answer all questions using this database. Save all of your scripts in Notepad and upload to Canvas. Identify each script for each of use. Preferably save your Notepad file with the .sql file extension.