Welcome![Sign In][Sign Up]
Location:
Search - ac report

Search list

[Other resource交直流轉換器研討

Description: 电机领域里最常遇到的交直流转换器研讨对这方面有研究的人可以参考本篇文章-motor areas most frequently encountered by AC-DC converters discuss research in this field who can refer to this report
Platform: | Size: 3274567 | Author: 陈文豪 | Hits:

[PHP商家点评插件有地图版插件for UCHome 1.5

Description: 将文件拷贝到UCH安装目录(不会覆盖任何UCH文件). 其中config.shop.inc.php文件需要有写权限(linux). 运行shop_install.php 打开shop.php文件。将 $_SC['GoogleAPI']='ABQIAAAAIl6BzjiDCz90JrLDCFco6xRsRMjB2wv1Y7bZb-CPY4a_zZ8tAhQljtAew1TctFXLCYxRjkaGoD8jzA';替换成您的Google KYE。如您在本地调试,可以直接用以上KEY。如您还没有google KEY 请到 http://code.google.com/intl/zh-CN/apis/maps/signup.html 免费申请! 地图显示您想要的地方的方法: 首先打开Google地图,在上面寻找一个地址,然后上下左右移动地图,让这个地址正好处于地图的正中心位置,当您想寻找坐标位置已经处于地图的中心位置的时候,拷贝并粘贴以下代码到你的浏览器地址栏:   javascript:void(prompt('',gApplication.getMap().getCenter())); 然后回车一下。这时,你将得到一个弹出式的坐标,这个坐标就是你需要找的经度和纬度。 1 在admincp.php: 第一处: $acs = array( array('index','config','privacy', 'spam', 'network', 'usergroup', 'credit', 'profilefield', 'profield', 'ad', 'sitefeed', 'userapp', 'app'), array('tag', 'mtag', 'space', 'name', 'report'), array('cache', 'task', 'censor', 'stat', 'block', 'cron'), array('blog','album', 'pic', 'comment', 'thread', 'post', 'doing', 'feed', 'share') ); 修改成(最后一行array('base','pingdao','neirong','shop','reviews','shoptags')为增加的。同时记得在上一行'share')后加个逗号 ) $acs = array( array('index','config', 'privacy', 'spam', 'network', 'usergroup', 'credit', 'profilefield', 'profield', 'ad', 'sitefeed', 'userapp', 'app'), array('tag', 'mtag', 'space', 'name', 'report'), array('cache', 'task', 'censor', 'stat', 'block', 'cron'), array('blog', 'album', 'pic', 'comment', 'thread', 'post', 'doing', 'feed', 'share'), array('base','pingdao','neirong','shop','reviews','shoptags') ); 第二处: for($i=0; $i<5; $i++) {//由原来的3改成现在的5,其他不用修改 foreach ($acs[$i] as $value) { if($isfounder || $megroup['manage'.$value]) { $menus[$i][$value] = 1; $_SGLOBAL['usergroup'][$_SGLOBAL['member']['groupid']]['manage'.$value] = 1; } } } 第三处: if(empty($_GET['ac']) || (!in_array($_GET['ac'], $acs[0]) && !in_array($_GET['ac'], $acs[1]) && !in_array($_GET['ac'], $acs[2]) && !in_array($_GET['ac'], $acs[3]) && !in_array($_GET['ac'], $acs[4]) && !in_array($_GET['ac'], $acs[5]))) { //加上 && !in_array($_GET['ac'], $acs[4] && !in_array($_GET['ac'], $acs[5]),注意修改完后$acs[5]后面应有三个 ) 符号 3 admin/tp/header.htm: <!--{eval $_TPL['menunames'] = array( 'config' => '站点设置', 后加上: 'base' => '积分与审核', 'pingdao' => '频道设置', 'shoptags' => '标签管理', 'shop' => '商铺管理', 'neirong' => '点评内容', 'reviews' => '回应内容', 4 admin/tpl/side.htm开始处加入: <!--{if $menus[3]}--> <div class="block style1"> <h2>点评系统</h2> <ul class="folder"> <!--{loop $acs[4] $value}--> <!--{if $menus[4][$value]}--> <!--{if $ac==$value}--><li class="active"><!--{else}--><li><!--{/if}--><a href="admincp.php?ac=$value">{$_TPL[menunames][$value]}</a></li> <!--{/if}--> <!--{/loop}--> </ul> </div> <!--{/if}--> 5 在侧栏增加链接。 template/default/header.htm中找到 <li><img src="image/app/share.gif"><a href="space.php?do=share">分享</a></li> 加上 <li><img src="image/icon/shop.gif"><a href="shop.php">商家点评</a><em><a href="shop.php?ac=new">发布</a></em></li> 更新缓存。 如果安装后出现白屏现象,请重新检查所安装文件是否有语法错误。然后通过删除UCH安装目录下的data/tpl_cache/目录下的文件,此功能相当于更新缓存。 运行shopinstall.php 在header.htm相应的位置加上<li><img src="image/icon/shop.gif" alt="通讯录" /><a href="shop.php">通讯录</a></li> admin/tpl/config.htm 找到<tr> <th>未认证实名权限</th> <td> <table> <tr> <td width="120">允许加好友</td> <td> <input type="radio" name="config[name_allowfriend]" value="1"<!--{if $configs[name_allowfriend] == 1}--> checked<!--{/if}-->>是 <input type="radio" name="config[name_allowfriend]" value="0"<!--{if $configs[name_allowfriend] != '1'}--> checked<!--{/if}-->>否 </td></tr> 在其下面添加 <tr> <td width="120">允许商铺点评</td> <td> <input type="radio" name="config[name_allowshop]" value="1"<!--{if $configs[name_allowshop] == 1}--> checked<!--{/if}-->>是 <input type="radio" name="config[name_allowshop]" value="0"<!--{if $configs[name_allowshop] != '1'}--> checked<!--{/if}-->>否 </td></tr>
Platform: | Size: 111029 | Author: tianfuo@sina.com | Hits:

[Post-TeleCom sofeware systems交直流轉換器研討

Description: 电机领域里最常遇到的交直流转换器研讨对这方面有研究的人可以参考本篇文章-motor areas most frequently encountered by AC-DC converters discuss research in this field who can refer to this report
Platform: | Size: 3274752 | Author: 陈文豪 | Hits:

[Delphi VCLAcrForDelphi2005

Description: AC Report 中国式报表组件 V1.9-AC Report V1.9 Chinese report component
Platform: | Size: 1347584 | Author: cyt | Hits:

[SCMThereportdescribestheAT89S52basedonhemicrocontroll

Description: 本报告介绍了基于AT89S52单片机为核心的、以AD0809数模转换芯片采样、以1602液晶屏显示的具有电压测量功能的具有一定精度的数字电压表。在实现基础功能要求之上扩展了串口通讯、时钟功能、高压报警、短路测试、电阻测量、交流电压峰峰值和周期测试等功能,使系统达到了良好的设计效果和要求。-This report describes the AT89S52 microcontroller based on the core to AD0809 DAC chip sampling to the LCD screen display 1602 voltage measurement function with a certain precision digital voltmeter. On the basis of functional requirements in the realization of extension of the serial communication, clock function, high-pressure alarm, short-circuit test, resistance measurement, AC voltage peak and the cycle of testing and other functions, allowing the system to achieve a good design effects and requirements.
Platform: | Size: 158720 | Author: jandh | Hits:

[DocumentsMSP430-Using-PWM-Timer-B-as-a-DAC

Description: This application report describes how to simultaneously create a sine wave, a ramp, and a dc level with pulse-width modulated (PWM) signals from Timer_B on the MSP430 ultralow power family of microcontrollers. PWM signals are often used to create analog signals in embedded applications. This report shows how to create both ac signals and dc levels with PWM outputs. The example in this report uses Timer_B on the MSP430F149, but Timer_A could also be used in a similar manner.
Platform: | Size: 113664 | Author: Ma | Hits:

[SCMEmbedded-System-Design-using-MSP430

Description: This application report describes how to simultaneously create a sine wave, a ramp, and a dc level with pulse-width modulated (PWM) signals from Timer_B on the MSP430 ultralow power family of microcontrollers. PWM signals are often used to create analog signals in embedded applications. This report shows how to create both ac signals and dc levels with PWM outputs. The example in this report uses Timer_B on the MSP430F149, but Timer_A could also be used in a similar manner.
Platform: | Size: 11325440 | Author: Ma | Hits:

[Delphi VCLAcReport2.3

Description: Ac Report中国式报表控件2010 V2.3包含使用和开发接口文档,及Delphi、VB、VC++、C#.net、VB.net的demo。-Ac Report Report Controls Chinese 2010 V2.3 includes the use and development of interface documentation, and Delphi, VB, VC++, C#. Net, VB.net the demo.
Platform: | Size: 20219904 | Author: 王朝 | Hits:

[Industry researchIEEEgideonhvdc

Description: IEEE关于HVDC接入弱交流系统的报告,对搞电力的人非常有用-IEEE report on HVDC access weak AC system ,it s useful to the people who engage in powersystem
Platform: | Size: 1027072 | Author: shb | Hits:

[OtherANALOGUE-REPORT

Description: The aim of this assignment is to design and construct an audio amplifier by using a NPN - BJT transistor. In addition, I have briefly explained Bipolar Junction Transistor, their types, application and functions. Moreover, I have attached the data sheet of the chosen transistor in appendix section. Furthermore, I have done both calculations DC and AC analysis for this audio amplifier. Also ,I have designed the circuit in Multisim software. . - The aim of this assignment is to design and construct an audio amplifier by using a NPN - BJT transistor. In addition, I have briefly explained Bipolar Junction Transistor, their types, application and functions. Moreover, I have attached the data sheet of the chosen transistor in appendix section. Furthermore, I have done both calculations DC and AC analysis for this audio amplifier. Also ,I have designed the circuit in Multisim software. .
Platform: | Size: 867328 | Author: haydar | Hits:

[SCMPWM_Techniques_final-pure-sien

Description: The ever-increasing reliance on electronic devices which utilize AC power highlights the problems associated with the unexpected loss of power from the electrical grid. In places where the electrical infrastructure is not well-developed, brown-outs can prove fatal when electronic medical instruments become unusable. Therefore, there is a need for inexpensive and reliable pure-sine wave inverters for use with medical devices in the underdeveloped world. This report documents the development of one component of an uninterruptible power supply, the DC-to-AC inverter. Through the use of analog signal processing techniques, a prototype which efficiently and accurately emulates the pure-sine wave power present on the power grid was created. The three-level PWM system within this report is created with the possibility of a feedback-regulated system to be implemented in the future.
Platform: | Size: 3406848 | Author: Dries | Hits:

[Software EngineeringPRESENTATION-ON-DESIGN-AND-FABRICATION-OF-FIRING-

Description: The theme of the report is to design and fabricate the firing circuit for a AC power controller. The necessity of getting synchronized firing pulses for the gate of the thyristor is discussed. Out of many variety of firing circuits available our methodology is to use a phase control IC TCA785.
Platform: | Size: 1515520 | Author: sharad | Hits:

[OtherDESIGN-AND-FABRICATION-OF-FIRING-CIRCUIT-FOR-SING

Description: The theme of the report is to design and fabricate the firing circuit for a AC power controller. The necessity of getting synchronized firing pulses for the gate of the thyristor is discussed.
Platform: | Size: 1479680 | Author: ankur | Hits:

[Industry researchsharad-btp

Description: presentation the theme of the report is to design and fabricate the firing circuit for a AC power controller. -presentation on the theme of the report is to design and fabricate the firing circuit for a AC power controller.
Platform: | Size: 8482816 | Author: ankur | Hits:

[File Format46108421-Sinewave-inverter

Description: This report focuses on DC to AC power inverters, which aim to efficiently transform a DC power source to a high voltage AC source, similar to power that would be available at an electrical wall outlet. Inverters are used for many applications, as in situations where low voltage DC sources such as batteries, solar panels or fuel cells must be converted so that devices can run off of AC power. One example of such a situation would be converting electrical power from a car battery to run a laptop, TV or cell phone.
Platform: | Size: 5386240 | Author: Marko | Hits:

[Software Engineeringreport

Description: in this project increases the ac voltage to ac voltage by using the matrix converter with that using the upqc decreases the power quality improvement
Platform: | Size: 3747840 | Author: raghaveshwar | Hits:

[Software Engineeringdanpianjidianyabiaolunwen

Description: 本报告介绍了基于AT89S52单片机为核心的、以AD0809数模转换芯片采样、以1602液晶屏显示的具有电压测量功能的具有一定精度的数字电压表。在实现基础功能要求之上扩展了串口通讯、时钟功能、高压报警、短路测试、电阻测量、交流电压峰峰值和周期测试等功能,使系统达到了良好的设计效果和要求。- This report describes on AT89S52 microcontroller as the core, to AD0809 DAC chip sampling, digital voltmeter with a certain precision voltage measurement function has LCD display with 1602. On the basis of the functional requirements to achieve extended serial communication, clock function, high pressure alarm, short circuit testing, resistance measurement, AC voltage peak value and cycle testing and other functions, allowing the system to achieve a good performance and design requirements.
Platform: | Size: 146432 | Author: 许家硕 | Hits:

[Othersjhbububububbbbbbb

Description: 电子学院学籍管理 参照我院学籍管理的有关要求,实现学籍管理的基本功能,主要的表有:学生基本信息、班级信息、专业信息、动态信息等。开发过程及任务要求如下: 1.了解学生日常管理(如考勤、纪律、寝室、卫生等)的实际情况,及各类学生管理系统的基本工作原理、应用模式等。可进一步了解相应的管理系统所采用的开发语言、数据库、及功能概况等。 2.进行调研,了解用户需求,提出需求分析报告,主要内容为用户需求规格说明书。 3.完成针对某一方面的学生管理系统的功能设计,以量化管理为手段,进行相应的管理,完成详细的系统设计方案。 4.依据系统设计方案,开发相应的管理系统,可以按单机版进行开发。 5.完成相应的系统使用说明书(用户使用手册)。 -According to the relevant requirements of the school roll management, to achieve the basic functions of the school roll management, the main table are: Students basic information, class information, professional information, dynamic information, etc.. Development process and task requirements are as follows: 1 to understand the actual situation of students daily management (such as attendance, discipline, dormitory, health, etc.), and the basic working principle, application mode, etc.. Can further understand the development of the corresponding management system, the use of language, , and functional profiles, etc.. 2 to conduct research, to understand the needs of users, the demand analysis report, the main content for the user s requirements specification. 3 to complete the functional design of the students management system for a certain aspect, in order to quantify the management as a means, to carry out the corresponding management, complete detailed system design plan. 4 ac
Platform: | Size: 2840576 | Author: | Hits:

[File Formatmodulare-converterseminar-report

Description: The Modular multilevel converter has become an attractive option for dc/ac conversion in many power system applications in particular for HVDC transmission, due to its parallel arrangement of phase legs the MMC is known to be wye configured architecture. In this modular converter application used then of conventional converter the delta configured MMC enable by series-stacking phase legs is on alternative realization to wye configured MMC and has significantly different characterized. MMC enable greater flexibility in converter voltage/current scaling for given set submoduleand may be applying option for dc/ac application requiring a power tap-off a high voltage dc rail.-The Modular multilevel converter has become an attractive option for dc/ac conversion in many power system applications in particular for HVDC transmission, due to its parallel arrangement of phase legs the MMC is known to be wye configured architecture. In this modular converter application used then of conventional converter the delta configured MMC enable by series-stacking phase legs is on alternative realization to wye configured MMC and has significantly different characterized. MMC enable greater flexibility in converter voltage/current scaling for given set submoduleand may be applying option for dc/ac application requiring a power tap-off a high voltage dc rail.
Platform: | Size: 903168 | Author: nasreen | Hits:

[Industry researchinventer &conventer

Description: Converter and Inverter are devices that convert the current from AC to DC and vice versa.
Platform: | Size: 5120 | Author: A.Taher | Hits:

CodeBus www.codebus.net