什么是VAR/PF控制器
发布网友
发布时间:2022-04-20 05:26
我来回答
共3个回答
热心网友
时间:2023-07-15 10:43
这个东西貌似应该是分布式电源控制器上应用的吧。分布式电源控制中的可靠性及安全性问题。DP与电网并行工作的重要性,本地发电机可输出超过本地负载需求的那部分电力,但需提供适当的控制。必须用定期进行的大量采样来对电压及电流反馈进行监控,以与电网及发电机两边的情况相匹配,这其中包括功率因素(PF)及无功功率(VAR)监视等。
控制逻辑必须能同时保护公共电网连接以及油机和发电机。在电网这一侧,电网保护包括欠/过电压、欠/过频率、过电流以及非均衡电流与电压等。除现场没有以外,都应将以上所有保护措施应用到发电机上。这是其中的一种应用。
另一种就是常见在计算机机房应用,原理类似。
热心网友
时间:2023-07-15 10:43
NTSD使用手册
NTSD(Microsoft Windows NT Symbolic/Systems Debugger)是Windows 2000默认安装的一
个调试器,可惜没怎么看到人提这个东西。这其实是一个命令行版本的WinDBG,功能上稍微
缩了一点水,但是对一般的调试来说是足够用了。这个东西好就好在凡是Windows 2000都有,
而且只要开个终端服务或者VNC 就可以远程用。最近看溢出的东西,觉得这个有时候确实比
softice方便,特别是在别人机器上调的时候:-)。我翻译了NTSD的大部分帮助,有些不知道
该怎么翻译,有些是懒,就没翻了。NTSD还支持一些帮助中没提到的命令,也在后面列出来
了。
usage: NTSD [-v] [-2] [-d] [-o] [-g] [-G] [-w] [-lines]
[-aDllName] [-s] [-r BreakErrorLevel] [-t PrintErrorLevel]
[-hd] [-x | -xd [except#] | -xe [except#]] [-e] [-z]
[-- | -p pid | command-line]
where: -? displays this help text
-aDllName sets the default extension DLL
-c executes the following debugger command
指定要执行的调试命令,多个命令之间用“;”分隔
-d sends all debugger output to kernel debugger via DbgPrint
-g ignores initial breakpoint in debuggee
-G ignores final breakpoint at process termination
-hd disables heap manager validity checking
-i ignores AV generated by loader fixups on pre3.51 systems
-lines requests that line number information be used if present
-netsyms:{yes|no} allow or disallow loading symbols from a network path
-o debugs all processes launched by debuggee
-r specifies the (0-3) error level to break on (SeeSetErrorLevel)
-s disables lazy symbol loading
-t specifies the (0-3) error level to display (SeeSetErrorLevel)
-v enables verbose output from debugger
-n enables verbose output from symbol handler
-w specifies to debug 16 bit applications in a separate VDM
-x disables break on AV exceptions
-xd disables stopping on specified exception
-xe enables stopping on specified exception
-z reserved for OS/2 debugging
-2 creates a separate console window for debuggee
对于控制台程序,将输出定向到另一个窗口而不在NTSD窗口显示
热心网友
时间:2023-07-15 10:44
是一种调试器。