• 回复
  • 收藏
  • 点赞
  • 分享
  • 发新帖

微波炉变压器灭害机行不?

春节回家过年,发现不得了,老家野猪成群到处破坏农作物,村民们却束手无策。所以突发奇想,想用微波炉变压器做升压器,电野猪,不知道行不行。特来求教希望大师们给个微波炉变压器的参数。输出是多少V?空载多少A?电野猪要多大功率?本人听说是3000V,想2并2窜,不知行不行?有经验的大师不妨给个建议,不胜感激。

下面的是网站问题无需理会

 
//字体缩放 var fontsize = { set: function(num) { num = num || $.cookie('c_fsize'); $('.tShow .content, .tShow .content *').css({ fontSize: num + 'px' }) }, zoom: function(arg) { var num = parseInt($.cookie('c_fsize')); switch (arg) { case 0: num > 12 ? $.cookie('c_fsize', (num * 1 - 2)) : null; break; case 1: num < 24 ? $.cookie('c_fsize', (num * 1 + 2)) : null; break; case 3: $.cookie('c_fsize', '14'); break }; this.set($.cookie('c_fsize')) }, run: function() { $.cookie('c_fsize') == null ? $.cookie('c_fsize', '14') : null; this.set(); $('#zoomin').click(function() { fontsize.zoom(1); $('#zoomout').removeClass('zoomlock'); if($.cookie('c_fsize') === '24') { $(this).addClass('zoomlock'); } else { $(this).removeClass('zoomlock'); }; }); $('#zoomout').click(function() { fontsize.zoom(0); $('#zoomin').removeClass('zoomlock'); if($.cookie('c_fsize') === '12') { $(this).addClass('zoomlock'); } else { $(this).removeClass('zoomlock'); }; }); $('#zoomdft').click(function() { fontsize.zoom(3) }) }}fontsize.run();$(function(){ /* 最新贴闪烁 */ function outshow(el) { var post = el; var timer, flag = true, num = 1; function changeC() { timer = setInterval(function() { if (num < 6) { flag = flag ? false: true; flag ? post.css({ //backgroundColor: '#f7ffeb' backgroundColor: '#fff0ed' }) : post.css({ backgroundColor: 'transparent' }); num += 1 } else { clearInterval(timer) } }, 150) }; changeC() } $('#last_post_go').click(function() {//最后帖闪 outshow($('#last_post').parents('tr').eq(0).siblings('tr')) })//左侧功能条 var toolHtml = '
'; //最新回帖 toolHtml += ' '; //回顶端 toolHtml += ' '; //工具箱 toolHtml += '

工具箱

' //工具箱数据 toolHtml += '
'; toolHtml += '   上一帖快捷键:ctrl + ←
  下一帖快捷键:ctrl + →
  查看第帖 '; toolHtml += '
'; toolHtml += '
'; toolHtml += '
'; $('#wraper').append(toolHtml); $tool = $('#sideTool'); $toolbox = $('#toolBox'); $toolCont = $('#toolBC'); var isIE = navigator.userAgent.toLowerCase().indexOf('msie 6.0') > -1 ? true : false; function setPos(){ var sT = $(window).scrollTop(); if (isIE) { $tool.css({ top : sT + 100 }) } else { $tool.css({ position : 'fixed', top : '100px' }) } } setPos(); window.onresize = setPos; window.onscroll = setPos; //装载工具数据 var tooldata = [// {title:'发撒旦法',url:'javascript:'},// {title:'看见了',url:'javascript:'},// {title:'凡沃尔特人',url:'javascript:'},// {title:'地方豆腐干',url:'javascript:'},// {title:'韦尔奇万恶',url:'javascript:'},// {title:'可好久回来',url:'javascript:'} ] var dhtml = ' '; $toolCont.append(dhtml); // 取色块 var colors = { dft : ['#fff','#fff','默'], tS_tpl_1 : ['#C8EDCC','#C8EDCC','绿'], tS_tpl_2 : ['#c2cff4','#c2cff4','蓝'] } var colorPick = '

背景色设定

    '; for (var n in colors){ colorPick += '
  • ' + colors[n][2] + '
  • ' } colorPick +='
'; $toolCont.append(colorPick); $('#colorPick li').live('click',function(){ $('.tShow').removeClass().addClass('tShow').addClass(this.id); if(this.id != 'dft'){ $.cookie('tShow_tpl',this.id); } else { $.cookie('tShow_tpl',null); } }) //添加数据样式 var dstyle = ''; dstyle += '#toolBC li { margin:5px 1em 0; width:5em; text-align:left; float:left; }'; dstyle += '#toolBC li a { white-space:nowrap; }'; dstyle += ''; $('head').append(dstyle); /* 工具箱功能模块 */ // 跳转帖子 var post_nums = $('table[id^="post_s_"]').size(); var $numEl = $('#post_go_val'); function go_the_post() { var flag = arguments[0] ? true : false; var num = $numEl.val(); num = /\d/.test(num) ? parseInt(num) : 1; num = num < post_nums ? num : post_nums; $numEl.val(num); num = flag ? '#post_s_' + post_nums : '#post_s_' + num; var href = location.href.replace(/\#.*/,''); location.href = href + num; outshow($(num).find('table')); } function doGo(e){ e = e || window.event; var keyCode = e.which ? e.which : e.keyCode; return keyCode === 13 ? true : false; } $numEl.live('keyup',function(e){ doGo(e) ? go_the_post() : null }) $('#post_go').click(function(){go_the_post()}) $('#last_post_go').click(function(){go_the_post(true);$numEl.val(post_nums);}) //$('#post_nums').html(post_nums); // 拉动 $('#wraper').css({position:'relative',zIndex:1}); $toolbox.live('mouseover',function(){ $tool.css({ width : 174 }) $toolCont.css({ left : 15, display : "block" }) $("#post_go_val").focus(); }) $toolbox.live('mouseout',function(){ $tool.css({ width : 22 }) $toolCont.css({ left : 22, display : "none" }) }) var quickKey = function(){ var b = $('#cont'); var ctrl = false, d = function(e){ e = e || window.event; if(window.event){e.cancelBubble = true;} else {e.stopPropagation();} var k = e.which ? e.which : e.keyCode,cnum; if(k == 17){ ctrl = true; } if(k == 39 && ctrl){ // next : LEFT cnum = $numEl.val()*1 + 1 < post_nums ? $numEl.val()*1 + 1 : post_nums; $numEl.val(cnum); go_the_post(); } if(k == 37 && ctrl){ // prev : RIGHT cnum = $numEl.val()*1 - 1 > 0 ? $numEl.val()*1 - 1 : 1; $numEl.val(cnum); go_the_post(); } if(k == 36 && ctrl){ // first : HOME $numEl.val(1); go_the_post(); } if(k == 35 && ctrl){ // end : END $numEl.val(post_nums); go_the_post(true); } }, v = function(e){ e = e || window.event; if(window.event){e.cancelBubble = true;} else {e.stopPropagation();} var k = e.which ? e.which : e.keyCode; if(k == 17){ ctrl = false } }; $(document).keydown(d).keyup(v); }() })function imgzoom(o) { if(event.ctrlKey) { var zoom = parseInt(o.style.zoom, 10) || 100; zoom -= event.wheelDelta / 12; if(zoom > 0) { o.style.zoom = zoom + '%'; } return false; } else { return true; }}

全部回复(9)
正序查看
倒序查看
2011-02-10 21:41

用逆变器将电压升至12000V,用三百只560UF电容作储能输出,基本野猪遇上了一般跑不掉的,配备电池100AH,不过一定要注意安全,电着人也同样威猛,特别要注意安全

你的变压器在400HZ推挽驱动下,磨平慈系,初级5匝,次级1000咋,后面倍压升至12000V

0
回复
2011-02-11 01:26

微波炉变压器电压上到12000V绝缘应该不行吧。但是用电视机的行变,再用电容储能应该可以。

 

0
回复
2011-02-11 21:30
@shanghaibs
微波炉变压器电压上到12000V绝缘应该不行吧。但是用电视机的行变,再用电容储能应该可以。 
  我想用家用的电源供电
0
回复
2011-02-15 17:25
@无恶不作
 我想用家用的电源供电
安全第一呀!
0
回复
2011-02-16 20:26
@与你同在
安全第一呀!
呵呵1
0
回复
2011-02-18 21:40
@无恶不作
呵呵1
根本没用,电流跟不上
0
回复
2011-02-21 05:34
@刘立新008
根本没用,电流跟不上
300只450V560UF 串联 并联会电流跟不上???
0
回复
爱好玩
LV.1
9
2013-10-08 12:22
@西门吹水
300只450V560UF串联并联会电流跟不上???[图片]
我认为不用改了加个电容就行了.能电跑野猪就行了.电源前面要有个风扇和保护器就行了·毕竞全第一!!!野猪是保护动物哦。
0
回复
qiankm
LV.5
10
2013-10-09 15:53
@爱好玩
我认为不用改了加个电容就行了.能电跑野猪就行了.电源前面要有个风扇和保护器就行了·毕竞全第一!!!野猪是保护动物哦。
放个假老虎,弄个喇叭放,老虎吼声
0
回复