diff --git a/src/configs/caradonna1981.m b/src/configs/caradonna1981.m index cdc0bd49fe08a7f0bfe36e0c54669eb7f274d452..d05c352e7bca3bb2fadd73c670238b5d5c83fb82 100644 --- a/src/configs/caradonna1981.m +++ b/src/configs/caradonna1981.m @@ -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, ...) diff --git a/src/configs/knight1937.m b/src/configs/knight1937.m index 5cfac8e7352533c9a93d97b4756f66f4251542cd..d28fce505d3331f63a8c25243a16c34d3fbc09f4 100644 --- a/src/configs/knight1937.m +++ b/src/configs/knight1937.m @@ -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, ...) diff --git a/src/configs/template.m b/src/configs/template.m index 2d301ec9758e43c4eb928fadd9cae72cc890fb16..9931bb7fb08c5c96aad000eee59684bff508ab63 100644 --- a/src/configs/template.m +++ b/src/configs/template.m @@ -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, ...) diff --git a/src/utils/preproc/validateconfig.m b/src/utils/preproc/validateconfig.m index 386a613421660edf394c6e58e74a945cc3a09801..48696340293827117629d22e62efbdcf681c5470 100644 --- a/src/utils/preproc/validateconfig.m +++ b/src/utils/preproc/validateconfig.m @@ -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');