-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathArrival.java
48 lines (45 loc) · 1.36 KB
/
Arrival.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.scottishseafarms.particle_track;
/**
* This class is used to record an instance of an arrival within the particle class,
* so that particles can build a list of arrival instances that they make, independently
* of the simulation-wide arrays. This avoid concurrent updating, but requires postprocessing
* at the end of the run to count arrivals.
*
* NOT PRESENTLY USED 21/11/18
*
* @author sa01ta
*/
public class Arrival {
private int sourceLocation;
private int arrivalLocation;
private double arrivalTime;
private double arrivalDensity;
public Arrival(int sourceLocation, int arrivalLocation, double arrivalTime, double arrivalDensity)
{
this.sourceLocation=sourceLocation;
this.arrivalLocation=arrivalLocation;
this.arrivalTime=arrivalTime;
this.arrivalDensity=arrivalDensity;
}
public int getSourceLocation()
{
return this.sourceLocation;
}
public int getArrivalLocation()
{
return this.arrivalLocation;
}
public double getArrivalTime()
{
return this.arrivalTime;
}
public double getArrivalDensity()
{
return this.arrivalDensity;
}
}