Files
miSim/@agent/agent.m
2026-01-13 23:16:41 -08:00

43 lines
1.0 KiB
Matlab

classdef agent
properties (SetAccess = public, GetAccess = public)
% Identifiers
label = "";
% State
lastPos = NaN(1, 3); % position from previous timestep
pos = NaN(1, 3); % current position
% Sensor
sensorModel;
% Collision
collisionGeometry;
% FOV cone
fovGeometry;
% Communication
commsGeometry = spherical;
lesserNeighbors = [];
% Performance
performance = 0;
% Plotting
scatterPoints;
plotCommsGeometry = true;
end
properties (SetAccess = private, GetAccess = public)
initialStepSize = NaN;
stepDecayRate = NaN;
end
methods (Access = public)
[obj] = initialize(obj, pos, pan, tilt, collisionGeometry, sensorModel, guidanceModel, comRange, index, label);
[obj] = run(obj, domain, partitioning, t, index, agents);
[partitioning] = partition(obj, agents, objective)
[obj, f] = plot(obj, ind, f);
updatePlots(obj);
end
end