Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 7efe7294 authored by David AMO GONZALEZ's avatar David AMO GONZALEZ
Browse files

Update weighting factors for vehicles of classes 11 and 12

parent b4ed099c
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ namespace TUGraz.VectoCore.Models.Declaration
foreach (var entry in Data) {
var sum = entry.Value.Sum(item => item.Value);
bool hasVocationalWeights = sum % 2.0 == 0;
bool hasVocationalWeights = sum.IsEqual(2.0, 1e-12);
bool isNormalWeights = sum.IsEqual(1.0, 1e-12);
if (!isNormalWeights && !hasVocationalWeights)
......
......@@ -293,9 +293,9 @@ namespace TUGraz.VectoCore.OutputData.XML
protected override void WriteResult(ResultEntry result)
{
var sumWeightinFactors = _weightingFactors.Values.Sum(x => x);
bool isNormalWeights = sumWeightinFactors.IsEqual(0) || sumWeightinFactors.IsEqual(1, 1e-12);
bool isVocationalWeights = sumWeightinFactors % 2 == 0;
var sumWeightingFactors = _weightingFactors.Values.Sum(x => x);
bool isNormalWeights = sumWeightingFactors.IsEqual(0) || sumWeightingFactors.IsEqual(1, 1e-12);
bool isVocationalWeights = sumWeightingFactors.IsEqual(2.0, 1e-12); ;
if (!isNormalWeights && !isVocationalWeights) {
throw new VectoException("Mission Profile Weighting factors or Mission Profile Weighting factors for Vocational misisons do not sum up to 1!");
}
......
......@@ -12,8 +12,8 @@ Weighting Group , LongHaul , LongHaul EMS , Regional Delivery , Regional Delive
9-LH , 0.27/0.63 , 0/0 , 0.03/0.07 , 0/0 , 0/0 , 0.25/0.25 , 0.25/0.25 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
10-RD , 0.03/0.07 , 0/0 , 0.27/0.63 , 0/0 , 0/0 , 0/0 , 0.5/0.5 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
10-LH , 0.27/0.63 , 0/0 , 0.03/0.07 , 0/0 , 0/0 , 0/0 , 0.5/0.5 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
11 , 0/0 , 0/0 , 0.15/0.35 , 0/0 , 0/0 , 0/0 , 0.15/0.35 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
12 , 0/0 , 0/0 , 0.21/0.49 , 0/0 , 0/0 , 0/0 , 0.09/0.21 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
11 , 0/0 , 0/0 , 0.3/0.7 , 0/0 , 0/0 , 0.1/0.23 , 0.3/0.37 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
12 , 0/0 , 0/0 , 0.3/0.7 , 0/0 , 0/0 , 0/0 , 0.3/0.7 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
16 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0 , 0.30/0.70 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
# medium lorries
51 , 0/0 , 0/0 , 0.25/0.25 , 0/0 , 0.25/0.25 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0 , 0/0
......
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