-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LVD: Added settings to LvdData and populated the various functions wi…
…th calls to those settings.
- Loading branch information
Showing
7 changed files
with
279 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...unch_vehicle_designer/classes/Optimization/@LvdOptimAlgorithmEnum/LvdOptimAlgorithmEnum.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
classdef LvdOptimAlgorithmEnum < matlab.mixin.SetGet | ||
%LvdOptimAlgorithmEnum Summary of this class goes here | ||
% Detailed explanation goes here | ||
|
||
enumeration | ||
InteriorPoint('interior-point'); | ||
SQP('sqp'); | ||
ActiveSet('active-set'); | ||
end | ||
|
||
properties | ||
algoName(1,:) char | ||
end | ||
|
||
methods | ||
function obj = LvdOptimAlgorithmEnum(algoName) | ||
obj.algoName = algoName; | ||
end | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
helper_methods/ksptot_ma/launch_vehicle_designer/classes/Settings/@LvdSettings/LvdSettings.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
classdef LvdSettings < matlab.mixin.SetGet | ||
%LvdSettings Summary of this class goes here | ||
% Detailed explanation goes here | ||
|
||
properties | ||
%integration | ||
intAbsTol(1,1) double = 1E-6; | ||
intRelTol(1,1) double = 1E-6; | ||
minAltitude(1,1) double = -1; %km | ||
simMaxDur(1,1) double = 20000; %sec | ||
|
||
%optimization | ||
optUsePara(1,1) logical = false; | ||
optAlgo LvdOptimAlgorithmEnum = LvdOptimAlgorithmEnum.InteriorPoint | ||
end | ||
|
||
methods | ||
function obj = LvdSettings() | ||
|
||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+3.07 KB
(100%)
kspTOT_MissionArchitect/LaunchVehicleDesigner/ma_LvdMainGUI.fig
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters