File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
power_grid_model_c/power_grid_model/include/power_grid_model Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ template <symmetry_tag sym_type> struct TransformerTapRegulatorMathOutput {
131
131
IntS tap_pos{na_IntS};
132
132
};
133
133
134
- // from, to side
134
+ // from side , to side
135
135
// in case of indices for math model, -1 means the branch is not connected to that side
136
136
using BranchIdx = std::array<Idx, 2 >;
137
137
// node 0, 1, 2 side
@@ -154,7 +154,6 @@ struct MathModelTopology {
154
154
DenseGroupedIdxVector power_sensors_per_branch_from;
155
155
DenseGroupedIdxVector power_sensors_per_branch_to;
156
156
DenseGroupedIdxVector power_sensors_per_bus;
157
- DenseGroupedIdxVector transformer_tap_regulators_per_branch;
158
157
159
158
Idx n_bus () const { return static_cast <Idx>(phase_shift.size ()); }
160
159
@@ -179,8 +178,6 @@ struct MathModelTopology {
179
178
Idx n_branch_to_power_sensor () const { return power_sensors_per_branch_to.element_size (); }
180
179
181
180
Idx n_bus_power_sensor () const { return power_sensors_per_bus.element_size (); }
182
-
183
- Idx n_transformer_tap_regulator () const { return transformer_tap_regulators_per_branch.element_size (); }
184
181
};
185
182
186
183
template <symmetry_tag sym_type> struct MathModelParam {
You can’t perform that action at this time.
0 commit comments