Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5da4d8d
init branch
Jerry-Jinfeng-Guo Sep 2, 2025
8279eba
[skip ci] w.i.p. new early out premp
Jerry-Jinfeng-Guo Sep 3, 2025
91d1237
Merge remote-tracking branch 'remotes/origin/main' into feature/full-…
Jerry-Jinfeng-Guo Sep 4, 2025
01de3b0
fix err
Jerry-Jinfeng-Guo Sep 22, 2025
245b392
minor refactor
Jerry-Jinfeng-Guo Sep 22, 2025
2c23072
add basic structs for the prep
Jerry-Jinfeng-Guo Sep 22, 2025
a48b7a8
pre-processing in place
Jerry-Jinfeng-Guo Sep 22, 2025
5ddd007
correct y_bus ordering handling
Jerry-Jinfeng-Guo Sep 24, 2025
3697a5e
expand neighbour list to bi-directional
Jerry-Jinfeng-Guo Sep 24, 2025
1289bcf
logic finding spanning tree
Jerry-Jinfeng-Guo Sep 24, 2025
cfdf4d5
remove the early out option for now. some test cases are faulty
Jerry-Jinfeng-Guo Sep 25, 2025
75c0b5e
[skip ci] early out necessary condition
Jerry-Jinfeng-Guo Sep 25, 2025
d3990a7
[skip ci] added back sufficient early out; same faulty test case in i…
Jerry-Jinfeng-Guo Sep 28, 2025
b38bbac
[skip ci] branch init
Jerry-Jinfeng-Guo Sep 28, 2025
c9d7ce9
fixed faulty test
Jerry-Jinfeng-Guo Sep 28, 2025
338cab3
re-configure explicit observability validation test
Jerry-Jinfeng-Guo Sep 28, 2025
75697dd
Merge branch 'main' into feature/full-observability-check-meshed-netw…
Jerry-Jinfeng-Guo Sep 29, 2025
770ca52
Merge branch 'feature/full-observability-check-meshed-network-without…
Jerry-Jinfeng-Guo Sep 29, 2025
56deb2c
processing comments
Jerry-Jinfeng-Guo Oct 8, 2025
6eef7c3
Merge branch 'feature/full-observability-check-meshed-network-without…
Jerry-Jinfeng-Guo Oct 8, 2025
ec2bdd7
sonar cloud
Jerry-Jinfeng-Guo Oct 8, 2025
80673e2
Merge branch 'feature/full-observability-check-meshed-network-without…
Jerry-Jinfeng-Guo Oct 8, 2025
a5cef74
sonar cloud
Jerry-Jinfeng-Guo Oct 8, 2025
e3343a5
Merge branch 'feature/full-observability-check-meshed-network-without…
Jerry-Jinfeng-Guo Oct 8, 2025
98d21de
Merge pull request #1139 from PowerGridModel/feature/reconfigure-test…
Jerry-Jinfeng-Guo Oct 8, 2025
2316f0b
sonar cloud
Jerry-Jinfeng-Guo Oct 9, 2025
615edc7
sonar cloud
Jerry-Jinfeng-Guo Oct 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ template <symmetry_tag sym_type> class IterativeLinearSESolver {
sub_timer = Timer{log, LogEvent::preprocess_measured_value};
MeasuredValues<sym> const measured_values{y_bus.shared_topology(), input};
auto const observability_result =
observability_check(measured_values, y_bus.math_topology(), y_bus.y_bus_structure());
observability::observability_check(measured_values, y_bus.math_topology(), y_bus.y_bus_structure());

// prepare matrix
sub_timer = Timer{log, LogEvent::prepare_matrix_including_prefactorization};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ template <symmetry_tag sym_type> class NewtonRaphsonSESolver {
sub_timer = Timer{log, LogEvent::preprocess_measured_value};
MeasuredValues<sym> const measured_values{y_bus.shared_topology(), input};
auto const observability_result =
observability_check(measured_values, y_bus.math_topology(), y_bus.y_bus_structure());
observability::observability_check(measured_values, y_bus.math_topology(), y_bus.y_bus_structure());

// initialize voltage with initial angle
sub_timer = Timer{log, LogEvent::initialize_voltages};
Expand Down
Loading
Loading