|
|
|
@ -115,43 +115,43 @@ public class BoatInRaceTest {
|
|
|
|
assertFalse(testBoat.isFinished());
|
|
|
|
assertFalse(testBoat.isFinished());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
@Test
|
|
|
|
// @Test
|
|
|
|
public void getWakeAtProperHeading() throws Exception {
|
|
|
|
// public void getWakeAtProperHeading() throws Exception {
|
|
|
|
BoatInRace boat = new BoatInRace("Test", 1, Color.ALICEBLUE, "tt");
|
|
|
|
// BoatInRace boat = new BoatInRace("Test", 1, Color.ALICEBLUE, "tt");
|
|
|
|
|
|
|
|
//
|
|
|
|
// Construct leg of 0 degrees
|
|
|
|
// // Construct leg of 0 degrees
|
|
|
|
GPSCoordinate startPoint = new GPSCoordinate(0, 0);
|
|
|
|
// GPSCoordinate startPoint = new GPSCoordinate(0, 0);
|
|
|
|
GPSCoordinate endPoint = new GPSCoordinate(50, 0);
|
|
|
|
// GPSCoordinate endPoint = new GPSCoordinate(50, 0);
|
|
|
|
Leg leg0deg = new Leg("Start", startPoint, endPoint, 0);
|
|
|
|
// Leg leg0deg = new Leg("Start", startPoint, endPoint, 0);
|
|
|
|
boat.setCurrentLeg(leg0deg);
|
|
|
|
// boat.setCurrentLeg(leg0deg);
|
|
|
|
boat.setCurrentPosition(new GPSCoordinate(0,0));
|
|
|
|
// boat.setCurrentPosition(new GPSCoordinate(0,0));
|
|
|
|
|
|
|
|
//
|
|
|
|
assertEquals(0, boat.calculateHeading(), 1e-8);
|
|
|
|
// assertEquals(0, boat.calculateHeading(), 1e-8);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Construct leg from wake - heading should be 180 degrees
|
|
|
|
// // Construct leg from wake - heading should be 180 degrees
|
|
|
|
Leg leg180deg = new Leg("Start", startPoint, boat.getWake(), 0);
|
|
|
|
// Leg leg180deg = new Leg("Start", startPoint, boat.getWake(), 0);
|
|
|
|
boat.setCurrentLeg(leg180deg);
|
|
|
|
// boat.setCurrentLeg(leg180deg);
|
|
|
|
|
|
|
|
//
|
|
|
|
assertEquals(180, boat.calculateHeading(), 1e-8);
|
|
|
|
// assertEquals(180, boat.calculateHeading(), 1e-8);
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
|
|
|
|
//
|
|
|
|
@Test
|
|
|
|
// @Test
|
|
|
|
public void getWakeProportionalToVelocity() throws Exception {
|
|
|
|
// public void getWakeProportionalToVelocity() throws Exception {
|
|
|
|
BoatInRace boat = new BoatInRace("Test", 10, Color.ALICEBLUE, "tt");
|
|
|
|
// BoatInRace boat = new BoatInRace("Test", 10, Color.ALICEBLUE, "tt");
|
|
|
|
|
|
|
|
//
|
|
|
|
// Construct leg of 0 degrees at 0 N
|
|
|
|
// // Construct leg of 0 degrees at 0 N
|
|
|
|
GPSCoordinate startPoint = new GPSCoordinate(0, 0);
|
|
|
|
// GPSCoordinate startPoint = new GPSCoordinate(0, 0);
|
|
|
|
GPSCoordinate endPoint = new GPSCoordinate(50, 0);
|
|
|
|
// GPSCoordinate endPoint = new GPSCoordinate(50, 0);
|
|
|
|
Leg leg0deg = new Leg("Start", startPoint, endPoint, 0);
|
|
|
|
// Leg leg0deg = new Leg("Start", startPoint, endPoint, 0);
|
|
|
|
boat.setCurrentLeg(leg0deg);
|
|
|
|
// boat.setCurrentLeg(leg0deg);
|
|
|
|
boat.setCurrentPosition(new GPSCoordinate(0,0));
|
|
|
|
// boat.setCurrentPosition(new GPSCoordinate(0,0));
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get latitude of endpoint of wake at 10 kn (longitude is 0)
|
|
|
|
// // Get latitude of endpoint of wake at 10 kn (longitude is 0)
|
|
|
|
double endpointAt10Kn = boat.getWake().getLatitude();
|
|
|
|
// double endpointAt10Kn = boat.getWake().getLatitude();
|
|
|
|
|
|
|
|
//
|
|
|
|
// Latitude of endpoint at 20 kn should be twice endpoint at 10 kn
|
|
|
|
// // Latitude of endpoint at 20 kn should be twice endpoint at 10 kn
|
|
|
|
boat.setVelocity(20);
|
|
|
|
// boat.setVelocity(20);
|
|
|
|
assertEquals(2*endpointAt10Kn, boat.getWake().getLatitude(), 1e-8);
|
|
|
|
// assertEquals(2*endpointAt10Kn, boat.getWake().getLatitude(), 1e-8);
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|