use of com.opensimulationplatform.core.model.modeldescription.variablegroup.VariableGroup in project osp-validator by open-simulation-platform.
the class Validator method addLinearMechanicalQuasiPort.
private void addLinearMechanicalQuasiPort(ModelDescription modelDescription, Map<Object, Object> map, LinearMechanicalQuasiPortType element) {
VariableGroup variableGroup = ModelDescriptionUtil.getVariableGroupByName(modelDescription, element.getName());
if (variableGroup != null) {
map.put(variableGroup, element);
addForce(modelDescription, map, element.getForce());
addLinearDisplacement(modelDescription, map, element.getLinearDisplacement());
}
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.VariableGroup in project osp-validator by open-simulation-platform.
the class Validator method addCurrent.
private void addCurrent(ModelDescription modelDescription, Map<Object, Object> map, CurrentType element) {
VariableGroup variableGroup = ModelDescriptionUtil.getVariableGroupByName(modelDescription, element.getName());
if (variableGroup != null) {
map.put(variableGroup, element);
addVariables(modelDescription, map, element.getVariable());
}
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.VariableGroup in project osp-validator by open-simulation-platform.
the class Validator method addForce.
private void addForce(ModelDescription modelDescription, Map<Object, Object> map, ForceType element) {
VariableGroup variableGroup = ModelDescriptionUtil.getVariableGroupByName(modelDescription, element.getName());
if (variableGroup != null) {
map.put(variableGroup, element);
addVariables(modelDescription, map, element.getVariable());
}
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.VariableGroup in project osp-validator by open-simulation-platform.
the class VE_VariableGroup_3_Test method invalid.
@Test
public void invalid() {
Generic vg1 = new Generic();
vg1.setName("vg1");
Generic vg2 = new Generic();
vg2.setName("vg2");
Variable v1 = new Variable();
v1.setName("not-unique");
v1.setCausality(Variable.Causality.INPUT);
v1.setType(Variable.Type.REAL);
Variable v2 = new Variable();
v2.setName("not-unique");
v2.setCausality(Variable.Causality.INPUT);
v2.setType(Variable.Type.REAL);
vg2.setVariables(Arrays.asList(v1, v2));
vg1.getGenerics().add(vg2);
builder.build(vg1);
builder.complete();
List<ValidationDiagnostic<VariableGroup>> diagnostics = validationError.validate();
assertEquals(1, diagnostics.size());
List<VariableGroup> invalidVariableGroups = diagnostics.stream().map(ValidationDiagnostic::getValidatedObject).collect(Collectors.toList());
assertTrue(invalidVariableGroups.contains(vg1));
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.VariableGroup in project osp-validator by open-simulation-platform.
the class VE_VariableGroup_1_Test method invalid.
@Test
public void invalid() {
Variable v1 = new Variable();
v1.setName("not-unique");
v1.setCausality(Variable.Causality.INPUT);
v1.setType(Variable.Type.REAL);
Variable v2 = new Variable();
v2.setName("not-unique");
v2.setCausality(Variable.Causality.INPUT);
v2.setType(Variable.Type.REAL);
Generic variableGroup = new Generic();
variableGroup.setVariables(Arrays.asList(v1, v2));
builder.build(variableGroup);
builder.complete();
List<ValidationDiagnostic<VariableGroup>> diagnostics = validationError.validate();
assertEquals(1, diagnostics.size());
List<VariableGroup> invalidVariableGroups = diagnostics.stream().map(ValidationDiagnostic::getValidatedObject).collect(Collectors.toList());
assertTrue(invalidVariableGroups.contains(variableGroup));
}
Aggregations