SimulationParameter params = context.getSimulationStorage().getParameter();
Properties props = new Properties();
props.load(new FileReader(new File("parameters.properties")));
params.setProperties(props);

/* String simulationName = context.getSimulationStorage().getName();
String pathToNewValues = "Fstd"+simulationName+".csv";

File newValuesFile = new File(pathToNewValues);

MatrixND Fstd = MatrixFactory.getInstance().create(newValuesFile);

GearDAO dao = context.getGearDAO();
GearDAO dao = context.getGearDAO();
Gear engin = dao.findByName("OTB");
double newFstd = Fstd.getValue(engin);

engin.setStandardisationFactor(newFstd);
*/

