Package | Description |
---|---|
model.agent.humanAgent.aatom |
All AATOM related packages.
|
model.agent.humanAgent.aatom.strategicLevel |
Package contains all existing strategic models of an agent.
|
model.agent.humanAgent.aatom.strategicLevel.goal |
The goal module and its related classes.
|
model.agent.humanAgent.aatom.strategicLevel.reasoning.planning |
Planning related classes.
|
model.agent.humanAgent.aatom.tacticalLevel |
Tactical level related classes.
|
model.agent.humanAgent.aatom.tacticalLevel.activity.passenger.impl |
Basic operator activity implementations.
|
model.agent.humanAgent.aatom.tacticalLevel.navigation |
The navigation module and related classes.
|
model.environment.objects.flight |
Flight related classes.
|
simulation.simulation.agentGenerator |
The agent generators.
|
util.analytics |
The analytics package contains classes that analyze parameters of the
simulation.
|
Modifier and Type | Field and Description |
---|---|
private Flight |
Passenger.flight
The
Flight of the agent. |
protected Flight |
Passenger.Builder.flight |
Modifier and Type | Method and Description |
---|---|
Flight |
Passenger.getFlight()
Gets the
Flight the passenger is on. |
Modifier and Type | Method and Description |
---|---|
T |
Passenger.Builder.setFlight(Flight flight)
Set the
Flight . |
Constructor and Description |
---|
Passenger(Flight flight,
boolean checkedIn,
java.lang.Class<? extends Facility> facility,
Position position,
double radius,
double mass,
java.util.Collection<Luggage> luggage,
StrategicModel strategicModel,
TacticalModel tacticalModel,
OperationalModel operationalModel,
java.awt.Color color)
|
Modifier and Type | Field and Description |
---|---|
private Flight |
BasicPassengerStrategicModel.flight
The flight.
|
Constructor and Description |
---|
BasicPassengerStrategicModel(java.lang.Class<? extends Facility> facility,
boolean checkedIn,
MathDistribution checkPointDropTime,
MathDistribution checkPointCollectTime,
Flight flight)
Creates the goal module for passenger based on a facility visit,
checked-in and flight.
|
Modifier and Type | Method and Description |
---|---|
private static java.util.Collection<Goal> |
BasicPassengerGoalModule.getPassengerGoals(java.lang.Class<? extends Facility> facility,
boolean checkedIn,
MathDistribution checkPointDropTime,
MathDistribution checkPointCollectTime,
Flight flight)
Gets the goals for the passenger.
|
Constructor and Description |
---|
BasicPassengerGoalModule(java.lang.Class<? extends Facility> facility,
boolean checkedIn,
MathDistribution checkPointDropTime,
MathDistribution checkPointCollectTime,
Flight flight)
Creates the goal module for passenger based on a facility visit,
checked-in and flight.
|
Modifier and Type | Field and Description |
---|---|
private Flight |
BasicPassengerPlanner.flight
The flight.
|
Constructor and Description |
---|
BasicPassengerPlanner(Flight flight,
boolean checkedIn)
Creates a basic passenger planner.
|
Constructor and Description |
---|
BasicPassengerTacticalModel(Flight flight)
Creates a basic high level model with a certain desired speed.
|
Modifier and Type | Field and Description |
---|---|
private Flight |
BasicPassengerCheckInActivity.flight
The flight of the agent.
|
Constructor and Description |
---|
BasicGateActivity(Flight flight)
Creates the gate activity.
|
BasicPassengerBorderControlActivity(Flight flight)
Creates a check-in activity.
|
BasicPassengerCheckInActivity(Flight flight)
Creates a check-in activity.
|
BasicRegionalCheckpointActivity(Flight flight,
MathDistribution dropDistribution,
MathDistribution collectDistribution)
Creates a checkpoint activity with a specified high level model of an
agent.
|
BasicSchipholCheckpointActivity(Flight flight,
MathDistribution dropDistribution,
MathDistribution collectDistribution)
Creates a checkpoint activity with a specified high level model of an
agent.
|
Modifier and Type | Field and Description |
---|---|
private Flight |
PassengerNavigationModule.flight
The flight.
|
Constructor and Description |
---|
PassengerNavigationModule(Flight flight)
Create a goal activity.
|
PassengerNavigationModule(Flight flight,
java.util.List<Position> goalPositions)
Creates a goal activity.
|
Modifier and Type | Field and Description |
---|---|
static Flight |
Flight.NO_FLIGHT
Holder for no flight.
|
Modifier and Type | Method and Description |
---|---|
protected Flight |
BaseAgentGenerator.getEligibleFlight()
Returns an eligible flight.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.List<Flight> |
FlightSpecificAgentGenerator.getEligibleFlights()
Returns the eligible flights.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
FlightSpecificAgentGenerator.canGenerate(double timeStep,
Flight flight)
Determines if the agent is generated.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<Flight> |
MissedFlightsAnalyzer.flightSchedule
The flight schedule.
|
private java.util.HashMap<Flight,java.lang.Integer> |
MissedFlightsAnalyzer.missedFlights
The missed flights.
|
private java.util.List<Flight> |
TimeToGatePerFlightAnalyzer.schedule
The flight schedule.
|
private java.util.HashMap<Flight,java.util.HashMap<Passenger,java.lang.Double>> |
TimeToGatePerFlightAnalyzer.timeToGate
The time to gate hashmap.
|