File:Three PWM types.svg

Description

Three methods to generate an intersective pwm: leading edge modulation, trailing edge modulation or centered modulation. The reference signal is a sine wave, not plotted. See Image:Pwm.svg for more information.

Created in maxima using the following code.

trailsignal(t) := t - floor(t);
leadsignal(t) := ceiling(t)-t;
centersignal(t) := 2*abs(t-floor(t-1/2)-1);
freq : 0.05;
sinesignal(t) := (1/2) + (499/1000)*sin(2*%pi*freq*t);
pwmlead(t) := (if(leadsignal(t) > sinesignal(t)) then 0.0 else 1.0);
pwmtrail(t) := (if(trailsignal(t) > sinesignal(t)) then 0.0 else 1.0);
pwmcenter(t) := (if(centersignal(t) > sinesignal(t)) then 0.0 else 1.0);
load(draw);
draw(terminal=svg,file_name="Three_PWM_types",
    gr2d(yrange=[-0.25,1.25],nticks=20,grid=true,
        user_preamble="set mxtics;set format x "";
             set origin 0,0.67; set size 1,.3;set bmargin 0; 
             set tmargin 0",font="Times",
        ylabel="lead",ytics={0,1},axis_bottom=false,
        color=green,explicit(leadsignal(x),x,0,19),
        color=blue,explicit(pwmlead(x),x,0,19)),
    gr2d(yrange=[-0.25,1.25],nticks=20,grid=true,
        user_preamble="set mxtics;set format x "";
             set origin 0,0.37",font="Times",
        ylabel="trail",ytics={0,1},axis_bottom=false,
        color=green,explicit(trailsignal(x),x,0,19),
        color=blue,explicit(pwmtrail(x),x,0,19)),
    gr2d(yrange=[-0.25,1.25],nticks=20,grid=true,
        user_preamble="set mxtics;set format x "%1.0f T";
             set origin 0,.07",font="Times",
        ylabel="center",ytics={0,1},
        color=green,explicit(centersignal(x),x,0,19),
        color=blue,explicit(pwmcenter(x),x,0,19))
    );
Date (UTC)
Source
Author
This is a retouched picture, which means that it has been digitally altered from its original version. Modifications: recreated in vector graphics using maxima.. The original can be viewed here: Three types.png: . Modifications made by Krishnavedala.

Category:SVG retouched pictures from raster#Three%20PWM%20types.svg
I, the copyright holder of this work, hereby publish it under the following licenses:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 2.5 Generic, 2.0 Generic and 1.0 Generic license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-2.5,2.0,1.0#Three%20PWM%20types.svg
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
This licensing tag was added to this file as part of the GFDL licensing update.
Category:CC-BY-SA-3.0-migrated#Three%20PWM%20types.svg
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
Category:License migration redundant#Three%20PWM%20types.svgCategory:GFDL#Three%20PWM%20types.svg
You may select the license of your choice.
Category:Self-published work

Original upload log

This image is a derivative work of the following images:

  • File:Three_types.png licensed with Cc-by-sa-2.5,2.0,1.0, Cc-by-sa-3.0-migrated, GFDL
    • 2006-05-07T17:59:14Z CyrilB 1500x1050 (94800 Bytes) {{Information| |Description=three methods to generate an intersective pwm: leading edge modulation, trailing edge modulation or centered modulation |Source=own work, made with gnuplot 4.0 |Date=7/05/06 |Author=Cyril BUTTAY |P

Uploaded with derivativeFX Category:Uploaded with derivativeFX

Category:Gnuplot graphics Category:Power electronic diagrams Category:Pulse width modulation
Category:CC-BY-SA-2.5,2.0,1.0 Category:CC-BY-SA-3.0-migrated Category:GFDL Category:Gnuplot graphics Category:License migration redundant Category:Power electronic diagrams Category:Pulse width modulation Category:SVG retouched pictures from raster Category:Self-published work Category:Uploaded with derivativeFX