Announcement

Collapse
No announcement yet.

Use for the Tesla Switch

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Originally posted by John_Bedini View Post
    Leroy,
    You did not offended me on anything.
    JB
    Thanks JB,

    Makes me feel somewhat better. I'm thinking about just bowing out until I can get home...don't know when that will be and...do some more tests. All I can do is "think", because I can not "do" at the moment. But that is dangerous too, doing is better. I have a problem with the way I speak, like I know everything and it pisses people off, but I don't actually mean it that way. It is just who I am, so I try to keep myself in check, but every once in a while...it just comes out again.

    I did get some nice rectifiers today <50ns and 35 amp, so I'm ready....if I ever get home.


    Leroy

    Comment


    • Hi Murlin, these are the ones I have been using;
      497-2737-5-ND DIODE SCHOTTKY 100V 8A TO-220AC.
      Thank you very much

      PS...I am very impressed with your digital version...


      I'm interested in the mechanical switch, still building the bigger one.
      Oops. It totally escaped me that while electrical, relays are still basically mechanical.

      Perhaps I should have said "commutator style" , because I seem to be the only one building that type ATM

      It is truly amazing how many hits this thread gets...

      Thanks again guys...

      regards,

      Murlin

      Comment


      • Steve, again you can only be the judge of this as I have given my recommendations on why I do what I do. I'm just saying that you must look at what the parts can handle, then I choose what works the best for me after testing under circuit load. charts below for the three devices.
        JB
        Thank you so much for your charts and schematics, Mr Bedini. It is much appreciated. I am learning allot from you guys.

        This thread has so much information in it. It is hard to absorb.....I am almost positive though as I put more info up there in the "Ole Memory Banks" something falls out.... I just hope its nothing good..



        Regards,

        Murlin

        Comment


        • steorn replication of Bedini Monopole

          Shame on them..... what a crock of bull..... I hope the world will realize what a thief he is.

          Tom C
          http://www.teslagenx.com

          Comment


          • Question on the Optos

            Hi Bits,

            Thanks for posting the components list for your PICAXE board and all
            of the details - a really nice implementation -

            Probably in my own ignorance of the H11D1 optos, when I look at the
            schematic I seem to miss a current limiting resistor in the return path
            that limits current to the Opto irLEDs. I see you use resistors like 330ohm
            to protect the indicator LEDs (1&2). Yet, the return path(s) from the H11D1s
            seem to come straight back to vss on the PIC, close to where the reset button terminates. Am I missing or misinterpreting something here - if so, please pardon the intrusion - don't mean to nitpick on a really nice effort.

            Cheers,

            Plazma

            Originally posted by Bit's-n-Bytes View Post
            Theory of Operation

            The “PICAXE-18X Digital Controlled Tesla Switch” is comprised mainly of the following parts;

            1n4001-Q1 1n4001
            1n4001-Q2 1n4001
            C1 0.01uf 103
            Cap-Q1 1.0uf
            Cap-Q2 1.0uf
            D1 STPS8H100D 497-2737-5-ND
            D3 STPS8H100D 497-2737-5-ND
            D5 STPS8H100D 497-2737-5-ND
            D7 STPS8H100D 497-2737-5-ND
            D9 STPS8H100D 497-2737-5-ND
            D10 STPS8H100D 497-2737-5-ND
            D2-D6 30CPU04PbE
            D4-D8 30CPU04PbE
            DB9
            J1 Battery Connector DG126
            J2 Battery Connector DG126
            J3 Battery Connector DG126
            J4 Battery Connector DG126
            J5 J5 Connector DG126
            J6 J6 Connector DG126
            LED1 Red
            LED2 Blue
            Q1 MJL21194
            Q2 MJL21194
            R1 150R 2 Watt
            R2 10k 1/2 Watt
            R3 10k 1/4 Watt
            R4 22k 1/4 Watt
            R5 330R 1/4 Watt
            R6 330R 1/4 Watt
            R7 10K 1/4 Watt
            R8 47K 1/4 Watt
            R9 10K 1/4 Watt
            R10 47K 1/4 Watt
            SW1 Reset E28
            U1 PICAXE-18X
            U2 LM324
            U-Q1 H11d1
            U-Q2 H11d1
            Z1 1N4733A

            Basically this circuit can be broken down to the following circuits;

            “Brains” – PICAXE-18X

            “Sensing” – LM324

            “Switching” – MJL21194 & H11d1

            “Power Supply” – Z1, R1, & C1

            Listed below is the code to give intelligence for the PICAXE-18X (U1) to operate. Do not let this code be intimidating. It is very easy if you walk through each line and understand what it is doing.

            Start:
            SYMBOL ChargeSense = W1 '# Reserves buffer for ChargeSense Value
            SYMBOL BattLVLSense = W2 '# Reserves buffer for BattLVLSense Value
            SYMBOL TotalCompare = W3 '# Res. buff ChargeSense + BattLVLSense

            Main:
            readadc 1, ChargeSense '# Reads voltage at pin 18
            readadc 2, BattLVLSense '# Reads voltage at pin 1

            let b1 = 0 '# Reset counter


            let TotalCompare = BattLVLSense + ChargeSense # Determine the capacity

            If TotalCompare > 255 then '# Determine if a load can be applied
            high 3 '# Apply the load
            else
            low 3 '# Turn the load off
            endif


            if ChargeSense < BattLVLSense then SwitchGroup1 '# Batts 2 and 4 are low
            if ChargeSense > BattLVLSense then SwitchGroup2 '# Batts 1 and 3 are low
            if ChargeSense = BattLVLSense then SwitchGroup3 '# Batts are good


            SwitchGroup1: ' # Favors Oscillating Q1
            do
            pulsout 4,500 ' # Send 1/2 second pulses out of pin 10
            inc b1 ' # let's increment the counter
            if pin1 = 1 then exit ' # error check
            loop while ChargeSense < BattLVLSense and b1 < 10 ' # Do 10 times

            goto Main


            SwitchGroup2: ' # Favors Oscillating Q2
            do
            pulsout 6,500 ' # send 1/2 second pulses out of pin 12
            inc b1 ' # let's increment the counter
            if pin1 = 1 then exit ' # error check
            loop while ChargeSense > BattLVLSense and b1 < 10 ' #Do 10 times

            goto Main

            SwitchGroup3: ' # We are holding our own, Let's get some work done
            do
            pulsout 4,500 ' # send 1/2 second pulses out of pin 10
            pulsout 6,500 ' # send 1/2 second pulses out of pin 12
            inc b1 ' # let's increment the counter
            if pin1 = 1 then exit ' # error check
            loop while ChargeSense = BattLVLSense and b1 < 10 ' # Do 10 times

            goto Main.

            Description of the code functionality;

            Variables are set up to receive values from various pin readings through the READADC command. These Variables are;

            BattLVLSense - Holds the value of the voltage from Batts 1 and 3.
            ChargeSense - Holds the value of the voltage from Batts 2 and 4.
            TotalCompare- Holds the value of Batts 1 and 3 + Batts 2 and 4.

            Once all Batts are connected, power is applied (12V from Batt1) to R1 which supplies power to Z1. Z1 is a 5.1V zener diode that maintains the voltage to operate the PICAXE-18X chip. Cap C1 filters any noise.

            Three (3 subroutines) SwitchGroups are setup to do the “pulsing” of Q1 and / or Q2.

            The process starts by the PICAXE-18X(U1) reading and storing information presented to pins 1 and 18 from the LM324 Op amp (U2). U2 senses the voltage at the points shown on the schematic and presents it to U1 as a voltage range from 0 to 5vdc. The U1 in turn, converts this to a value from 0 to 255. U2 is setup through the voltage divider resistors to output 2.5 volts on its output when the voltages are 18vdc between Batts 1 and 3 as well as 14vdc for Batts 2 and 4.

            We know that if we place different loads on the TS, this will affect the “Charge Process” of Batts 2 and 4 and the use of capacity from 1 and 3 or vise versa. The algorithm in U1 is such that it can compensate by utilizing any of the 3 SwitchGroup sub routines. (Illustrated below is just one of the scenarios).

            Let’s understand that if Batts 1 and 3 fall below 18vdc collectively, our reading of pin 1 of U1 will yield a value of something less than 127. This value will be stored into the BattLVLSense variable and the code algorithm determines that SwitchGroup2: is needed. SwitchGroup2: favors the pulsing of Q2 which places Batts 2 and 4 in series for a .5 second “Pulse” consecutive for 10 times. The algorithm jumps out of this subroutine and takes another reading at the U1 pins 1 and 18. This is a “Health” check of Batts 1 and 3 as well as 2 and 4.

            This scenario is repeated as long as U1 has power, but U1 also has the intelligence to understand other levels and adjust (by selecting the right SwitchGroup) to maintain all for Batts to the desired levels.

            Another part of the U1 algorithm is to determine if all of the Batts are healthy enough to place a load on them. Pin 9 output signal is turned high (5V) wich can drive a N FET that in turn can drive a relay coil to connect a load. This happens when the Variable “TotalCompare” has a value greater than 255 (Batt 1 and 3 = 19V or, 137 as U1 sees them) plus (Batts 2 and 4 = 15V or, 137 as U1 sees them). 137 + 137 = 274 so the algorithm turns pin 9 on U1 high and also through SwitchGroup3: will oscillate Q1 and Q2 to maintain the proper Batt levels.

            Caveats:
            Different load types (i.e. Inductive, Reactive, Resistive) will cause batteries to charge or discharge at different rates. The algorithm assumes the battery levels to be as mentioned above acceptable to maintain the batteries capacity. Adjustments can be made by changing the parameters both in the “pulse” duration within the SwitchGroups as well as the measurement level (in this case 127 for the desired level) for the batteries.

            Please use at your own risk!!!!!!!


            Bit's

            Comment


            • Originally posted by John_Bedini View Post
              Steve, again you can only be the judge of this as I have given my recommendations on why I do what I do. I'm just saying that you must look at what the parts can handle, then I choose what works the best for me after testing under circuit load. charts below for the three devices.
              JB
              Mr. John,
              Thanks a million!

              A. MJ15024 - the device isn't rated above 100V @1A at all - no one can guarantee it will do 1A at all over 100V
              B. The MJL4281 is rated to 25C at junction - we don't want it to be much hotter than 25C at it's case as we know it's junction will most probably top that while under load (=work). So I understand why You point out the 30C working temperature: we don't want to have much of the performance derated by a higher thermal load on the device?
              C. The MJL21194 has only its 1sec plot but it is representing the ability at 150C at junction - the 21194 wins "hands down" by over 100C

              By far the most "thug" we can buy?

              Thanks again!
              Stevan C.

              Comment


              • Originally posted by Plazma View Post
                Hi Bits,

                Thanks for posting the components list for your PICAXE board and all
                of the details - a really nice implementation -

                Probably in my own ignorance of the H11D1 optos, when I look at the
                schematic I seem to miss a current limiting resistor in the return path
                that limits current to the Opto irLEDs. I see you use resistors like 330ohm
                to protect the indicator LEDs (1&2). Yet, the return path(s) from the H11D1s
                seem to come straight back to vss on the PIC, close to where the reset button terminates. Am I missing or misinterpreting something here - if so, please pardon the intrusion - don't mean to nitpick on a really nice effort.

                Cheers,

                Plazma
                Thanks Plazma, I haven't used them in the past, however that doesn't mean they may be needed. I will take some measurements and make sure. Thanks for pointing this out.

                Bit's

                Comment


                • Over the top?

                  I'm not sure if this one BJT is more "thug" than the MJL?

                  But it looks like the NJW21194's 1A stretches up to 200V

                  Is this device is really just a thermally enhanced MJL?

                  Best regards,
                  Stevan C.
                  Attached Files

                  Comment


                  • Originally posted by John_Bedini View Post
                    Leroy,

                    I have come to a strange conclusion that switching is everything.

                    I believe that if the switch is developed to use ground currents we are all home free. You may think I'm talking in riddles again but I'm very committed to what I do in this field. I will only post information that I think will help everybody here.
                    JB
                    Very Profound statement, Mr. Bedini. Stubble and Earth batt people take notice.

                    Comment


                    • Originally posted by Murlin View Post
                      Thank you very much

                      PS...I am very impressed with your digital version...




                      Oops. It totally escaped me that while electrical, relays are still basically mechanical.

                      Perhaps I should have said "commutator style" , because I seem to be the only one building that type ATM

                      It is truly amazing how many hits this thread gets...

                      Thanks again guys...

                      regards,

                      Murlin
                      Go back and look at what Matthew is doing. He is the mechanical master on commutation, etc. on this list (besides JB). AND, I'm not even sucking up, that is a fact.

                      Leroy

                      Comment


                      • Go back and look at what Matthew is doing. He is the mechanical master on commutation, etc. on this list (besides JB). AND, I'm not even sucking up, that is a fact.
                        Oh, well, I stand corrected....

                        Sure looks like I have come to the right place then.

                        MR Bits...got my order of Shottsky's... Sounds like a sandwich...

                        going to start soldering them in circuit tomorrow.

                        I am thinking this is the schematic I should use now ?

                        I don't see the bridge or the caps but am also guessing they are in there at the appropriate places.

                        Someone please stop me if I am wrong... Otherwise if it goes boom I guess I will know soon enough...

                        I have my batteries enclosed if that scenario takes place...Keeping fingers crossed.

                        "I don't know where I'm goin', but there ain't no use in bein' late"
                        Mathew Quigley

                        regards,

                        Murlin

                        Comment


                        • Originally posted by Murlin View Post
                          Oh, well, I stand corrected....

                          Sure looks like I have come to the right place then.

                          MR Bits...got my order of Shottsky's... Sounds like a sandwich...

                          going to start soldering them in circuit tomorrow.

                          I am thinking this is the schematic I should use now ?

                          I don't see the bridge or the caps but am also guessing they are in there at the appropriate places.

                          Someone please stop me if I am wrong... Otherwise if it goes boom I guess I will know soon enough...

                          I have my batteries enclosed if that scenario takes place...Keeping fingers crossed.

                          "I don't know where I'm goin', but there ain't no use in bein' late"
                          Mathew Quigley

                          regards,

                          Murlin
                          There I go again...didn't mean it in a bad way. Matt has been doing commutation on TS for a long time, that is all.

                          Leroy

                          Comment


                          • There I go again...didn't mean it in a bad way. Matt has been doing commutation on TS for a long time, that is all.
                            No worries dude....

                            It's all good. I am just messing around with thing. If I get it to work it's going to be by sheer luck.

                            But hey, you never win the lottery if you never buy a ticket....

                            regards,

                            Murlin

                            Comment


                            • Originally posted by Murlin View Post
                              No worries dude....

                              It's all good. I am just messing around with thing. If I get it to work it's going to be by sheer luck.

                              But hey, you never win the lottery if you never buy a ticket....

                              regards,

                              Murlin
                              You still working with the commutation, or are you trying to create the circuit that you put in your post? If it is commutation, then you probably know that you don't need any of those devices, except the rectifiers for the bridge if you want DC instead of AC. So, I'm confused as to what you are trying to do...maybe I missed a post or two. If it is the circuit with transistors, diodes, etc., that you are trying to duplicate then you can just put the rectifiers where it says AC and convert it to DC (if you want to run DC). Maybe a cap on the bridge in parallel to the load.

                              Leroy

                              P.S. I didn't take a good look at the circuit. If it was posted by JB, and is his circuit, it will work. If it is someone elses, then I can't say. If it is the brandt circuit, then it will work too, I believe.

                              ***EDIT Looks like the brandt circuit without bridge and caps. See JBs circuit which is updated and has all the goodies. ***EDIT
                              Last edited by ldissing; 12-18-2009, 02:00 AM.

                              Comment


                              • Soa

                                Hi Steven and all

                                This article sheds some light on why the 21194's
                                work so well

                                "fT (Current Gain bandwidth Product): This is directly related to device gain and also to the device physical base width (wb). Most of the audio transistors in the industry have high fT (~30MHz), the trade-off is SOA performance with high voltage conditions. ON Semi Power Base Technology (which is unique in the market) has low/medium fT devices (8 to 12MHz) devices like the MJL21193/94 which have excellent SOA above 100V, these devices have wider Bases and also some unique "base spreading resistor" design which make them extremely rugged, used by most high end audio manufacturers."

                                Semiconductor Safe Operating Area

                                I've been building Johns circuits for 10 years now, you won't go wrong listening to his recommendations (+_+)

                                Mike Klimesh
                                Live to experiment, Experiment to live (+_+)

                                Comment

                                Working...
                                X