Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

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

Merge pull request #848 in VECTO/vecto-sim from VECTO/mq_vecto-sim:develop to develop

* commit 'e9977e03':
  adding release report
  create new build: update version number, update changelog, update release notes
parents e317882f e9977e03
Branches
Tags
No related merge requests found
Showing
with 54 additions and 13 deletions
File added
File added
No preview for this file type
No preview for this file type
#Changelog
**VECTO-3.3.9**
***Build 2147 (2020-11-17) RELEASE CANDIDATE***
- Bugfixes
* [VECTO-1331] - VTP Mode does not function for vehicles of group 3
* [VECTO-1355] - VTP Simulation Abort
* [VECTO-1356] - PTO Losses not considered in VTP simulation
* [VECTO-1361] - Torque Converter in use for the First and Second Gear VTP file does not allow for this
* [VECTO-1372] - Deviation of CdxA Input vs. Output for HDV16
* [VECTO-1374] - VECTO VTP error
- Improvements
* [VECTO-1360] - make unit tests execute in parallel
**VECTO-3.3.8**
***Build 2052 (2020-08-14) OFFICIAL RELEASE***
......
......@@ -7621,6 +7621,23 @@ CycleTime,UnknownCycleName,3600</code></pre>
</div>
<div id="changelog" class="section level1">
<h1>Changelog</h1>
<p><strong>VECTO-3.3.9</strong></p>
<p><strong><em>Build 2147 (2020-11-17) RELEASE CANDIDATE</em></strong></p>
<ul>
<li>Bugfixes
<ul>
<li>[VECTO-1331] - VTP Mode does not function for vehicles of group 3</li>
<li>[VECTO-1355] - VTP Simulation Abort</li>
<li>[VECTO-1356] - PTO Losses not considered in VTP simulation</li>
<li>[VECTO-1361] - Torque Converter in use for the First and Second Gear VTP file does not allow for this</li>
<li>[VECTO-1372] - Deviation of CdxA Input vs. Output for HDV16</li>
<li>[VECTO-1374] - VECTO VTP error</li>
</ul></li>
<li>Improvements
<ul>
<li>[VECTO-1360] - make unit tests execute in parallel</li>
</ul></li>
</ul>
<p><strong>VECTO-3.3.8</strong></p>
<p><strong><em>Build 2052 (2020-08-14) OFFICIAL RELEASE</em></strong></p>
<ul>
File added
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("0.2.0.2052")]
[assembly: AssemblyFileVersion("0.2.0.2052")]
[assembly: AssemblyVersion("0.2.0.2147")]
[assembly: AssemblyFileVersion("0.2.0.2147")]
......@@ -14,6 +14,7 @@ or
"c:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" Vecto.sln /t:Build /p:Configuration=Debug
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\MSBuild\Current\Bin\amd64\MSBuild.exe"
Option 2: Load the solution file in Visual Studio and compile VECTO.
......
......@@ -58,7 +58,7 @@
<WarningLevel>1</WarningLevel>
<UseVSHostingProcess>true</UseVSHostingProcess>
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
<DefineConstants>CERTIFICATION_RELEASE</DefineConstants>
<DefineConstants>RELEASE_CANDIDATE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>
......
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("3.3.8.2052")]
[assembly: AssemblyFileVersion("3.3.8.2052")]
\ No newline at end of file
[assembly: AssemblyVersion("3.3.9.2147")]
[assembly: AssemblyFileVersion("3.3.9.2147")]
\ No newline at end of file
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("1.2.0.2052")]
[assembly: AssemblyFileVersion("1.2.0.2052")]
[assembly: AssemblyVersion("1.2.0.2147")]
[assembly: AssemblyFileVersion("1.2.0.2147")]
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("3.3.8.2052")]
[assembly: AssemblyFileVersion("3.3.8.2052")]
\ No newline at end of file
[assembly: AssemblyVersion("3.3.9.2147")]
[assembly: AssemblyFileVersion("3.3.9.2147")]
\ No newline at end of file
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("3.3.8.2052")]
[assembly: AssemblyFileVersion("3.3.8.2052")]
[assembly: AssemblyVersion("3.3.9.2147")]
[assembly: AssemblyFileVersion("3.3.9.2147")]
......@@ -47,7 +47,7 @@ namespace TUGraz.VectoCore.Utils
public static string VersionNumber
{
get {
return "3.3.8.2052" + SUFFIX;
return "3.3.9.2147" + SUFFIX;
}
}
......
......@@ -6,6 +6,6 @@ int GetBuildNumber()
string GetVectoCoreVersionNumber()
{
return "3.3.8." + GetBuildNumber();
return "3.3.9." + GetBuildNumber();
}
#>
\ No newline at end of file
......@@ -29,6 +29,7 @@
* Martin Rexeis, rexeis@ivt.tugraz.at, IVT, Graz University of Technology
*/
using System.IO;
using NUnit.Framework;
using TUGraz.VectoCommon.Utils;
using TUGraz.VectoCore.InputData.Reader.ComponentData;
......@@ -43,6 +44,12 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
public const double Tolerance = 0.0001;
public AccelerationCurveData Data;
[OneTimeSetUp]
public void RunBeforeAnyTests()
{
Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory);
}
public void EqualAcceleration(double velocity, double acceleration, double deceleration)
{
var entry = Data.Lookup(velocity.KMPHtoMeterPerSecond());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment