Author Topic: QCW ramp generator  (Read 6883 times)

Offline hammertone

  • High Voltage Enthusiast
  • *
  • Posts: 28
  • Karma: +9/-0
    • View Profile
QCW ramp generator
« on: November 26, 2019, 12:32:27 PM »
All,

From time to time, I have been approached with a request to share my QCW ramp generator code.
Everybody should be enabled to build a QCW coil, even though they cannot write code, so here it is:  * QCW_ramp_generator.zip

I know that my shot at the code is probably clumsy at best (I imagine some math and code wizzard getting it done in just one line) , but it is functional, so who cares.

Included is a simple schematic, which I include, because I want to emphasize the need for, and beauty of, hardware debounching of the inputs.

So, please enjoy, and go build that QCW

Cheers, Finn Hammer

Offline shrad

  • High Voltage Experimenter
  • **
  • Posts: 54
  • Karma: +1/-0
    • View Profile
Re: QCW ramp generator
« Reply #1 on: November 27, 2019, 08:46:22 PM »
Hi there

I think you can use binary shift operators in a loop for this, which would be nice

basic use is that it will binary shift a value by a power of 2 : 8 >> 1 = 16, 32 << 2 = 8, etc... so if you do a loop until a treshold value is reached, this is very practical

Offline hammertone

  • High Voltage Enthusiast
  • *
  • Posts: 28
  • Karma: +9/-0
    • View Profile
Re: QCW ramp generator
« Reply #2 on: November 28, 2019, 10:44:29 AM »
Shrad,

Thanks for your suggestion.

As you can probably read in my code, I am at a very basic level. Only recently did I get comfortable with interrupts, direct port manipulation and messing with timer prescale.
The bitwise stuff is over my head, at the moment, unfortunately.

Cheers, Finn Hammer

Offline shrad

  • High Voltage Experimenter
  • **
  • Posts: 54
  • Karma: +1/-0
    • View Profile
Re: QCW ramp generator
« Reply #3 on: November 29, 2019, 12:07:18 PM »
Thats really simple

imagine an array of 8 bits with a min value of 00000001 and a max value of 10000000 and a logic level of 5V

00000001 is initial value       = V*(1/256) = 0.019V
00000001 >> 1 = 00000010 = V*(1/128) = 0.03V
00000010 >> 1 = 00000100 = V*(1/64) = 0.07V
00000100 >> 1 = 00001000 = V*(1/32) = 0.15V
00001000 >> 1 = 00010000 = V*(1/16) = 0.31V
00010000 >> 1 = 00100000 = V*(1/8) = 0.625V
00100000 >> 1 = 01000000 = V*(1/4) = 1.25V
01000000 >> 1 = 10000000 = V*(1/2) = 2.5V

the rest is thinking of an algorithm which will, in your loop, add shifts to get the steps you want... I'm pretty sure you could find a sketch somewhere that generates a ramp using this technique

you can also use the binary value from 2 to 256 to do some masks (with OR or XOR) on a value to generate another, etc...
from my days of learning microcontroller assembly we played with excel and did some graphs of the values to try different patterns of led flashing, like K2000 and others

Offline Netzpfuscher

  • High Voltage Technician
  • ***
  • Posts: 137
  • Karma: +13/-0
    • View Profile
Re: QCW ramp generator
« Reply #4 on: November 29, 2019, 12:34:45 PM »
In a time where a micro controller is so powerful you don't need such "tricks". The ramp of your suggestion lacks a good resolution 8 steps ^^ With a calculation you can generate ramps with higher resolution. If a micro is to slow for a realtime generation of the ramp, I would calculate a lookup table in RAM and play it back in the loop. If the timebase is changed you simply read the LUT slower or faster. If you want, you can save arbitrary waveforms. If you need to save RAM I would make a smaller LUT and interpolate linearly between the points. 

In general, write good readable code and leave the optimization to the compiler. A actual compiler is very smart ^^. If you realy need processing power go to the next bigger micro.


In the UD3 the 64Mhz Cortex-M3 does everything, Ethernet, Synthesizer, Serial, Telemetry and has 80% of CPU unused  :o

Offline shrad

  • High Voltage Experimenter
  • **
  • Posts: 54
  • Karma: +1/-0
    • View Profile
