use of com.opensimulationplatform.core.model.modeldescription.variablegroup.force.Force in project osp-validator by open-simulation-platform.
the class VE_VariableGroupConnection_2_Test method invalid.
@Test
public void invalid() {
Force va = new Force();
va.setName("va");
Variable v1 = new Variable();
v1.setName("not-unique");
v1.setType(Variable.Type.REAL);
v1.setCausality(Variable.Causality.OUTPUT);
Variable v2 = new Variable();
v2.setName("not-unique");
v2.setType(Variable.Type.REAL);
v2.setCausality(Variable.Causality.OUTPUT);
va.setVariables(Arrays.asList(v1, v2));
LinearVelocity vb = new LinearVelocity();
vb.setName("vb");
Variable v3 = new Variable();
v3.setName("not-unique");
v3.setType(Variable.Type.REAL);
v3.setCausality(Variable.Causality.INPUT);
Variable v4 = new Variable();
v4.setName("not-unique");
v4.setType(Variable.Type.REAL);
v4.setCausality(Variable.Causality.INPUT);
vb.setVariables(Arrays.asList(v3, v4));
VariableGroupConnection vgc = new VariableGroupConnection();
vgc.setVariableGroupA(va);
vgc.setVariableGroupB(vb);
vgc.setSimulatorA(new Simulator());
vgc.setSimulatorB(new Simulator());
builder.build(vgc);
builder.complete();
List<ValidationDiagnostic<VariableGroupConnection>> diagnostics = validationError.validate();
assertEquals(1, diagnostics.size());
VariableGroupConnection invalidVariableConnection = diagnostics.get(0).getValidatedObject();
assertEquals(vgc, invalidVariableConnection);
assertEquals(va, invalidVariableConnection.getVariableGroupA());
assertEquals(vb, invalidVariableConnection.getVariableGroupB());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.force.Force in project osp-validator by open-simulation-platform.
the class VE_VariableGroupConnection_3_Test method invalid.
@Test
public void invalid() {
Force va = new Force();
va.setName("va");
Variable v1 = new Variable();
v1.setName("v1");
v1.setType(Variable.Type.REAL);
v1.setCausality(Variable.Causality.INPUT);
Variable v2 = new Variable();
v2.setName("v2");
v2.setType(Variable.Type.REAL);
v2.setCausality(Variable.Causality.INPUT);
va.setVariables(Arrays.asList(v1, v2));
LinearVelocity vb = new LinearVelocity();
vb.setName("vb");
Variable v3 = new Variable();
v3.setName("v3");
v3.setType(Variable.Type.REAL);
v3.setCausality(Variable.Causality.INPUT);
Variable v4 = new Variable();
v4.setName("v4");
v4.setType(Variable.Type.REAL);
v4.setCausality(Variable.Causality.INPUT);
vb.setVariables(Arrays.asList(v3, v4));
VariableGroupConnection vgc = new VariableGroupConnection();
vgc.setVariableGroupA(va);
vgc.setVariableGroupB(vb);
vgc.setSimulatorA(new Simulator());
vgc.setSimulatorB(new Simulator());
builder.build(vgc);
builder.complete();
List<ValidationDiagnostic<VariableGroupConnection>> diagnostics = validationError.validate();
assertEquals(1, diagnostics.size());
VariableGroupConnection invalidVariableConnection = diagnostics.get(0).getValidatedObject();
assertEquals(vgc, invalidVariableConnection);
assertEquals(va, invalidVariableConnection.getVariableGroupA());
assertEquals(vb, invalidVariableConnection.getVariableGroupB());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.force.Force in project osp-validator by open-simulation-platform.
the class VE_VariableGroupConnection_3_Test method valid.
@Test
public void valid() {
Force va = new Force();
va.setName("va");
Variable v1 = new Variable();
v1.setName("v1");
v1.setType(Variable.Type.REAL);
v1.setCausality(Variable.Causality.OUTPUT);
Variable v2 = new Variable();
v2.setName("v2");
v2.setType(Variable.Type.REAL);
v2.setCausality(Variable.Causality.OUTPUT);
va.setVariables(Arrays.asList(v1, v2));
LinearVelocity vb = new LinearVelocity();
vb.setName("vb");
Variable v3 = new Variable();
v3.setName("v3");
v3.setType(Variable.Type.REAL);
v3.setCausality(Variable.Causality.INPUT);
Variable v4 = new Variable();
v4.setName("v4");
v4.setType(Variable.Type.REAL);
v4.setCausality(Variable.Causality.INPUT);
vb.setVariables(Arrays.asList(v3, v4));
VariableGroupConnection vgc = new VariableGroupConnection();
vgc.setVariableGroupA(va);
vgc.setVariableGroupB(vb);
vgc.setSimulatorA(new Simulator());
vgc.setSimulatorB(new Simulator());
builder.build(vgc);
builder.complete();
List<ValidationDiagnostic<VariableGroupConnection>> diagnostics = validationError.validate();
assertTrue(diagnostics.isEmpty());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.force.Force in project osp-validator by open-simulation-platform.
the class VariableGroupConnectionsValidatorTest method invalid.
@Test
public void invalid() {
SystemStructure systemStructure = new SystemStructure();
VariableGroupConnection variableGroupConnection = new VariableGroupConnection();
Simulator simulatorA = new Simulator();
Force force = new Force();
force.setName("force");
Variable variableA = new Variable();
Unit unitA = new Unit();
unitA.setExponent(Unit.Exponent.KILOGRAM, 1);
variableA.setName("variableA");
variableA.setUnit(unitA);
variableA.setType(Variable.Type.REAL);
variableA.setCausality(Variable.Causality.OUTPUT);
force.setVariables(Arrays.asList(variableA));
simulatorA.getModelDescription().getVariables().add(variableA);
simulatorA.getModelDescription().getForces().add(force);
variableGroupConnection.setSimulatorA(simulatorA);
variableGroupConnection.setVariableGroupA(force);
Simulator simulatorB = new Simulator();
LinearVelocity linearVelocity = new LinearVelocity();
linearVelocity.setName("linearVelocity");
Variable variableB = new Variable();
Unit unitB = new Unit();
unitB.setExponent(Unit.Exponent.KILOGRAM, 1);
variableB.setName("variableB");
variableB.setUnit(unitB);
variableB.setType(Variable.Type.REAL);
variableB.setCausality(Variable.Causality.INPUT);
linearVelocity.setVariables(Arrays.asList(variableB));
simulatorB.getModelDescription().getVariables().add(variableB);
simulatorB.getModelDescription().getLinearVelocities().add(linearVelocity);
variableGroupConnection.setSimulatorB(simulatorB);
variableGroupConnection.setVariableGroupB(linearVelocity);
systemStructure.getSimulators().add(simulatorA);
systemStructure.getSimulators().add(simulatorB);
systemStructure.getVariableGroupConnections().add(variableGroupConnection);
VariableGroupConnectionsValidator validator = new VariableGroupConnectionsValidator();
List<ValidationDiagnostic<VariableGroupConnection>> diagnostics = validator.validate(systemStructure);
assertEquals(1, diagnostics.size());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.force.Force in project osp-validator by open-simulation-platform.
the class VE_VariableGroupConnection_1_Test method valid.
@Test
public void valid() {
VariableGroup va = new Force();
va.setName("va");
VariableGroup vb = new Force();
vb.setName("vb");
VariableGroupConnection vgc = new VariableGroupConnection();
vgc.setVariableGroupA(va);
vgc.setVariableGroupB(vb);
vgc.setSimulatorA(new Simulator());
vgc.setSimulatorB(new Simulator());
builder.build(vgc);
builder.complete();
List<ValidationDiagnostic<VariableGroupConnection>> diagnostics = validationError.validate();
assertTrue(diagnostics.isEmpty());
}
Aggregations