High Voltage Generator-Electrofishing

by kukata86 in Circuits > Electronics

22213 Views, 23 Favorites, 0 Comments

High Voltage Generator-Electrofishing

High Voltage Generator test (Electric Fishing device-Electrofish)

Play Video

!!!CAUTON!!! High Voltage. If you are a novice amateur in electronics and this is one of your first projects, better don't begin with this project. !!!CAUTON!!!

This article is free assembly of circuits placed on the Internet, mostly gathered from Russian sources. The author of the article and the site is not liable for any malicious action by the visitors of the page or people who have constructed such a device and use it against the laws of their country or outside the humane principles. This article is only for educational and experimental purposes. Do not abuse.

For the official article please visit my webpage. There will find other interesting schematics and projects. www.kukata86.com/en

Block Diagram and Schematic:

out1.png
out2.png
out3.png
out6.png
out6_1.png
out4.png
out5.png
out7.png
out8.png

To download HQ PDF of schematics and PCB's click here.

For the official article please visit my webpage. There will find other interesting schematics and projects. www.kukata86.com/en

Automatic Charger With Arduino UNO:

The source code for the program made with Arduino UNO, through which you can charge battery connected 2 by 2 in parallel alternately, without having to be disconnected separately.

For the official article please visit my webpage. There will find other interesting schematics and projects. www.kukata86.com/en

//High Voltage Generator charger -  www.kukata86.com
//This code turn relays 2 by 2 for 15 mins and make this cicle 60 times.Charge every 1 from 4 battery for 15 min and make pause for 45 mins.
//In this time charge another one batt. Total charge time for every battery 15 hours.
//See schematic in article for connection diagram.
 
// name your pins:
int edno = 2;
int dve = 3;
int tri = 4;
int chetiri = 5;
int pet = 6;
int shest = 7;
int sedem = 8;
int osem = 9; // the setup routine runs once when you press reset:
void setup() {               
  // initialize the digital pin as an output.
  pinMode(edno, OUTPUT);
  pinMode(dve, OUTPUT);
  pinMode(tri, OUTPUT);
  pinMode(chetiri, OUTPUT);
  pinMode(pet, OUTPUT);
  pinMode(shest, OUTPUT);
  pinMode(sedem, OUTPUT);
  pinMode(osem, OUTPUT);
}
int  var = 0; //defines and sets initial value for variables used below // the loop routine runs over and over again forever:
void loop() { // sets initial value for pins so that lights start as "off" 
digitalWrite(edno, LOW);
digitalWrite(dve, LOW);
digitalWrite(tri, LOW);
digitalWrite(chetiri, LOW);
digitalWrite(pet, LOW);
digitalWrite(shest, LOW);
digitalWrite(sedem, LOW);
digitalWrite(osem, LOW);
while(var < 60){ // cicles before stop(15 hours in every batt. 15minx4batt.=1hour, 1hour=1cicle. 60 :4 =15 hours total)
  digitalWrite(edno, HIGH);   
  digitalWrite(dve, HIGH);   
  delay(900000);               // holds the first pair relays ON for 15 min.
  digitalWrite(edno, LOW);
  digitalWrite(dve, LOW);
  delay(2000);               // slight pause between switching relays 2 sec.
  digitalWrite(tri, HIGH);
  digitalWrite(chetiri, HIGH);
  delay(900000);              // holds the second pair relays ON for 15 min.
  digitalWrite(tri, LOW);
  digitalWrite(chetiri, LOW);
  delay(2000);              // slight pause between switching relays 2 sec.
  digitalWrite(pet, HIGH);   
  digitalWrite(shest, HIGH);
  delay(900000);            // holds the third pair relays ON for 15 min.
  digitalWrite(pet, LOW);
  digitalWrite(shest, LOW);
  delay(2000);              // slight pause between switching relays 2 sec.
  digitalWrite(sedem, HIGH);
  digitalWrite(osem, HIGH);
  delay(900000);            // holds the four pair relays ON for 15 min.
  digitalWrite(sedem, LOW);
  digitalWrite(osem, LOW);
  delay(2000);             // slight pause between switching relays 2 sec.

  var++;}  //adds 1 to variable "var" for repeat count
}

Upgrades:

DSC_0004.JPG
DSC_0005.JPG
DSC_0003.JPG
DSC_0001.JPG

During testing process under real conditions was observed that the resistance of the water in a large pool is much more than that of a bucket of water. 20 A input fuses were not enough. Use 25-30 А as main fuse. After that i choose to upgrade the schematic.I make changes to control the IC generator and remove the relay which interrupt high voltage after the transformer. Photographs of tuning .

For the official article please visit my webpage. There will find other interesting schematics and projects. www.kukata86.com/en

Pictures:

DSC_0073.JPG
DSC_0074.JPG
DSC_0076.JPG
DSC_0077.JPG
DSC_0079.JPG
DSC_0081.JPG
DSC_0082.JPG
DSC_0083.JPG
DSC_0085.JPG
DSC_0086.JPG
DSC_0088.JPG
DSC_0089.JPG
DSC_0090.JPG
DSC_0091.JPG
DSC_0092.JPG
DSC_0093.JPG
DSC_0094.JPG
DSC_0095.JPG
DSC_0096.JPG
DSC_0097.JPG
DSC_0098.JPG
DSC_0099.JPG
DSC_0100.JPG
DSC_0101.JPG
DSC_0102.JPG
DSC_0107.JPG
DSC_0108.JPG
DSC_0109.JPG
DSC_0103.JPG
DSC_0104.JPG
DSC_0105.JPG
DSC_0110.JPG
DSC_0111.JPG
DSC_0115.JPG
DSC_0112.JPG
DSC_0113.JPG
DSC_0116.JPG
DSC_0118.JPG
DSC_0119.JPG
DSC_0120.JPG
DSC_0122.JPG
DSC_0123.JPG
DSC_0124.JPG
DSC_0125.JPG
DSC_0126.JPG
DSC_0204.JPG
DSC_0129.JPG
DSC_0130.JPG
DSC_0131.JPG
DSC_0188.JPG
DSC_0148.JPG
DSC_0150.JPG
DSC_0175.JPG
DSC_0181.JPG
DSC_0201.JPG
DSC_0174.JPG
DSC_0146.JPG
DSC_0155.JPG
DSC_0197.JPG
DSC_0209.JPG
DSC_0210.JPG
DSC_0211.JPG
DSC_0224.JPG
DSC_0225.JPG
DSC_0228.JPG
DSC_0239.JPG
DSC_0237.JPG
DSC_0236.JPG
DSC_0234.JPG
DSC_0233.JPG
DSC_0232.JPG
DSC_0231.JPG
DSC_0200.JPG
DSC_0187.JPG
DSC_0226.JPG
DSC_0235.JPG

Fails and Explosions:

DSC_0185.JPG

Use high voltage fuses. :)