Re: QCW ramp generator
« Reply #5 on: November 29, 2019, 12:57:16 PM »
you are absolutely right, but knowing this helps with some notions

however, I would reserve lookup tables to things that require floating point math or real arbitrary like you said

a ramp is even easier with a pwm module which will do everything for you without interfering with CPU after initial setup

nowadays programming is done without taking care of doing things properly just because there is plenty of power and resources are not a problem anymore, so modularity and maintainability are not always the best

the best thing to do is to make functions that are modular, that you can test separately, and define things with clarity in mind

and refactor your code whenever you have a doubt

Offline hammertone

  • High Voltage Enthusiast
  • *
  • Posts: 28
  • Karma: +9/-0
    • View Profile
Re: QCW ramp generator
« Reply #6 on: November 30, 2019, 12:45:22 PM »
Netzpfuscher,

Your viewpoint about compilers and the power of modern micro controllers align with mine, but perhaps It would be a good idea to measure what resolution my code gets me on a 16Mhz  ATMega 328P

AT first I set the ramp to 12.8mS:


After that, I zoom in on a single PWM cycle, which shows good correlation between what is expected and what is being done.
Pulse frequency is 31.25 kHz and pulsewidth is 32mS.
This also reveals that there will be 400 PWM cycles on that ramp : which is fine within the 8 bits expected.




First of course, I zoom into the positive pulseform and set the cursors at the flanks



Now comes the benefit of this fantastic digital scope. ( which was also increadible cheap,  at 400 € ! )

Conveniently, it captures the full waveform, even though I am zoomed in to 5µS/S so with the horizontal position knob, I can roll the signal, and count how many pulses in succession that shares the same pulsewidth:



The number is 5, so the resolution is a paltry 80 steps on this 12.8mS long ramp, resulting in a resolution of between 6 and 7 bits.

Looking at the ramp in well smoothed form:


You can actually count the steps, and considering that:

1) The signal has to be transmitted over inexpensive fiber optic
2) It forms the reference of a Hysteretic buck converter that switches around 10-15 kHz (at the best)

I would say that the code is sufficient.

(But I really would like to see each cycle increment, instead of only each 5th. so I will try to load the code into faster processors).

(( But the really smart thing to do would probably be to take a c++ programming course, and free myself from the constraints of the analogWrite macro ))

Cheers, Finn Hammer
« Last Edit: November 30, 2019, 01:09:04 PM by hammertone »

Offline shrad

  • High Voltage Experimenter
  • **
  • Posts: 54
  • Karma: +1/-0
    • View Profile
Re: QCW ramp generator
« Reply #7 on: November 30, 2019, 02:26:53 PM »
the read and write functions of arduino are well known to be unefficient, a lookup table with a direct binary copy with DMA would be far more efficient, if it is available on your configuration

Offline hammertone

  • High Voltage Enthusiast
  • *
  • Posts: 28
  • Karma: +9/-0
    • View Profile
Re: QCW ramp generator
« Reply #8 on: November 30, 2019, 04:28:34 PM »
Shrad,

The analogue functions , at least, are slow.
The digitalWriteFast and digitalReadFast macros are almost as fast as direct port manipulation, however:

I do not understand how a lookup table can help me to generate a linear ramp, where both length and amplitude are variables read from potentiometers, so I will try another approach, which I found just now:

I will try to calculate dutycycle in an ISP that gets called from an interrupt set by every cycle, perhaps that will give me maximum resolution, eg, every successive pwm pulse will increment, instead of every 5th as now.
There are 476 clock cycles between each pwm cycle, so there should be plenty of time to calculate the ratios.

Cheers, Finn Hammer

Offline shrad

  • High Voltage Experimenter
  • **
  • Posts: 54
  • Karma: +1/-0
    • View Profile
Re: QCW ramp generator
« Reply #9 on: November 30, 2019, 06:12:28 PM »
a technique I was using is the timer interrupt which ticks when a counter reaches zero (or something like that, I did this 10 years ago)... if you copy the pot value to the counter each time interrupt ticks, you will have an efficient variable delay

during the interrupt routine you also have the time to increment your lookup and configure your PWM value with it which will give you a step

the interrupt delay defines the slope of your ramp and can be any interrupt source you can configure, if the counter doesnt suit your needs

