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 dadffbf5 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

Merge pull request #853 in VECTO/vecto-sim from VECTO/mq_vecto-sim:master to master

* commit '17878f4f':
  adding release report
  compiling new vecto release
  adapt declaration data test for hvac after adding hvac power demands for other group/cyckle combinations (required for VTP)
parents 1c4236f5 17878f4f
Branches
Tags
No related merge requests found
Showing
with 31 additions and 19 deletions
File added
File added
No preview for this file type
No preview for this file type
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
**VECTO-3.3.9** **VECTO-3.3.9**
***Build 2175 (2020-12-15) OFFICIAL RELEASE***
- Bugfixes (compared to 3.3.9.2147)
* [VECTO-1374] - VECTO VTP error - regression update
***Build 2147 (2020-11-17) RELEASE CANDIDATE*** ***Build 2147 (2020-11-17) RELEASE CANDIDATE***
- Bugfixes - Bugfixes
......
...@@ -7622,6 +7622,13 @@ CycleTime,UnknownCycleName,3600</code></pre> ...@@ -7622,6 +7622,13 @@ CycleTime,UnknownCycleName,3600</code></pre>
<div id="changelog" class="section level1"> <div id="changelog" class="section level1">
<h1>Changelog</h1> <h1>Changelog</h1>
<p><strong>VECTO-3.3.9</strong></p> <p><strong>VECTO-3.3.9</strong></p>
<p><strong><em>Build 2175 (2020-12-15) OFFICIAL RELEASE</em></strong></p>
<ul>
<li>Bugfixes (compared to 3.3.9.2147)
<ul>
<li>[VECTO-1374] - VECTO VTP error - regression update</li>
</ul></li>
</ul>
<p><strong><em>Build 2147 (2020-11-17) RELEASE CANDIDATE</em></strong></p> <p><strong><em>Build 2147 (2020-11-17) RELEASE CANDIDATE</em></strong></p>
<ul> <ul>
<li>Bugfixes <li>Bugfixes
File added
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("0.2.0.2147")] [assembly: AssemblyVersion("0.2.0.2175")]
[assembly: AssemblyFileVersion("0.2.0.2147")] [assembly: AssemblyFileVersion("0.2.0.2175")]
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors> <WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<DefineConstants>RELEASE_CANDIDATE</DefineConstants> <DefineConstants>CERTIFICATION_RELEASE</DefineConstants>
<Prefer32Bit>false</Prefer32Bit> <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Deploy|x86'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Deploy|x86'">
......
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.3.9.2147")] [assembly: AssemblyVersion("3.3.9.2175")]
[assembly: AssemblyFileVersion("3.3.9.2147")] [assembly: AssemblyFileVersion("3.3.9.2175")]
\ No newline at end of file \ No newline at end of file
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("1.2.0.2147")] [assembly: AssemblyVersion("1.2.0.2175")]
[assembly: AssemblyFileVersion("1.2.0.2147")] [assembly: AssemblyFileVersion("1.2.0.2175")]
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.3.9.2147")] [assembly: AssemblyVersion("3.3.9.2175")]
[assembly: AssemblyFileVersion("3.3.9.2147")] [assembly: AssemblyFileVersion("3.3.9.2175")]
\ No newline at end of file \ No newline at end of file
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.3.9.2147")] [assembly: AssemblyVersion("3.3.9.2175")]
[assembly: AssemblyFileVersion("3.3.9.2147")] [assembly: AssemblyFileVersion("3.3.9.2175")]
...@@ -47,7 +47,7 @@ namespace TUGraz.VectoCore.Utils ...@@ -47,7 +47,7 @@ namespace TUGraz.VectoCore.Utils
public static string VersionNumber public static string VersionNumber
{ {
get { get {
return "3.3.9.2147" + SUFFIX; return "3.3.9.2175" + SUFFIX;
} }
} }
......
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release\</OutputPath>
<DefineConstants>RELEASE_CANDIDATE</DefineConstants> <DefineConstants>CERTIFICATION_RELEASE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks> <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
......
...@@ -368,16 +368,16 @@ namespace TUGraz.VectoCore.Tests.Models.Declaration ...@@ -368,16 +368,16 @@ namespace TUGraz.VectoCore.Tests.Models.Declaration
AssertHelper.Exception<VectoException>(() => DeclarationData.Fan.Lookup(missionType, technology)); AssertHelper.Exception<VectoException>(() => DeclarationData.Fan.Lookup(missionType, technology));
} }
[TestCase(VehicleClass.Class1, new[] { 0, 150, 150, 0, 0 }), [TestCase(VehicleClass.Class1, new[] { 200, 150, 150, 0, 0 }),
TestCase(VehicleClass.Class2, new[] { 200, 200, 150, 0, 0 }), TestCase(VehicleClass.Class2, new[] { 200, 200, 150, 0, 0 }),
TestCase(VehicleClass.Class3, new[] { 0, 200, 150, 0, 0 }), TestCase(VehicleClass.Class3, new[] { 200, 200, 150, 0, 0 }),
TestCase(VehicleClass.Class4, new[] { 350, 200, 150, 300, 200 }), TestCase(VehicleClass.Class4, new[] { 350, 200, 150, 300, 200 }),
TestCase(VehicleClass.Class5, new[] { 350, 200, 150, 0, 200 }), TestCase(VehicleClass.Class5, new[] { 350, 200, 150, 0, 200 }),
TestCase(VehicleClass.Class9, new[] { 350, 200, 150, 300, 200 }), TestCase(VehicleClass.Class9, new[] { 350, 200, 150, 300, 200 }),
TestCase(VehicleClass.Class10, new[] { 350, 200, 0, 0, 200 }), TestCase(VehicleClass.Class10, new[] { 350, 200, 150, 0, 200 }),
TestCase(VehicleClass.Class11, new[] { 350, 200, 0, 300, 200 }), TestCase(VehicleClass.Class11, new[] { 350, 200, 150, 300, 200 }),
TestCase(VehicleClass.Class12, new[] { 350, 200, 0, 0, 200 }), TestCase(VehicleClass.Class12, new[] { 350, 200, 150, 0, 200 }),
TestCase(VehicleClass.Class16, new[] { 0, 0, 0, 0, 200 })] TestCase(VehicleClass.Class16, new[] { 350, 200, 150, 0, 200 })]
public void AuxHeatingVentilationAirConditionTest_Default(VehicleClass vehicleClass, int[] expected) public void AuxHeatingVentilationAirConditionTest_Default(VehicleClass vehicleClass, int[] expected)
{ {
for (var i = 0; i < expected.Length; i++) { for (var i = 0; i < expected.Length; i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment