Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - haversin

Pages: [1] 2 3 4
1
Solid State Tesla Coils (SSTC) / Re: Tenebrescent Potassium Iodide
« on: April 23, 2024, 06:00:42 PM »
If you took a video of the KI in the low energy state "bleached" with room lights on and then turned on the tesla coil leaving the room lights on maybe you could see the color change. Then turning off the tesla coil the color decay could maybe be seen. I've seen this done with mineral demos of tenebrescence but they usually turn off the room lights during the short wave UV activation to show the fluorescence.

2
Solid State Tesla Coils (SSTC) / Re: Tenebrescent Potassium Iodide
« on: April 23, 2024, 12:50:40 AM »
I didn't see the color change did you show it?

3
Smart Phones / Re: Phone sensor fusion demo
« on: January 03, 2024, 05:13:54 PM »
Here is the Python code. you need the Phyphox app on the phone.  I have an android not sure about iphone. I wrote my own quaternion module let me know if you need that.

Code: [Select]
import sys
import pygame
from pygame.locals import *
from OpenGL.GL import *
from OpenGL.GLU import *
from math import *
import numpy as np
import requests
import quaternions as qu

x,y,z = 1.25,2.5,.25
vertices = (
    (x, -y, -z),
    (x, y, -z),
    (-x, y, -z),
    (-x, -y, -z),
    (x, -y, z),
    (x, y, z),
    (-x,-y, z),
    (-x, y, z)
    )

faces = (
    (0,1,2,3),
    (3,2,7,6),
    (6,7,5,4),
    (4,5,1,0),
    (1,5,7,2),
    (4,0,3,6)
    )

colors = (
    (0.,1.,0.),
    (1.,0.,0.),
    (0.,0.,1.),
    (1.,1.,0.),
    (1.,0.,1.),
    (0.,1.,1.)
    )

def quads():
    cindx = 0
    glBegin(GL_QUADS)
    for face in faces:
        glColor3fv(colors[cindx])
        for vertex in face:
            glVertex3fv(vertices[vertex])
        cindx += 1
    glEnd()       
           
# phyphox comm settings
PP_ADDRESS = "http://192.168.1.3:8080"
PP_CHANNELS = ["accX", "accY", "accZ","gyr_time","gyrX", "gyrY", "gyrZ",
            "magX", "magY", "magZ"]
#PP_CHANNELS = ["acc_time","accX", "accY", "accZ"]# accelerometer data names
#PP_CHANNELS = ["gyr_time","gyrX", "gyrY", "gyrZ"] # gyro data names
#PP_CHANNELS = ["magX", "magY", "magZ"] # magnetometer data names
start = PP_ADDRESS +"/control?cmd=start"
stop = PP_ADDRESS +"/control?cmd=stop"
clear = PP_ADDRESS +"/control?cmd=clear"
url = PP_ADDRESS + "/get?" + ("&".join(PP_CHANNELS))
ax,ay = 0.,0.


def main():
    m, e, u, qf = np.zeros((3,3)),np.zeros(3),np.zeros(3),np.zeros(4)
    b, n, q, dqg = np.zeros(3),np.zeros(3),np.zeros(4),np.zeros(4)
    wu = np.zeros(3)
    wtl = 0.
    crd, twopi = 180./pi, 2*pi
    fac = .9  #  filter parameter
    pygame.init()
    display = (1333,1000)
#    aspr = float(display[0])/display[1]
    aspr = 1.5
    pygame.display.set_mode(display, DOUBLEBUF|OPENGL)
    glEnable(GL_CULL_FACE)
    glFrontFace(GL_CW) # face vertex winding order is CW
#    gluPerspective(45, (display[0]/display[1]), .1, 50.)
    s = 7.
    glOrtho(-s*aspr,s*aspr,-s,s,0.1,50.)
    glTranslatef(0,0,-5)
    glRotated(-90.,1,0,0)
    glRotated(-90.,0,0,1)

   
    data = requests.get(start).json() # start comm with phyphox
   
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                data = requests.get(stop).json() # stop comm with phyphox
                quit()

        data = requests.get(url=url).json()
        ax = data["buffer"][PP_CHANNELS[0]]["buffer"][0]
        ay = data["buffer"][PP_CHANNELS[1]]["buffer"][0]
        az = data["buffer"][PP_CHANNELS[2]]["buffer"][0]
        wt = data["buffer"][PP_CHANNELS[3]]["buffer"][0]
        wx = data["buffer"][PP_CHANNELS[4]]["buffer"][0]
        wy = data["buffer"][PP_CHANNELS[5]]["buffer"][0]
        wz = data["buffer"][PP_CHANNELS[6]]["buffer"][0]
        bx = data["buffer"][PP_CHANNELS[7]]["buffer"][0]
        by = data["buffer"][PP_CHANNELS[8]]["buffer"][0]
        bz = data["buffer"][PP_CHANNELS[9]]["buffer"][0]

        if str(ax) != 'None' and str(wt) != 'None' and str(bx) != 'None' :

# use acceleromter and magnetometer data to construct rotation matrix
            u[:] = ax, ay, az
            umag = sqrt(u.dot(u))
            u /= umag
            b[:] = bx, by, bz
            e = np.cross(b,u)
            emag = sqrt(e.dot(e))
            e /= emag
            n = np.cross(u,e)
            m[0] = e
            m[1] = n
            m[2] = u
# convert rotation matrix to quaternion qam
            qam = qu.mat2q(m)
            if wtl == 0.:
              qf, wtl = qam, wt
# compute delta rotation quaternion from gyro data
            dwt = wt - wtl
            if dwt > .2:
              dwt = .2
            print(wx, wy, wz, wt, wtl, dwt)
            wtl = wt
            wu[:] = wx, wy, wz
            wmag = sqrt(wu.dot(wu))
            wu /= wmag
            thao2 = wmag*dwt/2.
            sthao2 = sin(thao2)
            dqg[:] = cos(thao2), wu[0]*sthao2, wu[1]*sthao2, wu[2]*sthao2
            qg = qu.q_mult(dqg,qf)
            qf = qu.Slerp(qam,qg,fac)

        glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT)
# draw object with it's own screen positon           
        glPushMatrix()
        glTranslatef(0,-4.25,0)
        tha = 2*acos(qam[0])
        glRotated(tha*crd,qam[1],qam[2],qam[3])
        quads()
        glPopMatrix()


# draw object with it's own screen positon           
        glPushMatrix()
        glTranslatef(0,4.25,0)
        tha = 2*acos(qf[0])
        glRotated(tha*crd,qf[1],qf[2],qf[3])
        quads()
        glPopMatrix()

        pygame.display.flip()
        pygame.time.wait(1)   
main()

4
High Speed Filming / Chain reactions
« on: December 02, 2023, 06:20:03 PM »
Recorded at 480 fps, the first part of the video is speeded up 16x to show real time.
Music:
"The  baddest" by Richard Smithson
Music Vine License ID CL-2018-010-95


5
I made a expansion cloud chamber ten years ago. An advantage of the expansion cloud chamber is no dry ice is required and the sensitive volume can have a large vertical dimension which is good for cosmic ray studies. The advantage of a dry ice diffusion cloud chamber is that it's continuously sensitive and fairly simple to construct. Here is a video compilation of a few expansions of the chamber. The head of the pin inside the chamber is coated with radium paint and shows alpha particle tracks.   

6
Smart Phones / Phone sensor fusion demo
« on: September 21, 2023, 09:22:14 PM »
Phyphox app was used to send accelerometer, magnetometer and gyro data over wi-fi using Http requests to a Python script running on a pc. The phone orientation in space was calculated two ways: 1) using accelerometer and magnetometer data only and 2) using a Complementary filter on the accelerometer, magnetometer and gyro data. The results are shown in this video.


7
Static Electricity / Re: Can you replace the dome with a capacitor? VdGG.
« on: September 10, 2023, 06:23:23 PM »
Having a top dome that surrounds the upper pully and collector is the key to a VDG achieving very high voltages because of the Friday Ice Pail effect. Once charge is placed inside the dome it can  transfer completely to the dome no matter what voltage the dome is. Without the dome, if one lead of a capacitor is connected to the upper collector and the other lead is connected to ground. The capacitor would only charge up to the voltage of the charge to ground.

8
Electronic Circuits / Trichel pulses
« on: November 20, 2022, 09:48:37 PM »
Here's a simple setup to observe Trichel pulses. About 3kV is applied across a 2 meg resistor and planar anode and needle point cathode air gap. The gap distance is adjusted to be as close as possible without an arc/spark forming. A 2.2 k resistor on the cathode side serves as a current sensing resistor for a scope probe.

Setup Schematic:


Actual setup:


Scope shot:
V: 0.5v per division
H: 1 us per division

9
Wikipedia has a good description under "projection method (fluid dynamics)". The accuracy of Jos Stam's method is a good question and I don't know. A test case used a lot is the flow past a cylinder. The vortex shedding frequency vs Reynolds number for a cylinder is very well studied. I've setup this case for two other fluid simulations and should do it for this one.

10
In my code, the flow field and “density” are calculated on a 128 by 128 grid. This grid is much too course and low resolution to capture the beauty and fine detail of Suminasghi. I needed over one hundred thousand particles to look like real Suminasghi. Each particle position is 
calculated from it's velocity as interpolated from the flow field grid.

At the start of each simulation run, the flow field is initialized to zero except for two rectangular blocks where the velocities are different but constant in each block. This is a nondivergent field.

11
Suminagashi simulation.

2D fluid simulation from “Real-Time Fluid Dynamics for Games” by Jos Stam coded in C. Tracer particle dynamics was added.

Graphics done in Python and Matplotlib.

Video editing done in Blender.

Music:
“Hopeful Freedom” by Asher Fulero
YouTube Audio Library.


12
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 25, 2022, 03:43:12 PM »
There is an analytic expression for the E field:

E = sqrt(I/(6*π*μ*ε0)*(r^3-r0^3) + E0^2*r0^4)/r^2

I is the current, μ the ion mobility, r0 the terminal radius and E0 the field at r0.
Very nice! I guess that differential equation wasn't so nasty after all!

Did you try to see the corona in the dark? It might be visible to a dark adapted eye.
  While investigating the difference between the field mill readings of the VDG with and without the 25 cm diameter sphere on top I took photos of the corona with and without the sphere. They were exposed for 30 seconds in the dark at ISO 3200 see below. The terminal was illuminated briefly with a small flashlight so it could be seen in the photo.  To the eye the corona jets appear to be flickering randomly around the terminal the photos give the wrong impression that they are all happening at the same time. With the sphere on top the top jets disappeared and the bottom jets were much brighter and more frequent. After looking at these photos I thought the sphere on top might actually be lowering the voltage by increasing the E field at the bottom. However FEMM results showed that the sphere actually lowers the E field at the bottom see below.








13
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 24, 2022, 06:28:10 PM »
I'm glad were getting the same numbers! are you getting a closed form solution? I got a nasty first order nonlinear differential equation that I could only solve numerically. I agree that 10m is too large. The height to the top of the terminal is only 77 cm. Of course the actual geometry is far from spherically symmetric.

14
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 23, 2022, 11:51:16 PM »
I ran a simulation of the spherical symmetry case with your ion mobility of 2e-4 (m*m)/(v*s) and a terminal sphere radius of 0.1 m. E at the surface was set to 3.e6 v/m. Numerically integrating -E*dr from r  = 10m to the sphere radius 0.1m the terminal voltage with no current was 297 kV and with a 5 uA current the voltage was 335 kV. So the 5 uA current did make a difference. Going to the FEMM shape of the VDG terminal is much more complex.

15
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 21, 2022, 09:14:34 PM »
I modeled my VDG terminal in FEMM to see what the E field magnitude looked like around it's surface. The terminal voltage was set 100kV. The results are shown below. It's seen that the max E field magnitude is about 1.5*10^6 V/m and occurs at the lower outside of the terminal  Assuming air breaks down at 3*10^6 V/m this predicts a max terminal voltage of only 200kV. I'm guessing the space charge due to corona is why the terminal can go higher than this. I haven't figured out how to model this space charge. Does anyone have any ideas? Uspring?
 

16
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 17, 2022, 07:47:59 PM »
It is my impression, that corona discharges limit the voltage of your VDG.
Yes, I think so too.
In your measurements you have used differing configurations of spheres and conductors and the differing fields generated by them and the corresponding corona currents might account for the differences in your voltages.
Yes possibly. I should really take like five or ten measurements with each method to see what the means and standard deviations look like.

I've tried to model the field of your original (oblate) top electrode by adding a quadrupole term to the potential. I haven't been able to reproduce an equipotential surface looking quite like your top, but my general impression was, that the field on the flat top is quite a bit smaller than around the more curved sides. That would explain the low voltages in your first disk lifting measurement.
I'm working on a FEMM model of the terminal and some very preliminary results show a lower field on the flat top also. I think this could indeed explain the low voltages for the first lifting disk measurement.

P.S. I found the source of the positive field reading when I grounded the terminal after turning off the VDG. I feel kind of stupid now. For my self excited negative charging VDG, the negative roller is on top inside the terminal and the positive roller is on the bottom and not shielded. After turning off the VDG and grounding the terminal it shielded the negative roller but left the positive roller still unshielded giving a net positive field. I confirmed this by putting some grounded shielding around the bottom roller and the positive field disappeared.

17
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 16, 2022, 10:15:14 PM »
  It's been hot and windy so I decided to do some field mill voltage measurements in the garage. The field mill reading was jumping around between about 3.6 and 4.3 volts and got to this level within a second of turning on the VDG. Not the steady increase that I remembered. It occurred to me that the measurement I was remembering was with a much smaller VDG and a slightly different field mill.
The field mill I'm using now is setup for fair weather atmospheric field measurements and is very sensitive and has a very long power and signal cable. The first thing I tried was shielding this cable. No luck the reading was still jumping around. Next I tried shielding the AC power and house ground cable going to the VDG with a separate Earth ground. No difference. There is a tenth of second time constant low pass filter on the field mill signal output and the current output of the VDG is very steady. This made No sense! I started to run out of ideas and began randomly trying stuff. This went on for a few days until I put a 25 cm stainless sphere on top of the VDG terminal. Suddenly the readings steadied and only moved around by about a tenth of a volt every few seconds. The only theory I have for this is that the extra capacitance of the sphere helps smooth out voltage variations on the terminal caused by random corona/streamer breakout.
  With the 25 cm sphere on top of the VDG terminal the field mill was placed so it read about -5 volts with the VDG running. From linearity tests I done the field mill is fairly linear in the range of -8 to +8 volts. The zero field reading is -0.1 volts (caused by a small misalignment in the synchronous rectifier) The actual reading with the VDG running was -4.9 volts and correcting for the zero field reading gives -4.8 volts (The VDG charges negative).
 To compensate for the ion cloud, objects in the garage charging and the VDG column charging I quickly grounded the terminal after turning off the VDG and noted the field mill reading.
I was expecting a value a little more negative that -0.1 zero field value, but the value was close to zero! A value of zero means a net positive field and that makes no sense so no attempt was made to make this compensation.
  Field mill calibration was done by first making sure the VDG and field mill did not move and anything else in the garage did not change. I tried to keep my body as far away for the VGD and field mill as possible during both the calibration and VDG running readings. One terminal from a 15kV by 30ma NST was half wave rectified to a 225 pF HV capacitor. The voltage on this capacitor was controlled by a variac feeding the NST. The variac was adjusted until the current thru a 1 Gohm HV resistor read 10 uA indicating a voltage of 10 kV. This voltage was then applied to the VDG terminal via a 71 Mohm HV resistor in series with an electrode see photo below the resistor is inside the white tubing and can't be seen. It was found that the field mill was reading about -0.2 volts before even touching the electrode to the VDG terminal. To compensate for this the electrode was touched to the terminal then quickly taken off the terminal and placed on the ground and the variac was switched off. The field mill reading was then taken as quickly as possible. The field mill reading was dropping about 0.02 volts every few seconds so I have good confidence in this reading. After doing this calibration about five times all the values were close to -0.27 volts and correcting for the zero field value gives -.17 volts giving a calibration factor of 10kV/.17V = 58.8 kV/V. Applying this to the running VDG reading of -4.8 volts gives a voltage reading of  -282 kV. A little lower than all the other measurements.

Sphere gap: -310 kV
lifting disk:  -324 kV
field mill:     -282 kV




18
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 11, 2022, 01:26:12 AM »
Following david's suggestion, I placed the 10 inch diameter sphere on top of the VDG. An aluminum soda can was used to provide some separation between the VDG terminal and sphere.  The total mass of the 5 cm diameter foil circle and thin wood piece was now up to 5.94 grams to slowly slide off the sphere. This gives a voltage of 324 kV which is real close to the 310 kV from the sphere gap. The setup is shown below and the small wood piece can be seen on top of the sphere. The foil circle is there but can't be seen. I'm going to try the outside field mill voltage measurement of the VDG next.

19
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 10, 2022, 07:33:06 PM »
I'd guessed that you were putting the disks on top of the 10" sphere you were using for your spark tests.  Any reason not to do that?
I was worried about field distortion at the top of the sphere caused by the VDG terminal and prime conductor. I was less worried about this distortion for the sphere gap because the second sphere is directly behind the first sphere and assumed some shielding is provided by the first sphere. This is pure guess work on my part.