if you want the maximum resolution, it will depend on the PWM module and the interrupt time, but I guess you will be able to reach shorter times if you don't analog read a pot but rather increment or decrement a value by steps with a button push (which can also generate an interrupt to reset the ramp)

for amplitude, I would rather use an opamp at the output

Offline hammertone

  • High Voltage Enthusiast
  • *
  • Posts: 28
  • Karma: +9/-0
    • View Profile
Re: QCW ramp generator
« Reply #10 on: December 14, 2019, 03:05:48 PM »
The 328P will deliver 8 bits resolution at 32kHz, which is more than sufficient.
Loading the code into a Due, it is possible to do 9 bits at 160kHz
The Teensy 4.0, which is another animal, alltogether, is happy to turn out 10 bits at 600kHz, so there really is no need to change the code, there is a rich variety of processors to serve the resolution you want.

Looking for fiber optic transmitters and receivers, I think that the HFBR-1527Z Transmitter HFBR-2526Z Receiver 125 Megabaud Versatile Link hardware, with their sub 10nS rise and fall times are the best suited,

When the teensy is running at 600kHz, the pulsewidth of the wick is around 150nS, so it will be able to transmit all 3 solutions with fidelity.

Cheers, Finn Hammer
« Last Edit: December 14, 2019, 03:14:29 PM by hammertone »

Offline Rafft

  • High Voltage Technician
  • ***
  • Posts: 148
  • Karma: +3/-0
  • Electronics Hobbyist - HV n00b - FPV Dr0n3 Pil0t
    • View Profile
Re: QCW ramp generator
« Reply #11 on: November 05, 2021, 07:57:19 AM »
Finn

Huge thanks for the Interrupter + ramp!

here is mine. playing around with the pot/s, I now have a better undersdtanding how QCW should work(mainly on the buck side).
still ironing out what BUCK to use though. Im just aiming for a tabletop version. battery powered (16.8v) to 50v - 100v (for now)

P.S. that is just the filtered PWM output, not the buck  :)



cheers,
Ralph
« Last Edit: November 05, 2021, 08:11:42 AM by Rafft »
SGTC / SSTC / DR-SSTC / QCW

High Voltage Forum

Re: QCW ramp generator
« Reply #11 on: November 05, 2021, 07:57:19 AM »

 


* Recent Topics and Posts

