Storing Cookies (See : http://ec.europa.eu/ipg/basics/legal/cookies/index_en.htm ) help us to bring you our services at overunity.com . If you use this website and our services you declare yourself okay with using cookies .More Infos here:
https://overunity.com/5553/privacy-policy/
If you do not agree with storing cookies, please LEAVE this website now. From the 25th of May 2018, every existing user has to accept the GDPR agreement at first login. If a user is unwilling to accept the GDPR, he should email us and request to erase his account. Many thanks for your understanding

User Menu

Custom Search

Author Topic: Kapanadze Cousin - DALLY FREE ENERGY  (Read 11803476 times)

Jeg

  • Hero Member
  • *****
  • Posts: 1532
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18735 on: December 18, 2017, 05:45:03 AM »
My enhanced  PWM version for arduino (see previous Plaxius post)

A0 and A1 pots for Duty cycles 1 and 2
A3 pot for fine frequency
A2 pot for coarse frequency
A4 and A5  3 positions rotary switch for 3 frequency ranges
-----------------------------------------


//Pgm Timing vars
unsigned long previousMillis = 0; // will store last time valuse measured
unsigned long interval = 20; // interval at which to Measure values (milliseconds)
unsigned long currentMillis = 0;
long Fine, Frequency ;

//pwm vars
unsigned pwm1; // Value read from A0 to give PWM duty cycle output in terms of 0-5V
unsigned pwm2;// Value read from A1 to give PWM duty cycle output in terms of 0-5V

void setup()
{
//Set up PWM
  pinMode(9, OUTPUT);
  pinMode(10, OUTPUT);
  pinMode(A0, INPUT);
  pinMode(A1, INPUT);
  pinMode(A2, INPUT);
  pinMode(A3, INPUT);
  pinMode(A4, INPUT_PULLUP);
  pinMode(A5, INPUT_PULLUP);

// clock 1/1
  CLKPR = 128;
  CLKPR = 0;

//phase/frequency correct mode. SELECT THIS FOR INVERTED OUTPUTS.
  TCCR1A = _BV(COM1A1) | _BV(COM1B1) | _BV(COM1B0) ;
}

void loop()
{
 unsigned long currentMillis = millis();
 if (currentMillis - previousMillis >= interval)
  {
   previousMillis = currentMillis;

   Fine = analogRead(A2);
   Frequency = analogRead(A3);

   if (bitRead(PINC,4) == 0) // switch RANGE closed ?
    {
     TCCR1B = _BV(WGM13) | _BV(CS10) ;  /// clock 1 = high range
     ICR1 = Frequency + Fine / 10 ;
    }

   if (bitRead(PINC,5) == 0)
    {
    TCCR1B = _BV(WGM13) | _BV(CS10) | _BV(CS11); // clock 1/64 = mid range
     ICR1 = Frequency + Fine / 10 ;
    }

   if (bitRead(PINC,4) == 1 && (bitRead(PINC,5) == 1))
    {
     TCCR1B = _BV(WGM13) | _BV(CS10) | _BV(CS12);  // clock 1/1024 = low range
     ICR1 = Frequency * 10 + Fine ;
    }

   if (ICR1<= 1)
    {
     ICR1= 2;
    }
 
   pwm1 = analogRead(A0); // read duty from A0 for PWM 1
   pwm2 = analogRead(A1); // read duty from A2 for PWM 2

   OCR1A  = map(pwm1,0,1023,0,ICR1); // map the duty cycle to the available steps
   OCR1B  = map(pwm2,0,1023,0,ICR1); //map the duty cycle to the available steps

  }
}

Cheors
What a nice surprise like plaxius's one!!! Thanks a lot for your kind gift! Arduino is a really valuable tool for every experimenter. What are the frequency ranges you are talking about? :)

Jeg

  • Hero Member
  • *****
  • Posts: 1532
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18736 on: December 18, 2017, 06:14:41 AM »
Pepper
I can see your passion my friend. I remember my self for all the sleepless nights when i was thinking that i had the secret in my hands. But you know, in this job only the bench work can prove or disprove your own assumptions. The only thing you have to do is to be objective with your own experimental conclusions. By the time you will see  that OU as Void said is not something easy to be achieved, or else everyone here we would have something to demonstrate.
For me Nelson's device is the real deal, but it is just a waste of time trying to replicate a working device just by assuming how it works. Your experiments have to guide you step by step until reaching Nelson's level or else you will be lost.

Void :( Very sorry for your scope mate! It is one of my nightmares when thinking that my Rigol could have such a tragic end. I have already destroyed an analog one and three frequency generators until now due to high voltage. Hope your scope wasn't any expensive gear!

Void

  • Hero Member
  • *****
  • Posts: 2333
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18737 on: December 18, 2017, 07:29:39 AM »
Void :( Very sorry for your scope mate! It is one of my nightmares when thinking that my Rigol could have such a tragic end. I have already destroyed an analog one and three frequency generators until now due to high voltage. Hope your scope wasn't any expensive gear!

Thanks Jeg. The scope was not cheap, but it was not a really high end one.
It was a pretty good scope though. It was a Siglent. It was kind of strange how it blew. When
I went to connect the earth ground wire to the negative side of the high voltage cap,
there was a big light blue arc of about 5mm or more from the negative side of the cap to the
earth ground wire, and then the scope display went out immediately. The high voltage driver module
was being powered with a battery, but the scope itself is not isolated from ground, so it may
have been some kind of ground loop back to the scope that caused it to blow out. Not sure...  :'(
Next time I'll make sure I keep the scope probe ground lead earth grounded at all times when
working with really high voltages.

All the best...



cheors

  • Jr. Member
  • **
  • Posts: 89
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18738 on: December 18, 2017, 09:21:57 AM »
Cheors
What a nice surprise like plaxius's one!!! Thanks a lot for your kind gift! Arduino is a really valuable tool for every experimenter. What are the frequency ranges you are talking about? :)


From 1Hz to 4 MHz.

But of course, the higher the frequency the worst the resolution.
Cannot be used to find a frequency linearly.

Hoppy

  • Hero Member
  • *****
  • Posts: 4135
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18739 on: December 18, 2017, 10:13:13 AM »
Hi Void,

I know how it feels. I blew out a channel on my Rigol scope whilst working on the Daly contraption.


Hoppy

  • Hero Member
  • *****
  • Posts: 4135
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18740 on: December 18, 2017, 10:36:37 AM »

Hoppy!!  I`m more than glad to try to give you my best shot at explanation but a will rather refer to a great experimenter that I discover and he has the best EFFECT THAT CAN BE SIMILAR TO NELSON`S SECONDARY ...   Just forget the front circuit and let`s concentrate on the output coil made  with the same arrangement as the video describe...  If this is INCONPLETE info for you, I will try my best a second time..  CHEERS!
https://www.youtube.com/watch?v=bbpso7zAlvU

Pepper,

Notice in this video from the same guy - Arkiver, he is simply overloading his source transformer to the point that the circuit breaker trips at the end of the video and he burns his figure touching it. From his dialogue, his electrical / electronic knowledge is limited and confused. As in the video you posted, he is using polarised electrolytic caps to pass AC current and then says that they are getting hot because of the transformer wire needs to be thinner  ::) ! The videos are nonsense.

Void

  • Hero Member
  • *****
  • Posts: 2333
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18741 on: December 18, 2017, 10:59:55 AM »
Hi Void,
I know how it feels. I blew out a channel on my Rigol scope whilst working on the Daly contraption.

Hi Hoppy. Bummer. Yes, it is no fun at all when something like that happens. That is for sure.  :(
It may be some time before I can afford a new scope.

All the best...

AlienGrey

  • Hero Member
  • *****
  • Posts: 3713
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18742 on: December 18, 2017, 12:45:18 PM »
Pepper,

Notice in this video from the same guy - Arkiver, he is simply overloading his source transformer to the point that the circuit breaker trips at the end of the video and he burns his figure touching it. From his dialogue, his electrical / electronic knowledge is limited and confused. As in the video you posted, he is using polarised electrolytic caps to pass AC current and then says that they are getting hot because of the transformer wire needs to be thinner  ::) ! The videos are nonsense.
Hoppy his caps if you look at some of his other vids the caps are none polorised 16volt variety RS do them I ordered some by mistake once for a quick job but had to re order some ordinary ones notice the large size anyway 50/60hz is a crap freq to tune! Just cus he can make vids doesn't mean he is a wiz kid ;)

Allen

Jeg

  • Hero Member
  • *****
  • Posts: 1532
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18743 on: December 18, 2017, 12:58:35 PM »

From 1Hz to 4 MHz.

But of course, the higher the frequency the worst the resolution.
Cannot be used to find a frequency linearly.

Cool! ;) Thanks again


It was a pretty good scope though. It was a Siglent.

Shit!!!  :(
Thanks for describing the incident in case someone will learn from that!

Currently, (last months) i am on Tesla's circuits, learning and fooling around. I see similarities with Ruslan's method but not any OU yet!

Hoppy

  • Hero Member
  • *****
  • Posts: 4135
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18744 on: December 18, 2017, 01:03:04 PM »
  Hoppy, Void, and all.
  Talk about waisting time and effort.  i' m done with this guy.
   I called his bluff, he ignores me.
   So, I'll ignore him too.
  Sorry, but... Well, you know... Tried to be nice.

Nick,

Relax mate. He means well, just up the creek without a paddle at the moment. You found it difficult at first with very limited electrical / electronics knowledge, so be patient with him. Hopefully he will tone down his posts and realise that he needs to start learning through building and experimenting at the bench.

AlienGrey

  • Hero Member
  • *****
  • Posts: 3713
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18745 on: December 18, 2017, 01:05:34 PM »
Void you might be interested in this set up it uses a diode for boost in the collector of an IGBT 40n60 40a 600vand a 330r in the gate loads of eht no heat the flyback is from an old 9in monitor.

If you want to pulse it you need a ramp circuit to charge a cap but when it fires you produce an acoustic wave disruption I haven't gone down that rought yet.

What did you use for the .1uf ? that's a big beast at 10kv
PS if your playing with fire scope from a distance with this type of work and turn it off in between one hand behind back this stuff is lethal. But you know all that.

Allen

Hoppy

  • Hero Member
  • *****
  • Posts: 4135
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18746 on: December 18, 2017, 01:19:18 PM »
Hoppy his caps if you look at some of his other vids the caps are none polorised 16volt variety RS do them I ordered some by mistake once for a quick job but had to re order some ordinary ones notice the large size anyway 50/60hz is a crap freq to tune! Just cus he can make vids doesn't mean he is a wiz kid ;)

Allen

OK, thanks for that Alien. Its an ESR / current rating issue then.

NickZ

  • Hero Member
  • *****
  • Posts: 5225
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18747 on: December 18, 2017, 03:23:37 PM »
Nick,

Relax mate. He means well, just up the creek without a paddle at the moment. You found it difficult at first with very limited electrical / electronics knowledge, so be patient with him. Hopefully he will tone down his posts and realise that he needs to start learning through building and experimenting at the bench.

  Hoppy:  Thanks but, no thanks. I'm done with his insults. Period.
               I've no patience for that kind of behavior. And, I don't take insults lightly.

     Void:  I'm also sorry to hear about your scope. I know how that feels, as well.
              Have you checked the scope's fuse? It may be a simple fix.  I'm sure Tinsel can also help you if you need it.
   
               Sorry to everyone for my impatient with the newbie.

               I'll be getting my new PS in a week or so, and will then continue tuning, and with my tests on the feed back circuit.

plaxius

  • Newbie
  • *
  • Posts: 27
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18748 on: December 18, 2017, 04:26:24 PM »
My enhanced  PWM version for arduino (see previous Plaxius post)

A0 and A1 pots for Duty cycles 1 and 2
A3 pot for fine frequency
A2 pot for coarse frequency
A4 and A5  3 positions rotary switch for 3 frequency ranges
-----------------------------------------


//Pgm Timing vars
unsigned long previousMillis = 0; // will store last time valuse measured
unsigned long interval = 20; // interval at which to Measure values (milliseconds)
unsigned long currentMillis = 0;
long Fine, Frequency ;

//pwm vars
unsigned pwm1; // Value read from A0 to give PWM duty cycle output in terms of 0-5V
unsigned pwm2;// Value read from A1 to give PWM duty cycle output in terms of 0-5V

void setup()
{
//Set up PWM
  pinMode(9, OUTPUT);
  pinMode(10, OUTPUT);
  pinMode(A0, INPUT);
  pinMode(A1, INPUT);
  pinMode(A2, INPUT);
  pinMode(A3, INPUT);
  pinMode(A4, INPUT_PULLUP);
  pinMode(A5, INPUT_PULLUP);

// clock 1/1
  CLKPR = 128;
  CLKPR = 0;

//phase/frequency correct mode. SELECT THIS FOR INVERTED OUTPUTS.
  TCCR1A = _BV(COM1A1) | _BV(COM1B1) | _BV(COM1B0) ;
}

void loop()
{
 unsigned long currentMillis = millis();
 if (currentMillis - previousMillis >= interval)
  {
   previousMillis = currentMillis;

   Fine = analogRead(A2);
   Frequency = analogRead(A3);

   if (bitRead(PINC,4) == 0) // switch RANGE closed ?
    {
     TCCR1B = _BV(WGM13) | _BV(CS10) ;  /// clock 1 = high range
     ICR1 = Frequency + Fine / 10 ;
    }

   if (bitRead(PINC,5) == 0)
    {
    TCCR1B = _BV(WGM13) | _BV(CS10) | _BV(CS11); // clock 1/64 = mid range
     ICR1 = Frequency + Fine / 10 ;
    }

   if (bitRead(PINC,4) == 1 && (bitRead(PINC,5) == 1))
    {
     TCCR1B = _BV(WGM13) | _BV(CS10) | _BV(CS12);  // clock 1/1024 = low range
     ICR1 = Frequency * 10 + Fine ;
    }

   if (ICR1<= 1)
    {
     ICR1= 2;
    }
 
   pwm1 = analogRead(A0); // read duty from A0 for PWM 1
   pwm2 = analogRead(A1); // read duty from A2 for PWM 2

   OCR1A  = map(pwm1,0,1023,0,ICR1); // map the duty cycle to the available steps
   OCR1B  = map(pwm2,0,1023,0,ICR1); //map the duty cycle to the available steps

  }
}


Nice Work my Friend .... i try now Arduino Telsa with sync pushpull ...  Thanks for your code. !!!


Is more simple .. open source arduino proyect !!..

Hoppy

  • Hero Member
  • *****
  • Posts: 4135
Re: Kapanadze Cousin - DALLY FREE ENERGY
« Reply #18749 on: December 18, 2017, 04:43:07 PM »
The Kacher creates a _common-mode_ high voltage, and the other lower frequency high power oscillator (mazilli, zvs, 494 etc) creates the high current. The Kacher's common-mode HV creates the condition to allow the high current to be transferred between the input and output stages. Combined capacitive coupling for the common-mode HV and inductive coupling for the higher current at lower frequency, which can then be rectified on the output stage. The convoluted Kapanadze construction can be simplified greatly once these principles are grasped.

By the way, it is a myth that Nelson has any kind of self-running overunity device. He does not.

Please expand on this TK.