Skip to content
Snippets Groups Projects
Commit bea44f0a authored by Matteo Gotti's avatar Matteo Gotti
Browse files

[refactoring-ode][classes][bays] bugfix Motor class

parent 1d8860b4
Branches
No related tags found
1 merge request!3Refactoring ODE functions
...@@ -33,7 +33,6 @@ classdef Motor < Bay ...@@ -33,7 +33,6 @@ classdef Motor < Bay
properties(Dependent) properties(Dependent)
mass % [kg] Total Motor mass mass % [kg] Total Motor mass
fuselageXCg double % [m] xcg of the engine fuselage only from tank tip fuselageXCg double % [m] xcg of the engine fuselage only from tank tip
isHRE logical % [-] Flag relateed to the type of motor: true if HRE
end end
properties(Access = protected) properties(Access = protected)
...@@ -42,6 +41,10 @@ classdef Motor < Bay ...@@ -42,6 +41,10 @@ classdef Motor < Bay
mission Mission = Mission() mission Mission = Mission()
end end
properties(SetAccess = protected)
isHRE logical % [-] Flag relateed to the type of motor: true if HRE
end
methods methods
function obj = Motor(mission, varIn) function obj = Motor(mission, varIn)
arguments(Input) arguments(Input)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment