1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Svetach [21]
3 years ago
10

Design a filter that has infinite DC gain, a gain of one from 1Hz to 100 Hz and filters (1storder) any signals above 100 Hz.a) S

ketch the bode plotb) Sketch the s-planec) write the transfer function of the filterd) write the differential equatione) write out the unforced transient responsef) write out the frequency response
Engineering
1 answer:
EastWind [94]3 years ago
4 0

Answer:

Attached below are the  sketches

answer :

c) G(s) = 100 / ( s + 100 )

d) y'(t)  + 100Y(s) = 100 X(s)

e) g(t) = e^-100t  u(t)

Explanation:

a) Sketch the bode plot

The filter here is a low pass filter

b) Sketch the s-plane

attached below.     pole ( s ) is at 100

c) write the transfer function of the filter

Transfer function ; G(s) = 100 / ( s + 100 )

d) write the differential equation

Y(s) / X(s) = 100 / s + 100

Y(s) [ s + 100 ] = 100 X(s)

= sY(s) + 100Y = 100 X(s)

∴ differential equation = y'(t)  + 100Y(s) = 100 X(s)

e) write out the unforced transient response

g(t) = e^-100t  u(t)

f) write out the frequency response

attached below

You might be interested in
The boost converter of Fig. 6-8 has parameter Vs 20 V, D 0.6, R 12.5 , L 10 H, C 40 F, and the switching frequency is 200 kHz. (
mr Goodwill [35]

Answer:

a) the output voltage is 50 V

b)

- the average inductor current is 10 A

- the maximum inductor current is 13 A

- the maximum inductor current is 7 A

c) the output voltage ripple is 0.006 or 0.6%V₀

d) the average current in the diode under ideal components is 4 A

Explanation:

Given the data in the question;

a) the output voltage

V₀ = V_s/( 1 - D )

given that; V_s = 20 V, D = 0.6

we substitute

V₀ = 20 / ( 1 - 0.6 )

V₀ = 20 / 0.4

V₀ = 50 V

Therefore, the output voltage is 50 V

b)

- the average inductor current

I_L = V_s / ( 1 - D )²R

given that R = 12.5 Ω, V_s = 20 V, D = 0.6

we substitute

I_L = 20 / (( 1 - 0.6 )² × 12.5)

I_L = 20 / (( 0.4)² × 12.5)

I_L = 20 / ( 0.16 × 12.5 )

I_L = 20 / 2

I_L = 10 A

Therefore, the average inductor current is 10 A

- the maximum inductor current

I_{Lmax = [V_s / ( 1 - D )²R] + [ V

given that, R = 12.5 Ω, V_s = 20 V, D = 0.6, L = 10 μH, T = 1/200 kHz = 5 hz

we substitute

I_{Lmax = [20 / (( 1 - 0.6 )² × 12.5)] + [ (20 × 0.6 × 5) / (2 × 10) ]

I_{Lmax = [20 / 2 ] + [ 60 / 20 ]    

I_{Lmax = 10 + 3

I_{Lmax = 13 A

Therefore, the maximum inductor current is 13 A

- The minimum inductor current

I_{Lmax = [V_s / ( 1 - D )²R] - [ V

given that, R = 12.5 Ω, V_s = 20 V, D = 0.6, L = 10 μH, T = 1/200 kHz = 5 hz

we substitute

I_{Lmin = [20 / (( 1 - 0.6 )² × 12.5)] - [ (20 × 0.6 × 5) / (2 × 10) ]

I_{Lmin = [20 / 2 ] -[ 60 / 20 ]    

I_{Lmin = 10 - 3

I_{Lmin  = 7 A

Therefore, the maximum inductor current is 7 A

 

c)  the output voltage ripple

ΔV₀/V₀ = D/RCf

given that; R = 12.5 Ω, C = 40 μF = 40 × 10⁻⁶ F, D = 0.6, f = 200 Khz = 2 × 10⁵ Hz

we substitute

ΔV₀/V₀ = 0.6 / (12.5 × (40 × 10⁻⁶) × (2 × 10⁵) )

ΔV₀/V₀ = 0.6 / 100

ΔV₀/V₀ = 0.006 or 0.6%V₀

Therefore, the output voltage ripple is 0.006 or 0.6%V₀

d) the average current in the diode under ideal components;

under ideal components; diode current = output current

hence the diode current will be;

I_D = V₀/R

as V₀ = 50 V and R = 12.5 Ω

we substitute

I_D = 50 / 12.5

I_D = 4 A

Therefore, the average current in the diode under ideal components is 4 A

7 0
3 years ago
Which of the following requirement statements is an example of a breakdown of the accuracy standard?
const2013 [10]

Answer:

<u>The automobile rental prices shall show all taxes (including a 6% state tax).</u>

Explanation:

Im pretty sure

4 0
2 years ago
Write the following decorators and apply them to a single function (applying multiple decorators to a single function): 1. The f
natita [175]

Answer:

Complete question is:

write the following decorators and apply them to a single function (applying multiple decorators to a single function):

1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”

2. The decorator will return the wrapper per usual.

3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.

4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.

5. Apply both decorators (by @ operator to greetings()).

6. Invoke the greetings() function and capture the result.

Code :

def strong_decorator(func):

def func_wrapper(name):

return "<strong>{0}</strong>".format(func(name))

return func_wrapper

def em_decorator(func):

def func_wrapper(name):

return "<em>{0}</em>".format(func(name))

return func_wrapper

@strong_decorator

@em_decorator

def Greetings(name):

return "{0}".format(name)

print(Greetings("Hello"))

Explanation:

5 0
3 years ago
The status of which of these determines the sequence in which output devices, such as solenoid values and motor contactors, are
Mkey [24]
A. Physical I/O sensors

Safety switches, operator inputs, travel limit switches etc
5 0
3 years ago
What is differentiation​
oksian1 [2.3K]

Answer:

the action or process of differentiating or distinguishing between two or more things or people.

7 0
2 years ago
Other questions:
  • According to the zeroth law of thermodynamics, which of the following cannot occur?
    7·1 answer
  • The mechanical properties of a metal may be improved by incorporating fine particles of its oxide. Given that the moduli of elas
    11·1 answer
  • Thermosetting polymers are polymers that becomes soft and pliable when heated. ( True , False )
    8·2 answers
  • In the contemporary approach to control systems, benefits of continuous monitoring include which one of the following? Multiple
    9·1 answer
  • How does flextape adhere under water?​
    8·1 answer
  • Print reading for industry unit 9 review questions
    6·2 answers
  • An airplane flies horizontally at 80 m/s. Its propeller delivers 1300 N of thrust (forward force) to overcome aerodynamic drag (
    15·1 answer
  • Question Completion Status:
    6·1 answer
  • Can someone tell me what car, year, and model this is please
    15·2 answers
  • What’s the answer???
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!