登录
首页 » C# » PQ decomposition method

PQ decomposition method

于 2019-04-23 发布
0 235
下载积分: 1 下载次数: 2

代码说明:

说明:  进行PQ分解,计算电力系统潮流的有效方法,应用广泛(PQ decomposition is an effective method for calculating power flow in power system.)

文件列表:

PQ分解法潮流计算\PFC_PQ\bin\Debug\ExtendedMath.dll, 16384 , 2018-01-24
PQ分解法潮流计算\PFC_PQ\bin\Debug\input.txt, 124 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\bin\Debug\output.txt, 10273 , 2019-01-08
PQ分解法潮流计算\PFC_PQ\bin\Debug\PFC_PQ.exe, 39424 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\bin\Debug\PFC_PQ.pdb, 122368 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\bin\Debug\PFC_PQ.vshost.exe, 11600 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\bin\Debug\PFC_PQ.vshost.exe.manifest, 490 , 2017-09-29
PQ分解法潮流计算\PFC_PQ\ExtendedMath.cs, 41962 , 2018-07-02
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache, 5879 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\PFC_PQ.csproj.FileListAbsolute.txt, 717 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\PFC_PQ.csprojResolveAssemblyReference.cache, 13368 , 2018-01-24
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\PFC_PQ.exe, 39424 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\PFC_PQ.pdb, 122368 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\ResolveAssemblyReference.cache, 11676 , 2018-01-24
PQ分解法潮流计算\PFC_PQ\PFC_PQ.csproj, 2476 , 2018-06-29
PQ分解法潮流计算\PFC_PQ\Program.cs, 66309 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\Properties\AssemblyInfo.cs, 1362 , 2018-01-16
PQ分解法潮流计算\PQ分解法潮流计算.sln, 860 , 2018-01-16
PQ分解法潮流计算\PQ分解法潮流计算.suo, 32256 , 2018-07-04
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug\TempPE, 0 , 2018-01-16
PQ分解法潮流计算\PFC_PQ\obj\x86\Debug, 0 , 2018-07-03
PQ分解法潮流计算\PFC_PQ\bin\Debug, 0 , 2018-07-02
PQ分解法潮流计算\PFC_PQ\bin\Release, 0 , 2018-01-20
PQ分解法潮流计算\PFC_PQ\obj\x86, 0 , 2018-01-24
PQ分解法潮流计算\PFC_PQ\bin, 0 , 2018-01-24
PQ分解法潮流计算\PFC_PQ\obj, 0 , 2018-01-24
PQ分解法潮流计算\PFC_PQ\Properties, 0 , 2018-01-24
PQ分解法潮流计算\PFC_PQ, 0 , 2018-06-29
PQ分解法潮流计算, 0 , 2018-01-24

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • FractalDim
    盒维数计算和豪斯多夫维数的计算与应用研究程序(box counting)
    2013-07-27 17:50:31下载
    积分:1
  • 11087 统逆序对
    Description 设a[0…n-1]是一个包含n个数的数组,若在i<j的情况下,有a[i]>a[j],则称(i, j)为a数组的一个逆序对(inversion)。 比如 <2,3,8,6,1> 有5个逆序对。请采用类似“合并排序算法”的分治思路以O(nlogn)的效率来实现逆序对的统计。 一个n个元素序列的逆序对个数由三部分构成: (1)它的左半部分逆序对的个数,(2)加上右半部分逆序对的个数,(3)再加上左半部分元素大于右半部分元素的数量。 其中前两部分(1)和(2)由递归来实现。要保证算法最后效率O(nlogn),第三部分(3)应该如何实现? 此题请勿采用O(n^2)的简单枚举算法来实现。 并思考如下问题: (1)怎样的数组含有最多的逆序对?最多的又是多少个呢? (2)插入排序的运行时间和数组中逆序对的个数有关系吗?什么关系? 输入格式 第一行:n,表示接下来要输入n个元素,n不超过10000。 第二行:n个元素序列。 输出格式 逆序对的个数。 输入样例 5 2 3 8 6 1 输出样例 5(Set a[0... N-1] is a n array containing n numbers. If there is a [i] > a [j] i n the case of I < j, then (i, j) is a n inversion pair of a array. For example, <2,3,8,6,1> has five reverse pairs. Please use the idea of "merge sorting algorithm" to achieve the statistics of inverse pairs with O (nlogn) efficiency. The number of inverse pairs of a sequence of n elements consists of three parts: (1) The number of reverse pairs in the left half, (2) the number of reverse pairs in the right half, (3) the number of elements in the left half is greater than that in the right half. The first two parts (1) and (2) are implemented by recursion. To ensure the final efficiency of the algorithm O (nlogn), how should the third part (3) be implemented? Do not use O (n ^ 2) simple enumeration algorithm to solve this problem.)
    2019-01-07 23:52:06下载
    积分:1
  • srfft
    FFT DIF 分裂基的C语言代码,比较好的说明了整个流程(FFT DIF split the base of the C language code, better explains the entire process)
    2010-06-02 17:10:36下载
    积分:1
  • aitejin
    艾特金迭代法求解线性方程组源代码,在程序中修改方程就可以(Aitkin iterative method for solving linear equations source code, the equation can be modified in the program)
    2012-06-03 16:08:11下载
    积分:1
  • 地震记录的据 record
    地震记录的数据,可以用来绘制地震记录,也可以作为地震反演的数据(Seismic wave inverse time migration program can realize the inversion of seismic wave)
    2017-09-23 11:04:28下载
    积分:1
  • 9.2.2
    最小二乘法拟合形如f(x)=(a+bx)/(1+cx)的函数(9.2.2(1)),并解决人口预测问题(9.2.2(2))(Least squares fit of the form f (x) = (a+bx)/(1+cx) function (9.2.2 (1)), and to solve the population prediction problem (9.2.2 (2)))
    2021-01-01 14:38:58下载
    积分:1
  • CompDam_DGD
    摩擦力是抵抗固體表面,流體層和材料元件相對滑動的相對運動的力。有幾種類型的摩擦:幹摩擦是一種與之相反的力(friction is the force resisting the relative motion of solid surfaces, fluid layers, and material elements sliding against each other. There are several types of friction: Dry friction is a force that opposes the)
    2020-06-23 10:00:01下载
    积分:1
  • FCTVOFMain
    FCTVOF的主程序,其中FCTVOF是求解关于VOF值的运输方程的一种经典算法,可求出各时刻的各网格的VOF值,从而利用界面重构技术实现界面的重构。(FCTVOF main program, including FCTVOF is for solving the transport equation of VOF value a classic algorithm, can calculate the VOF value of each moment of each grid, so as to make use of the interface to refactor the technical implementation interface. )
    2021-01-19 22:08:42下载
    积分:1
  • valve
    说明:  一个在fluent udf中使用Compute_Force_and_Moment函数计算力的算例(An Example of Compute_Force_and_Moment Function in Fluent UDF)
    2020-06-19 14:14:38下载
    积分:1
  • FAM
    用于计算谱相关函数的时域平花FFT积累算法,可改参数,改输入信号类型(calculate spectral correlation function by using time smoothing FFT Accumulation Algorithm, you can change the parameters, and the type of input signal )
    2021-04-06 18:59:02下载
    积分:1
  • 696516资源总数
  • 106409会员总数
  • 8今日下载