Tobias Bergkvist
Tobias Bergkvist
## It would be nice if there was a way of getting the maximum available power for every load, along with efficiency of every load for a given network Jacobi's...
How it would work: 1. Ignore any impedance in lines/transformers 2. Turn cycles in the network graph into single buses by merging all buses in each cycle. 3. Calculate the...
Would be nice if pygraphblas was possible to install using pip or conda.
https://en.wikipedia.org/wiki/Holomorphic_embedding_load_flow_method This is great for a real-time grid monitoring system, because convergence is guaranteed if a solution exists (in contrast to Newton-Rhapson Powerflow).
Continuation power flow allows for assessing the voltage stability of a grid. It allows you to see the maximum power you can extract from a given bus in a network....
It seems like tigerbeetle is optimised for inserts rather than analytical queries. I believe for smaller scale hobby projects or startups, the 1M TPS is not going to matter much,...
Using flakes is not an option for me. I'm deploying to NixOS-machines, and want my build-pipelines to be faster when nothing has changed. It seems like mach-nix might be doing...
### Zig Version 0.10.1 (macOS, aarch64) ### Steps to Reproduce and Observed Behavior ```zig const c = @cImport({ @cInclude("arpa/inet.h"); }); pub fn main() !void { _ = c.htons(8000); } ```...
**Bug Report** When using if-statements, the type is being properly narrowed depending on the conditions checked. mypy seems unable to do the same type of narrowing in a match statement...
### Improve inference/narrowing support for union types in match statements. Fixes #17549 Before: ```py var: tuple[int, int] | tuple[str, str] # TODO: we can infer better here. match var: case...