We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As the NetworkGraphBuilder the VoltageLevelRawBuilder does not have following methods:
The creation equipment method must be exhaustive.
Make VoltageLevelRawBuilder usage more simple.
Example of changes in VoltageLevelRawBuilder class:
public FeederNode createInductor(String id) { return createInductor(id, 0, null); } public FeederNode createInductor(String id, int order, Direction direction) { FeederNode fn = NodeFactory.createInductor(voltageLevelGraph, id, id); commonFeederSetting(fn, id, order, direction); return fn; } public FeederNode createCapacitor(String id) { return createCapacitor(id, 0, null); } public FeederNode createCapacitor(String id, int order, Direction direction) { FeederNode fn = NodeFactory.createCapacitor(voltageLevelGraph, id, id); commonFeederSetting(fn, id, order, direction); return fn; } public FeederNode createDanglingLine(String id) { return createCapacitor(id, 0, null); } public FeederNode createDanglingLine(String id, int order, Direction direction) { FeederNode fn = NodeFactory.createDanglingLine(voltageLevelGraph, id, id); commonFeederSetting(fn, id, order, direction); return fn; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the current behavior
As the NetworkGraphBuilder the VoltageLevelRawBuilder does not have following methods:
The creation equipment method is not exhaustive.
Describe the expected behavior
The creation equipment method must be exhaustive.
Describe the motivation
Make VoltageLevelRawBuilder usage more simple.
Extra Information
Example of changes in VoltageLevelRawBuilder class:
The text was updated successfully, but these errors were encountered: