|
|||||||
| Home | Forums | Rules | Articles | Store | Gallery | Blogs | Register | Donations | FAQ | Calendar | Search | Today's Posts | Mark Forums Read | Search |
| Class D Switching Power Amplifiers and Power D/A conversion |
|
Please consider donating to help us continue to serve you.
Ads on/off / Custom Title / More PMs / More album space / Advanced printing & mass image saving |
|
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#41 | |
|
diyAudio Member
Join Date: Jun 2005
Location: Cape Town
|
Quote:
__________________
There’s nothing worse than the smell of burned output transistors!! |
|
|
|
|
#42 |
|
diyAudio Member
Join Date: Jun 2005
Location: Cape Town
|
Some progress:
Moving along swiftly... and reading other material on the forum going back two years ago (and lots of patience) ... vie made it until this point with no smoke or component death... The following is the from the MGD IR2110 (Notice the overshot on the yellow trace its a bad probe , i swopped it around and it didn't show up need get a better probe) No dead-time has been employed (for now) .. vie grounded PIN VS to (-V 21) to give symmetrical output from the driver just to debug the switching nodes and observe switching behavior. IR2011 Outputs are switching cleanly between 800mv to 13.8V with no noise artifacts ( taking into consideration its an old bread board ) Using a for 15V regulator i wonder if should step it up to something like an 18V regulator.. will it give better switching results as the gate is charged more effectively.
__________________
There’s nothing worse than the smell of burned output transistors!! |
|
|
|
#43 | |||
|
diyAudio Member
Join Date: Dec 2003
Location: Munich
|
Quote:
The signal without ringing is looking by far to slow to be the correct output of an unloaded IR2110. With the shown time scale the sloping times of the IR should be a perfect real vertical step, invisible rise time. In your screen shot we can guess 100-200ns, but the IR typically slopes unloaded within 20ns. The round edges of the trace make me guess that the concerned probe is pretty slow, or not adjusted correctly. The trace with ringing could be correct. It is rising fast, fitting to IR. It shows ringing, fitting to breadboards. Another option could be that both wave forms are not fully correct, if both probes are not perfectly adjusted. Note, fast probes sometimes have two adjustments. Quote:
Offset? Do you get really zero, when shorting the probe? Quote:
Last but not least, unnecessary high drive voltages will result in unnecessary gate drive losses. P.S. Basically your signals do look reasonable.
|
|||
|
|
|
#44 | |
|
diyAudio Member
Join Date: Jun 2005
Location: Cape Town
|
Quote:
I'm sure the doesn't exists from the breadboard the (red) probe reads a clean switching events.. see below ![]() The signals from the IR2110 are starting to look great (and professional ) at the moment vie re-calibrated my scope and probes, the results show a clean switch betweenLOW0.0mV HIGH 13.40V As for the gate drive voltage increase idea, i will stay with the existing 13+ volts feeding the mosfets, I'm just about introduce the dead-time, its set to 130ns (I guess this is to high) but, for now testing its okay i will reduce dead-time to 50ns or so later as well as switching frequency at a later stage.I don't feel the need to switch the modulator this fast ie: (255Khz) reducing this as well to 150Khz maybe later.. I'm starting to get nervous, as its almost time to introduce the mosfets vie got a pair of IRF640 laying on my desk (yes for now i will use them and upgrade to something better at a later stage)
__________________
There’s nothing worse than the smell of burned output transistors!! Last edited by Reactance; 21st February 2012 at 08:03 PM. |
|
|
|
|
#45 |
|
diyAudio Member
Join Date: Jun 2005
Location: Cape Town
|
Just looked at some entries on the forum regarding dead-time was really dead simple to follow using RCD approach after the XOR gates set to 140ns
This is the results after introducing dead-time (Note: ignore the yellow probe overshot i will replace this probe) (I know its awfully high) ![]()
__________________
There’s nothing worse than the smell of burned output transistors!! |
|
|
|
#46 |
|
diyAudio Member
Join Date: Dec 2003
Location: Munich
|
Yup, here the red one is looking blameless and sloping speed would also fit to the IR driver.
Definitely nice! |
|
|
|
#47 | |
|
diyAudio Member
Join Date: Jun 2005
Location: Cape Town
|
Quote:
excitement tells me to wire up the mosfets now but common sense tells me i cant concentrate now, i feel vie achieved enough today will look at the mosfets and LP filter over the next few days i know the real fun and headaches only starts when the filter and signal drive is applied to the circuit... Thanks for the assistance thus far Chocolate !
__________________
There’s nothing worse than the smell of burned output transistors!! |
|
|
|
|
#48 | |
|
diyAudio Member
|
Quote:
btw: I'm working in hybrid digital/analog PFC now, with analog current loop and a novel digital voltage loop. Next step will be fully-digital single-micro PFC, specially designed for single stage audio SMPS (excellent transient response without tons of bulk capacitance or very poor P.F.). In a world of finite resources, part counts and the cost of each part must be kept low, while getting as much as possible out of each part and the the topology. This requires developing complex control algorithms. The ideal electronics designer of 21st century must be a skilled programmer too. Too much specialization makes you weak and easy to exploit by unfair employers (people willing to eran 10 times more money than you with 10 times less skills, no mercy on them! I'm with 15M people)
__________________
I use to feel like the small child in The Emperor's New Clothes tale
Last edited by Eva; 22nd February 2012 at 01:54 AM. |
|
|
|
|
#49 | |
|
diyAudio Member
Join Date: Jun 2005
Location: Cape Town
|
Quote:
) The idea of the IIR and FIR filter with ADC is great however, can one do low pass filter DSP using an 8-bit uC using the ones you mentioned above ?? Ive looked at the filter coefficients and ALL of them use double precision, 8-Bit MCU memory cant store word lengths this wide can it?? confused face ![]() FilterShop looks great really amazing tool looking at that now...
__________________
There’s nothing worse than the smell of burned output transistors!! Last edited by Reactance; 22nd February 2012 at 06:50 AM. |
|
|
|
|
#50 |
|
diyAudio Member
|
There are many shortcuts for making simple digital filters with 8 bit micros, using fixed point and replacing the multiplications by shift and add/sub operations. This is a simple 6dB/oct IIR LPF. It's called a "recursive filter" when done that way:
LPF_ACCU-=LPF_ACCU>>S LPF_ACCU+=NEW_VALUE LPF_OUTPUT=LPF_ACCU>>S And this little basic program tells you filter cutoff depending on S and FS (sampling freq.) 10 FS=1000:S=8 20 SC=(-1/LOG(1-1/2^S)):TC=SC/FS:FC=1/(2*3.1415*TC) 30 PRINT "Fs=";FS;" S=";S;" Sc=";SC;" Tc=";TC;" FC=";FC Another application of this code is to get extra precision out of the ADC by oversampling and then LPF. 2^n oversampling adds n/2 bits of precision at the output of the LPF. Keep this info for later. You still have a lot of work to do to get class D working.
__________________
I use to feel like the small child in The Emperor's New Clothes tale
Last edited by Eva; 22nd February 2012 at 01:53 PM. |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Level shift | jeppson | Class D | 14 | 7th May 2011 08:40 PM |
| Need help choosing level shift and inverter | levelshift | Class D | 4 | 27th March 2011 05:47 PM |
| CCS in Differential phase splitter? | roline | Tubes / Valves | 11 | 18th December 2010 08:40 PM |
| Zero phase-shift | gareth | Solid State | 11 | 9th May 2008 04:45 PM |
| CCS in tail of differential phase splitter | ray_moth | Tubes / Valves | 12 | 28th January 2004 04:26 PM |
| New To Site? | Need Help? |