Skip to content
New issue

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

CGMES conversion transformers unit tests #3195

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -97,25 +97,6 @@ public static GridModelReferenceResources microGridBaseCaseGeographicalRegionInB
new ResourceSet(base, CGMES_3_MICRO_GRID_EQ_BD));
}

public static GridModelReferenceResources microGridBaseCasePhaseTapChangerXMin() {
String base = CGMES_3_MODIFIED_TEST_MODELS
+ "/MicroGrid/phaseTapChangerXMin/";
return new GridModelReferenceResources(
"MicroGrid-phaseTapChanger-xMin",
null,
new ResourceSet(base, CGMES_3_MICRO_GRID_BE_EQ),
new ResourceSet(CGMES_3_MICRO_GRID_BASE,
CGMES_3_MICRO_GRID_ASSEMBLED_DL,
CGMES_3_MICRO_GRID_ASSEMBLED_SV,
CGMES_3_MICRO_GRID_BE_GL,
CGMES_3_MICRO_GRID_BE_SSH,
CGMES_3_MICRO_GRID_NL_EQ,
CGMES_3_MICRO_GRID_NL_GL,
CGMES_3_MICRO_GRID_NL_SSH,
CGMES_3_MICRO_GRID_ASSEMBLED_TP),
new ResourceSet(CGMES_3_MICRO_GRID_BASE, CGMES_3_MICRO_GRID_EQ_BD));
}

public static GridModelReferenceResources microGridBaseCaseAllTypesOfLoads() {
String base = CGMES_3_MODIFIED_TEST_MODELS
+ "/MicroGrid/allTypesOfLoads/";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -839,51 +839,6 @@ public static GridModelReferenceResources miniBusBranchT3xTwoRegulatingControlsE
MINI_GRID_TP));
}

public static GridModelReferenceResources miniBusBranchPhaseAngleClockZero() {
String base = ENTSOE_CONFORMITY_1_MODIFIED
+ "/MiniGrid/BusBranch/BaseCase_v3_phaseAngleClockZero/";
return new GridModelReferenceResources(
"MiniGrid-BusBranch-PhaseAngleClockZero",
null,
new ResourceSet(base,
MINI_GRID_EQ),
new ResourceSet(MINI_GRID_BUS_BRANCH_BASE,
MINI_GRID_SSH,
MINI_GRID_TP,
MINI_GRID_DL,
MINI_GRID_SV));
}

public static GridModelReferenceResources miniBusBranchT2xPhaseAngleClock1NonZero() {
String base = ENTSOE_CONFORMITY_1_MODIFIED
+ "/MiniGrid/BusBranch/BaseCase_v3_T2xPhaseAngleClock1NonZero/";
return new GridModelReferenceResources(
"MiniGrid-BusBranch-T2xPhaseAngleClock1NonZero",
null,
new ResourceSet(base,
MINI_GRID_EQ),
new ResourceSet(MINI_GRID_BUS_BRANCH_BASE,
MINI_GRID_SSH,
MINI_GRID_TP,
MINI_GRID_DL,
MINI_GRID_SV));
}

public static GridModelReferenceResources miniBusBranchT3xAllPhaseAngleClockNonZero() {
String base = ENTSOE_CONFORMITY_1_MODIFIED
+ "/MiniGrid/BusBranch/BaseCase_v3_T3xAllPhaseAngleClockNonZero/";
return new GridModelReferenceResources(
"MiniGrid-BusBranch-T3xAllPhaseAngleClockNonZero",
null,
new ResourceSet(base,
MINI_GRID_EQ),
new ResourceSet(MINI_GRID_BUS_BRANCH_BASE,
MINI_GRID_SSH,
MINI_GRID_TP,
MINI_GRID_DL,
MINI_GRID_SV));
}

public static GridModelReference miniBusBranchExternalInjectionControl() {
String base = ENTSOE_CONFORMITY_1_MODIFIED
+ "/MiniGrid/BusBranch/BaseCase_v3_external_injection_control/";
Expand Down Expand Up @@ -935,23 +890,6 @@ public static GridModelReferenceResources miniNodeBreakerLimitsforEquipment() {
MINI_GRID_BD_TP));
}

public static GridModelReferenceResources miniNodeBreakerInvalidT2w() {
String base = ENTSOE_CONFORMITY_1_MODIFIED
+ "/MiniGrid/NodeBreaker/BaseCase_Complete_v3_invalid_t2w/";
return new GridModelReferenceResources(
"MiniGrid-NodeBreaker-InvalidT2w",
null,
new ResourceSet(base,
MINI_GRID_EQ),
new ResourceSet(MINI_GRID_NODE_BREAKER_BASE,
MINI_GRID_DL,
MINI_GRID_SSH,
MINI_GRID_SV,
MINI_GRID_TP),
new ResourceSet(MINI_GRID_NODE_BREAKER_BD_BASE, MINI_GRID_BD_EQ,
MINI_GRID_BD_TP));
}

public static GridModelReferenceResources miniNodeBreakerSvInjection() {
String base = ENTSOE_CONFORMITY_1_MODIFIED
+ "/MiniGrid/NodeBreaker/BaseCase_Complete_v3_sv_injection/";
Expand Down
Loading