20
Static Electricity / Re: Van de Graaff generator voltage measurement
« on: June 10, 2022, 04:01:22 PM »
Did I make a mistake in this corrected formula?  Or do I have the sphere radius wrong for your test?
Your calculations are correct, I used r = .1m and you used r = .125m so my numbers are four fifths of yours. Looking at your numbers maybe be I should be using r = .125m ! The width of my terminal is 8 inches so I used r = .1m. The shape of my terminal is far from a sphere and has a flat section on top. Your lifting disk voltage equation assumes E = V/r which is only true for an isolated sphere. I'm thinking of trying to model my terminal and ground plane in FEMM to get a more accurate E field and force calculation. I haven't used FEMM for electrostatics but supposedly it has the capability. 

Pages: [1] 2 3 4

* Recent Topics and Posts

post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
Today at 06:30:43 PM
post Re: Tesla coil UV eye protection?
[General Chat]
Michelle_
Today at 06:14:35 PM
post Re: Tesla coil UV eye protection?
[General Chat]
MRMILSTAR
Today at 05:13:46 PM
post Re: Tesla coil UV eye protection?
[General Chat]
Twospoons
Today at 11:40:08 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
NyaaX_X
Today at 06:01:50 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
Today at 05:55:45 AM
post Re: Tesla coil UV eye protection?
[General Chat]
Michelle_
Today at 05:47:36 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
MRMILSTAR
Today at 05:45:36 AM
post Re: Tesla coil UV eye protection?
[General Chat]
MRMILSTAR
Today at 05:41:05 AM
post Re: Tesla coil UV eye protection?
[General Chat]
Twospoons
Today at 04:33:57 AM
post Re: Tesla coil UV eye protection?
[General Chat]
alan sailer
April 24, 2024, 08:02:47 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 24, 2024, 06:51:17 PM
post Re: Tesla coil UV eye protection?
[General Chat]
Michelle_
April 24, 2024, 06:45:00 PM
post Re: Tesla coil UV eye protection?
[General Chat]
Mads Barnkob
April 24, 2024, 05:18:27 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
NyaaX_X
April 24, 2024, 05:14:27 PM
post Re: Ignitron trigger drive ideas?
[Capacitor Banks]
huntergroundmind
April 24, 2024, 02:51:23 PM
post Re: First DRSSTC SKM100
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
April 24, 2024, 05:58:27 AM
post Tesla coil UV eye protection?
[General Chat]
Michelle_
April 24, 2024, 05:17:22 AM
post Re: Tenebrescent Potassium Iodide
[Solid State Tesla Coils (SSTC)]
alan sailer
April 24, 2024, 12:39:59 AM
post Re: First DRSSTC SKM100
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
April 23, 2024, 11:07:41 PM
post Re: First DRSSTC SKM100
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Saattvik24
April 23, 2024, 10:57:39 PM
post Re: Plasma Torid - Class E Self Resonant Dual/Stereo - Plasma Torid Build
[Dual Resonant Solid State Tesla coils (DRSSTC)]
OmGigaTron
April 23, 2024, 09:33:49 PM
post Re: Tenebrescent Potassium Iodide
[Solid State Tesla Coils (SSTC)]
haversin
April 23, 2024, 06:00:42 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 23, 2024, 03:50:49 AM
post Re: Tenebrescent Potassium Iodide
[Solid State Tesla Coils (SSTC)]
alan sailer
April 23, 2024, 03:13:31 AM
post Re: Tenebrescent Potassium Iodide
[Solid State Tesla Coils (SSTC)]
haversin
April 23, 2024, 12:50:40 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 11:21:06 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 08:11:00 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 06:15:30 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
NyaaX_X
April 22, 2024, 05:52:50 PM
post Tenebrescent Potassium Iodide
[Solid State Tesla Coils (SSTC)]
alan sailer
April 22, 2024, 05:52:13 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 04:31:52 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
NyaaX_X
April 22, 2024, 04:05:34 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
markus
April 22, 2024, 01:02:30 PM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
April 22, 2024, 06:32:35 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 06:24:10 AM
post M2000NM1 toroid for gdt tesla coil
[General Chat]
thedark
April 22, 2024, 05:13:15 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 02:25:29 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
alan sailer
April 22, 2024, 02:09:18 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 22, 2024, 12:14:21 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 21, 2024, 09:47:15 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
MRMILSTAR
April 21, 2024, 08:34:02 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 21, 2024, 06:09:57 PM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
April 21, 2024, 06:21:54 AM
post Re: Insulate the secondary of the Tesla coil with a PET plastic bottle
[General Chat]
Michelle_
April 21, 2024, 06:18:30 AM
post Re: Insulate the secondary of the Tesla coil with a PET plastic bottle
[General Chat]
davekni
April 21, 2024, 06:12:31 AM
post Re: Insulate the secondary of the Tesla coil with a PET plastic bottle
[General Chat]
MRMILSTAR
April 21, 2024, 05:19:55 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 21, 2024, 02:29:17 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
alan sailer
April 21, 2024, 01:28:59 AM
post Insulate the secondary of the Tesla coil with a PET plastic bottle
[General Chat]
thedark
April 21, 2024, 01:19:44 AM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
flyingperson23
April 21, 2024, 12:55:25 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 20, 2024, 11:25:32 PM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
April 20, 2024, 10:28:26 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
davekni
April 20, 2024, 10:23:28 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 20, 2024, 10:06:44 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
davekni
April 20, 2024, 09:21:55 PM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
April 20, 2024, 09:16:14 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
MRMILSTAR
April 20, 2024, 08:58:40 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 20, 2024, 06:18:26 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 20, 2024, 06:15:26 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
MRMILSTAR
April 20, 2024, 03:45:43 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Benjamin Lockhart
April 20, 2024, 06:33:37 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 20, 2024, 05:45:04 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Benjamin Lockhart
April 20, 2024, 05:34:16 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 20, 2024, 04:50:57 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Benjamin Lockhart
April 20, 2024, 04:03:55 AM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Benjamin Lockhart
April 20, 2024, 02:35:56 AM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
Bobakman
April 19, 2024, 09:37:52 PM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
klugesmith
April 19, 2024, 09:20:10 PM
post Re: Next Gen DRSSTC
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Mads Barnkob
April 19, 2024, 07:22:26 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 19, 2024, 04:46:36 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
alan sailer
April 19, 2024, 03:49:28 PM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
Bobakman
April 19, 2024, 01:53:57 PM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
MRMILSTAR
April 19, 2024, 05:24:19 AM
post Re: Difference between these transformers
[Transformer (Ferrite Core)]
Tesla Junior
April 19, 2024, 04:24:09 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 19, 2024, 04:20:35 AM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
Bobakman
April 19, 2024, 04:05:28 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
alan sailer
April 19, 2024, 04:03:54 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 19, 2024, 03:19:19 AM
post Re: IKY150N65EH7, is it good for DRSSTC
[Dual Resonant Solid State Tesla coils (DRSSTC)]
davekni
April 19, 2024, 03:09:29 AM
post Re: IKY150N65EH7, is it good for DRSSTC
[Dual Resonant Solid State Tesla coils (DRSSTC)]
unrealcrafter2
April 19, 2024, 01:47:37 AM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
Bobakman
April 19, 2024, 12:19:21 AM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
klugesmith
April 18, 2024, 11:33:01 PM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
Bobakman
April 18, 2024, 11:15:15 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
davekni
April 18, 2024, 10:59:36 PM
post Re: What actually kills MOSFETs?
[Beginners]
unrealcrafter2
April 18, 2024, 10:03:48 PM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
klugesmith
April 18, 2024, 09:53:25 PM
post Re: Welcome new members, come say hello and tell a little about yourself :)
[General Chat]
unrealcrafter2
April 18, 2024, 09:50:09 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 18, 2024, 09:15:55 PM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
Mads Barnkob
April 18, 2024, 08:50:49 PM
post Re: 100kHz CM300 gate resistor choice
[Dual Resonant Solid State Tesla coils (DRSSTC)]
unrealcrafter2
April 18, 2024, 08:11:27 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
davekni
April 18, 2024, 07:28:05 PM
post Re: How to get a GE Yokogawa AB40 Sync Scope to rotate without a powerplant.
[Laboratories, Equipment and Tools]
Bobakman
April 18, 2024, 06:30:30 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 18, 2024, 06:03:57 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 18, 2024, 05:26:13 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
NyaaX_X
April 18, 2024, 04:03:38 PM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 18, 2024, 02:56:40 PM
post Re: DIY induction guns? (warning:long)
[Induction Launchers, Coil Guns and Rails guns]
Benbmw
April 18, 2024, 06:17:15 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
Michelle_
April 18, 2024, 05:46:07 AM
post Re: Small-ish 3D printed SGTC via cheap ZVS flyback build, humbly asking a couple ?s
[Spark Gap Tesla Coils (SGTC)]
MRMILSTAR
April 18, 2024, 05:18:31 AM

SimplePortal 2.3.6 © 2008-2014, SimplePortal