Skip to content
Snippets Groups Projects
Verified Commit 5addaaf3 authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

chore(config): deprecate Save options

parent 18e19121
No related branches found
No related tags found
No related merge requests found
......@@ -28,9 +28,6 @@ Sim.Save.autosave = true; % Auto-save the simulation results in a mat f
Sim.Save.overwrite = true; % Overwrite previous result if filename is the same
Sim.Save.dir = '../results/'; % Directory where the results are saved
Sim.Save.filename = 'caradonna'; % File name of the saved result
Sim.Save.appendInfo = true; % Auto append config information to filename
Sim.Save.prependTime = false; % Add the time code before the filename
Sim.Save.timeFormat = 'YYYYmmddTHHMM'; % Format for the time code
% Outputs
Sim.Out.showPlots = false; % Show all plots (forces, angles, speed, ...)
......
......@@ -23,9 +23,6 @@ Sim.Save.autosave = true; % Auto-save the simulation results in a mat f
Sim.Save.overwrite = true; % Overwrite previous result if filename is the same
Sim.Save.dir = '../results/'; % Directory where the results are saved
Sim.Save.filename = 'knight2'; % File name of the saved result
Sim.Save.appendInfo = true; % Auto append config information to filename
Sim.Save.prependTime = false; % Add the time code before the filename
Sim.Save.timeFormat = 'YYYYmmddTHHMM'; % Format for the time code
% Outputs
Sim.Out.showPlots = false; % Show all plots (forces, angles, speed, ...)
......
......@@ -56,13 +56,10 @@
% ==================================================================================================
% Autosave
Sim.Save.autosave = false; % Auto-save the simulation results in a mat file
Sim.Save.autosave = true; % Auto-save the simulation results in a mat file
Sim.Save.overwrite = false; % Overwrite previous result if filename is the same
Sim.Save.dir = '../results/'; % Directory where the results are saved
Sim.Save.filename = 'tempalteRes'; % File name of the saved result
Sim.Save.appendInfo = true; % Auto append config information to filename
Sim.Save.prependTime = false; % Add the time code before the filename
Sim.Save.timeFormat = 'YYYYmmddTHHMM'; % Format for the time code
Sim.Save.filename = 'tempalte'; % File name of the saved result
% Outputs
Sim.Out.showPlots = true; % Show all plots (forces, angles, speed, ...)
......
......@@ -147,9 +147,6 @@ function Sim = checksim(Sim, configFile, DEF)
end
end
vallogical(Sim.Save.appendInfo, configFile, 'Sim.Save.appendInfo');
vallogical(Sim.Save.prependTime, configFile, 'Sim.Save.prependTime');
% Outputs
vallogical(Sim.Out.showPlots, configFile, 'Sim.Out.showPlots');
vallogical(Sim.Out.show3D, configFile, 'Sim.Out.show3D');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment