Skip to content

Commit a9f54e5

Browse files
committed
Added motion actuated variant for actuator sizing
1 parent 5c22ce4 commit a9f54e5

File tree

242 files changed

+1385
-250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+1385
-250
lines changed
File renamed without changes.

Models/BOF_TOF/Excavator_BOFTOFLoad_plot.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_BOFTOFLoad_plot(ExcvGlobal,fLoad,test_type,pBoom,pStick,pBucket,pinForces,varargin)
22
% Code to plot load chart
33

4-
% Copyright 2022 The MathWorks, Inc
4+
% Copyright 2022-2023 The MathWorks, Inc
55

66
% Assume no new figure needed
77
createFigure = false;

Models/BOF_TOF/Excavator_LoadChart_Create.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_LoadChart_Create(qBoomSet,qStickSet,qBucketSet,setupMdl,calcMdl,useFastRestart,varargin)
22
% Code to create load chart based on simulations
33

4-
% Copyright 2022 The MathWorks, Inc
4+
% Copyright 2022-2023 The MathWorks, Inc
55

66
% If an axis handle has been passed, plot on that axis
77
% Else, the standard figure will be used

Models/BOF_TOF/Excavator_LoadChart_Plot.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_LoadChart_Plot(ExcvGlobal,bucketEdgeXY_set,load_set,varargin)
22
% Code to plot load chart
33

4-
% Copyright 2022 The MathWorks, Inc
4+
% Copyright 2022-2023 The MathWorks, Inc
55

66
% Assume no new figure needed
77
createFigure = false;
2 Bytes
Binary file not shown.
3 Bytes
Binary file not shown.

Models/BOF_TOF/Excavator_RunBOFTOF.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [fLoad,test_type,pBoom,pStick,pBucket,PinForces] = Excavator_RunBOFTOF(setup_mdl,calc_mdl,testType)
22
% Code to run BOF, TOF, or Load Capacity test
33

4-
% Copyright 2022 The MathWorks, Inc
4+
% Copyright 2022-2023 The MathWorks, Inc
55

66
if(endsWith(setup_mdl,'.slx'))
77
setup_mdl = setup_mdl(1:end-4);

Models/BOF_TOF/Excavator_RunBOFTOF_sweep_pinLocRand.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% Script to sweep pin locations
2-
% Copyright 2022 The MathWorks, Inc
2+
% Copyright 2022-2023 The MathWorks, Inc
33

44
[~, PinLocTable] = Excavator_Pin_Locations_global('Design A');
55
PinLocTableFINISH = PinLocTable;

Models/BOF_TOF/Excavator_getDesignPosition.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [boomAngle, stickAngle, bucketAngle] = Excavator_getDesignPosition(ExcvGlobal)
22
% Function to calculate angles that describe current position of excavator.
33

4-
% Copyright 2022 The MathWorks, Inc
4+
% Copyright 2022-2023 The MathWorks, Inc
55

66
% Boom Angle
77
vecA = ExcvGlobal.Chassis.ToBoom-ExcvGlobal.Chassis.ToBoomCyl;

Models/BOF_TOF/Excavator_simlogToBOFTOF.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [fLoad,test_type,pBoom,pStick,pBucket,pinForces]= Excavator_simlogToBOFTOF(logsoutData)
22
% Function to extract load and pressures from simulation results.
33

4-
% Copyright 2022 The MathWorks, Inc
4+
% Copyright 2022-2023 The MathWorks, Inc
55

66
fLoad = logsoutData.get('Load_kN').Values.Data;
77
pBoom = logsoutData.get('CylPr_bar').Values.Data(1);

0 commit comments

Comments
 (0)