post Re: Big Coil Build Log
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
Today at 05:47:34 AM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
davekni
Today at 04:45:07 AM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
MRMILSTAR
Today at 04:18:27 AM
post Push Pull VTTC
[Vacuum Tube Tesla Coils (VTTC)]
janno288
Today at 01:10:08 AM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
Alberto
March 27, 2024, 10:54:52 PM
post Re: CM400 Induction Heater
[Electronic Circuits]
markus
March 27, 2024, 11:53:42 AM
post Re: OCD Triggering Early + Low Output
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 27, 2024, 05:14:36 AM
post Re: Is the UD2.7C under voltage lock out basically worthless?
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 27, 2024, 04:47:48 AM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 27, 2024, 04:41:59 AM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
alan sailer
March 27, 2024, 12:04:34 AM
post Re: Super flat QCW simulation (does this look reasonable?)
[Dual Resonant Solid State Tesla coils (DRSSTC)]
toooldforthis
March 26, 2024, 11:08:14 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 26, 2024, 11:07:20 PM
post Re: Is the UD2.7C under voltage lock out basically worthless?
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 26, 2024, 10:46:29 PM
post OCD Triggering Early + Low Output
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Saattvik24
March 26, 2024, 09:03:43 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
alan sailer
March 26, 2024, 08:46:59 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
March 26, 2024, 05:02:18 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
alan sailer
March 26, 2024, 03:16:03 PM
post Re: CM400 Induction Heater
[Electronic Circuits]
Anders Mikkelsen
March 26, 2024, 01:41:49 PM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 26, 2024, 04:48:22 AM
post Re: Re-chargeable 1.5 volt lithium ion AAA batteries
[General Chat]
MRMILSTAR
March 26, 2024, 04:16:37 AM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 26, 2024, 04:16:24 AM
post Re: Smoke Screen Machine Protect 950 XP - Teardown of a Smoke Cannon!
[Electronic Circuits]
davekni
March 26, 2024, 04:13:02 AM
post Re: CM400 Induction Heater
[Electronic Circuits]
davekni
March 26, 2024, 04:00:43 AM
post Re: Re-chargeable 1.5 volt lithium ion AAA batteries
[General Chat]
davekni
March 26, 2024, 03:19:18 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
thedoc298
March 26, 2024, 01:50:42 AM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
March 25, 2024, 08:05:02 PM
post Re: Smoke Screen Machine Protect 950 XP - Teardown of a Smoke Cannon!
[Electronic Circuits]
Mads Barnkob
March 25, 2024, 07:41:29 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
alan sailer
March 25, 2024, 06:45:46 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
March 25, 2024, 05:44:25 PM
post Re: CM400 Induction Heater
[Electronic Circuits]
Anders Mikkelsen
March 25, 2024, 04:47:17 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
alan sailer
March 25, 2024, 04:27:22 PM
post Re-chargeable 1.5 volt lithium ion AAA batteries
[General Chat]
MRMILSTAR
March 25, 2024, 03:57:34 PM
post Re: CM400 Induction Heater
[Electronic Circuits]
markus
March 25, 2024, 02:06:41 PM
post Re: Odd MOSFET Driver Behavior
[Solid State Tesla Coils (SSTC)]
KrisPringle
March 25, 2024, 04:43:25 AM
post Re: Odd MOSFET Driver Behavior
[Solid State Tesla Coils (SSTC)]
davekni
March 25, 2024, 02:39:40 AM
post Re: Odd MOSFET Driver Behavior
[Solid State Tesla Coils (SSTC)]
KrisPringle
March 25, 2024, 12:47:09 AM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
Alberto
March 24, 2024, 07:36:32 PM
post Re: My completed 14-stage Cockroft-Walton voltage multiplier
[Voltage Multipliers]
Alberto
March 24, 2024, 07:27:24 PM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
MRMILSTAR
March 24, 2024, 04:25:23 AM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
Alberto
March 23, 2024, 10:47:35 PM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
MRMILSTAR
March 23, 2024, 09:30:21 PM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
Alberto
March 23, 2024, 04:34:31 PM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
MRMILSTAR
March 23, 2024, 03:04:25 PM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
Alberto
March 23, 2024, 01:38:34 PM
post Re: capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
MRMILSTAR
March 23, 2024, 04:20:03 AM
post Re: Welcome new members, come say hello and tell a little about yourself :)
[General Chat]
davekni
March 23, 2024, 12:54:30 AM
post Re: Smoke Screen Machine Protect 950 XP - Teardown of a Smoke Cannon!
[Electronic Circuits]
davekni
March 23, 2024, 12:05:57 AM
post capacitor and diodes. Voltage values for a CW
[Voltage Multipliers]
Alberto
March 22, 2024, 11:45:03 PM
post Re: Welcome new members, come say hello and tell a little about yourself :)
[General Chat]
OmGigaTron
March 22, 2024, 11:30:09 PM
post Smoke Screen Machine Protect 950 XP - Teardown of a Smoke Cannon!
[Electronic Circuits]
Mads Barnkob
March 22, 2024, 10:20:35 PM
post Re: Where's all this voltage coming from?
[Spark Gap Tesla Coils (SGTC)]
Benbmw
March 22, 2024, 09:21:13 PM
post Re: What actually kills MOSFETs?
[Beginners]
AstRii
March 22, 2024, 03:37:11 PM
post What actually kills MOSFETs?
[Beginners]
FPS
March 22, 2024, 05:09:20 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 22, 2024, 03:57:54 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 22, 2024, 02:59:25 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 21, 2024, 06:31:42 PM
post Re: 2x Panasonic Inverter Microwaves - what to salvage, dangers?
[General Chat]
rikkitikkitavi
March 21, 2024, 03:08:01 PM
post Re: [WTS] IGBT, Ferrite, Capacitors, Tools, PSU, Industrial components and parts
[Sell / Buy / Trade]
Mads Barnkob
March 21, 2024, 01:37:32 PM
post Re: Difference between these transformers
[Transformer (Ferrite Core)]
Alberto
March 21, 2024, 11:42:07 AM
post Re: Phase Lead Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 21, 2024, 04:09:14 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 21, 2024, 02:15:31 AM
post My Homemade Structural Analysis X-Ray Machine
[X-ray]
Luca c.
March 21, 2024, 01:35:40 AM
post Re: Phase Lead Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Saattvik24
March 20, 2024, 10:40:00 PM
post Re: Difference between these transformers
[Transformer (Ferrite Core)]
Mads Barnkob
March 20, 2024, 08:03:41 PM
post Re: 2x Panasonic Inverter Microwaves - what to salvage, dangers?
[General Chat]
Mads Barnkob
March 20, 2024, 07:51:57 PM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Mads Barnkob
March 20, 2024, 10:39:47 AM
post Re: Phase Lead Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
March 20, 2024, 04:09:59 AM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 20, 2024, 01:13:23 AM
post Re: Phase Lead Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Keybored
March 20, 2024, 12:45:16 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
March 20, 2024, 12:30:30 AM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 19, 2024, 11:12:24 PM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Late
March 19, 2024, 09:47:49 PM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Late
March 19, 2024, 09:44:19 PM
post Phase Lead Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Saattvik24
March 19, 2024, 06:52:09 PM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
March 19, 2024, 05:02:44 PM
post Re: Welcome new members, come say hello and tell a little about yourself :)
[General Chat]
Mads Barnkob
March 19, 2024, 05:01:41 PM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Mads Barnkob
March 19, 2024, 04:31:02 PM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Mads Barnkob
March 19, 2024, 03:59:54 PM
post Re: Benjamin's DRSSTC 2 in progress
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
March 19, 2024, 06:41:39 AM
post Re: Welcome new members, come say hello and tell a little about yourself :)
[General Chat]
davekni
March 19, 2024, 04:05:49 AM
post Re: Welcome new members, come say hello and tell a little about yourself :)
[General Chat]
OmGigaTron
March 18, 2024, 09:08:35 PM
post Re: Can I Trust This Super Cheap Site?
[General Chat]
2020-Man
March 18, 2024, 09:07:35 PM
post Re: Can I Trust This Super Cheap Site?
[General Chat]
Twospoons
March 18, 2024, 08:57:06 PM
post Re: Can I Trust This Super Cheap Site?
[General Chat]
MRMILSTAR
March 18, 2024, 03:51:33 PM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Late
March 18, 2024, 02:59:46 PM
post Re: 160mm DRSSTC II project | Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Late
March 18, 2024, 02:33:25 PM
post Can I Trust This Super Cheap Site?
[General Chat]
2020-Man
March 18, 2024, 11:02:12 AM
post Re: Where's all this voltage coming from?
[Spark Gap Tesla Coils (SGTC)]
Twospoons
March 18, 2024, 02:36:11 AM
post Re: Best forum for vacuum tube amplifiers?
[General Chat]
Mads Barnkob
March 17, 2024, 07:42:55 PM
post Re: 2x Panasonic Inverter Microwaves - what to salvage, dangers?
[General Chat]
Michelle_
March 17, 2024, 04:15:14 PM
post Re: 2x Panasonic Inverter Microwaves - what to salvage, dangers?
[General Chat]
Michelle_
March 17, 2024, 05:05:04 AM
post Re: Where's all this voltage coming from?
[Spark Gap Tesla Coils (SGTC)]
davekni
March 17, 2024, 04:50:51 AM
post Re: 2x Panasonic Inverter Microwaves - what to salvage, dangers?
[General Chat]
Twospoons
March 17, 2024, 04:45:17 AM
post 2x Panasonic Inverter Microwaves - what to salvage, dangers?
[General Chat]
Michelle_
March 17, 2024, 04:17:51 AM
post Where's all this voltage coming from?
[Spark Gap Tesla Coils (SGTC)]
Terry
March 17, 2024, 01:29:32 AM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
March 17, 2024, 12:33:06 AM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Keybored
March 16, 2024, 08:46:20 PM
post Re: Bleeder resistor for MMC
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Hydron
March 16, 2024, 08:39:24 PM
post Re: DRSSTC Questions
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Hydron
March 16, 2024, 08:21:44 PM
post Best forum for vacuum tube amplifiers?
[General Chat]
yourboi
March 16, 2024, 08:20:13 PM

Sitemap 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 
SimplePortal 2.3.6 © 2008-2014, SimplePortal