Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 934c3f96 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

Merge pull request #850 in VECTO/vecto-sim from...

Merge pull request #850 in VECTO/vecto-sim from VECTO/mq_vecto-sim:feature/VECTO-1374-vecto-vtp-error to develop

* commit '6434ebba':
  remove invalid characters (such as / or \) from mod-filename (e.g. if VIN contains illegal characters)
  adding steering pump power demand for RD cycle groups 10-16 (needed for VTP simulations)
parents 7e3cdbde 6434ebba
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ namespace TUGraz.VectoCore.OutputData.FileIO
modFileName = string.Format("{0}{1}", runName, Constants.FileExtensions.ModDataFile);
}
return Path.Combine(BasePath, modFileName);
return Path.Combine(BasePath, string.Concat(modFileName.Split(Path.GetInvalidFileNameChars())));
}
public void WriteModData(int jobRunId, string runName, string cycleName, string runSuffix, DataTable modData)
......
......@@ -8,7 +8,7 @@ HDV Group , Long haul , Regional delivery , Urban delivery , Municipal utility ,
7 , , , , ,
8 , , , , ,
9 , 600/120/0 , 490/60/40 , 440/50/50 , 430/30/50 , 640/50/80
10 , 450/120/0 , 440/90/40 , , , 640/50/80
11 , 600/120/0 , 490/60/40 , , 430/30/50 , 640/50/80
12 , 450/120/0 , 440/90/40 , , , 640/50/80
16 , , , , , 640/50/80
\ No newline at end of file
10 , 450/120/0 , 440/90/40 , 390/80/50 , , 640/50/80
11 , 600/120/0 , 490/60/40 , 370/60/50 , 430/30/50 , 640/50/80
12 , 450/120/0 , 440/90/40 , 390/80/50 , , 640/50/80
16 , 490/100/0 , 550/90/40 , 490/80/60 , , 640/50/80
\ No newline at end of file
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