Luke Kiernan

Results 39 issues of Luke Kiernan

Quoting from the docs: "When `unsafe=true` is passed, if the type of `A` is already consistent with the type of mumps, then pointers to `A`'s memory are passed directly to...

I'm looking to use KLU in a package. Some of things that I'd like to be able to do are: 1. Run symbolic factorization, without running numeric factorization. 2. Check...

When I try to do `build_system(PSSEParsingTestSystems, "PSSE 30 Test System"; force_build=true)`, having PSY and PSB both `dev`'ed to their `psy5` branches, I get the following errrors: ``` ┌ Error: Three-winding...

Major overhaul of the "Public API Reference" page: I added docstrings for most things that were missing one, put links between related entries, and divided the page into 3 sub-sections....

Resolve issue #107 by removing the dependency on KLU's private interface. I did a performance comparison on a 10,000 bus system (`case_ACTIVSg10k.m`), and it's not consistent which is faster. I...

I realized that the trust region method is converging to nonsense solutions on the large `ACTIVSg10k` test system: ``` using PowerFlows, PowerSystemCaseBuilder sys = build_system(MatpowerTestSystems, "matpower_ACTIVSg10k_sys") pf_tr = ACPowerFlow{TrustRegionACPowerFlow}() data_tr...

A working implementation of Levenberg-Marquardt. See issue #138. There's a few details to chase down here, but it's 95% of the way there. One point of ickiness: I need to...

I've implemented and tested the "Magnitude Homotopy" approach method described [here](https://ieeexplore.ieee.org/document/6666905). There's more detail in #137. Brief description of their method: let `φ(x)` equal the sum of `0.5*(v_mag - 1.0)^2`...

Currently, the following variable scheme is built into our indexing: | Bus Type | Input variables in `x` | Power Balance Equations in `F` --- | --- | --- |...

wontfix

Find a robust, reliable way to construct a test case where the Jacobian matrix is singular, or find a different way to test that part of the code. This is...