Effacer les filtres
Effacer les filtres

how to generate full wave rectified sine wave?

37 vues (au cours des 30 derniers jours)
thar
thar le 2 Mar 2014
how to generate full wave rectified sine wave of frequency 2KHz, amplitude +/- 0.2 and duration of 1 millisecond ?

Réponse acceptée

Mischa Kim
Mischa Kim le 2 Mar 2014
Modifié(e) : Mischa Kim le 2 Mar 2014
Hello Thar, attach an Abs (for absolute) block from the Math Operations library to the Sine Wave generator (Sources). In the Sine Wave block you can define the signal parameters (frequency, amplitude). 1 ms would be the simulation stop time.
Similarly, in MATLAB,
t = 0:1e-5:1e-3;
y = abs(0.2 * sin(2*pi*2e3*t));
plot(t,y)

Plus de réponses (3)

Yahia Abouzahra
Yahia Abouzahra le 15 Mar 2019
t = 0:1e-5:1e-3;
y = abs(0.2 * sin(2*pi*2e3*t));
plot(t,y)

Vipin K Mishra
Vipin K Mishra le 3 Oct 2016

ABIJITH MANTHRAVALAPPIL MURALEEDHARAN
how should we calculate diode current in full wave bridge rectifier RL LOad
to plot diode graph

Catégories

En savoir plus sur Specialized Power Systems dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by