fixed cone radius and sigmoid sensor test parameters

This commit is contained in:
2025-11-14 13:33:32 -08:00
parent 855b28b066
commit 4363914215
5 changed files with 18 additions and 12 deletions

View File

@@ -93,6 +93,13 @@ classdef miSim
% Plot domain partitioning
[obj, f] = obj.plotPartitions(obj.partitionGraphIndex, f);
% Enforce plot limits
for ii = 1:size(obj.spatialPlotIndices, 2)
xlim(f.Children(1).Children(obj.spatialPlotIndices(ii)), [obj.domain.minCorner(1), obj.domain.maxCorner(1)]);
ylim(f.Children(1).Children(obj.spatialPlotIndices(ii)), [obj.domain.minCorner(2), obj.domain.maxCorner(2)]);
zlim(f.Children(1).Children(obj.spatialPlotIndices(ii)), [obj.domain.minCorner(3), obj.domain.maxCorner(3)]);
end
end
function [obj, f] = run(obj, f)
arguments (Input)