资源列表
[matlab例程] N-R
说明:将用matlab编译的N-R法用于潮流计算是以导纳矩阵为基础的,由于利用了导纳矩阵的对称性、稀疏性及节点编号顺序优化等技巧,使N-R法在收敛性、占用内存、计算速度方面的优点都超过了阻抗法,成为六十年代末期以后普遍采用的方法。-Matlab compiler will use the N-R method for power flow calculation is based on admittance matrix-based, due to the use of the admittance<郝立颖> 在 2025-07-24 上传 | 大小:5kb | 下载:0
[matlab例程] PQ
说明:PQ分解法在计算潮流速度上大大超过N-R法,不但能应用于离线潮流计算,而且也能应用于在线潮流计算。-PQ decomposition method in the calculation of the trend of speed much higher than the N-R method, not only applies to off-line power flow calculation, but also can be used in-line power flow calculati<郝立颖> 在 2025-07-24 上传 | 大小:5kb | 下载:0
[数据结构常用算法] qSort
说明:快速排序算法是基于分治策略的另一个排序算法。其基本思想是,对于输入的字数组a[p:r],按以下3个步骤进行排序: (1)分解:以a[p]为基准元素将a[p:r]划分成3段a[p:q-1],a[q]和a[q+1:r],使得a[p:q-1]中任何元素小于等于a[q],a[q+1:r],中的任何元素大于等于a[q]。下标q在划分过程中确定 (2)递归求解:通过递归调用快速排序算法,分别对a[p:q-1]和a[q+1:r]进行排序 (3)合并:在a[p:q-1]和a[q+1:r]已经排好序的<忠波> 在 2025-07-24 上传 | 大小:1kb | 下载:0