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 f0da2311 authored by Martin Dippold's avatar Martin Dippold
Browse files

* New Version Number

* Release candidate
* Bugfix output path in the result file. Now the correct file is written to the titel
* Bugfix time sequence. Now the time is checked also with digits after the decimal seperator
* Bugfix preferences. Now in the preference GUI the unit for Logfile size is written
parent a4a564c0
Branches
Tags
No related merge requests found
Showing
with 3757 additions and 3761 deletions
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<AssemblyName>AirDrag</AssemblyName> <AssemblyName>AirDrag</AssemblyName>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<MyType>WindowsForms</MyType> <MyType>WindowsForms</MyType>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile> <TargetFrameworkProfile>
</TargetFrameworkProfile> </TargetFrameworkProfile>
<IsWebBootstrapper>false</IsWebBootstrapper> <IsWebBootstrapper>false</IsWebBootstrapper>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</assemblyBinding> </assemblyBinding>
</runtime> </runtime>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup> </startup>
<userSettings> <userSettings>
<AirDrag.My.MySettings> <AirDrag.My.MySettings>
......
...@@ -15,8 +15,8 @@ Public Module main_calculation_call ...@@ -15,8 +15,8 @@ Public Module main_calculation_call
Sub calculation(ByVal isCalibrate As Boolean) Sub calculation(ByVal isCalibrate As Boolean)
' Declaration ' Declaration
Dim i As Integer Dim i As Integer
Dim Starttime As Long() = New Long(2) {0, 0, 0} Dim Starttime As Double() = New Double(2) {0.0, 0.0, 0.0}
Dim Endtime As Long() = New Long(2) {0, 0, 0} Dim Endtime As Double() = New Double(2) {0.0, 0.0, 0.0}
' Initialisation ' Initialisation
InputData = Nothing InputData = Nothing
...@@ -1048,7 +1048,7 @@ Public Module main_calculation_call ...@@ -1048,7 +1048,7 @@ Public Module main_calculation_call
' Check the vehicle class ' Check the vehicle class
Select Case vehicle.classCode Select Case vehicle.classCode
Case 1, 2, 3, 4, 5, 9, 10, 21, 22, 23, 24 Case tVehClass.Class1, tVehClass.Class2, tVehClass.Class3, tVehClass.Class4, tVehClass.Class5, tVehClass.Class9, tVehClass.Class10, tVehClass.Class53, tVehClass.Class54, tVehClass.Class31b2, tVehClass.Class32a, tVehClass.Class32b, tVehClass.Class32c, tVehClass.Class32d, tVehClass.Class32e, tVehClass.Class32f, tVehClass.Class33b2, tVehClass.Class34a, tVehClass.Class34b, tVehClass.Class34c, tVehClass.Class34d, tVehClass.Class34e, tVehClass.Class34f, tVehClass.Class35b2, tVehClass.Class36a, tVehClass.Class36b, tVehClass.Class36c, tVehClass.Class36d, tVehClass.Class36e, tVehClass.Class36f, tVehClass.Class37b2, tVehClass.Class38a, tVehClass.Class38b, tVehClass.Class38c, tVehClass.Class38d, tVehClass.Class38e, tVehClass.Class38f, tVehClass.Class39b2, tVehClass.Class40a, tVehClass.Class40b, tVehClass.Class40c, tVehClass.Class40d, tVehClass.Class40e, tVehClass.Class40f
' Check the hight of the vehicle ' Check the hight of the vehicle
If Job.mode = 1 Then If Job.mode = 1 Then
If (vehicle.vehHeight > GenShape.h_max) Then If (vehicle.vehHeight > GenShape.h_max) Then
......
...@@ -175,41 +175,41 @@ Public Class cGenShp ...@@ -175,41 +175,41 @@ Public Class cGenShp
Else Else
AirDragCurv_val = -1 AirDragCurv_val = -1
End If End If
Case tVehClass.Class31b2 ' HB Case tVehClass.Class31b2, ' HB
Case tVehClass.Class32a tVehClass.Class32a,
Case tVehClass.Class32b tVehClass.Class32b,
Case tVehClass.Class32c tVehClass.Class32c,
Case tVehClass.Class32d tVehClass.Class32d,
Case tVehClass.Class32e tVehClass.Class32e,
Case tVehClass.Class32f tVehClass.Class32f,
Case tVehClass.Class33b2 tVehClass.Class33b2,
Case tVehClass.Class34a tVehClass.Class34a,
Case tVehClass.Class34b tVehClass.Class34b,
Case tVehClass.Class34c tVehClass.Class34c,
Case tVehClass.Class34d tVehClass.Class34d,
Case tVehClass.Class34e tVehClass.Class34e,
Case tVehClass.Class34f tVehClass.Class34f,
Case tVehClass.Class35b2 tVehClass.Class35b2,
Case tVehClass.Class36a tVehClass.Class36a,
Case tVehClass.Class36b tVehClass.Class36b,
Case tVehClass.Class36c tVehClass.Class36c,
Case tVehClass.Class36d tVehClass.Class36d,
Case tVehClass.Class36e tVehClass.Class36e,
Case tVehClass.Class36f tVehClass.Class36f,
Case tVehClass.Class37b2 tVehClass.Class37b2,
Case tVehClass.Class38a tVehClass.Class38a,
Case tVehClass.Class38b tVehClass.Class38b,
Case tVehClass.Class38c tVehClass.Class38c,
Case tVehClass.Class38d tVehClass.Class38d,
Case tVehClass.Class38e tVehClass.Class38e,
Case tVehClass.Class38f tVehClass.Class38f,
Case tVehClass.Class39b2 tVehClass.Class39b2,
Case tVehClass.Class40a tVehClass.Class40a,
Case tVehClass.Class40b tVehClass.Class40b,
Case tVehClass.Class40c tVehClass.Class40c,
Case tVehClass.Class40d tVehClass.Class40d,
Case tVehClass.Class40e tVehClass.Class40e,
Case tVehClass.Class40f tVehClass.Class40f
hmin = 2 hmin = 2
hmax = 5 hmax = 5
href = VehHeight href = VehHeight
......
...@@ -149,7 +149,7 @@ Partial Class F_Preferences ...@@ -149,7 +149,7 @@ Partial Class F_Preferences
' '
'logSize 'logSize
' '
Me.logSize.Location = New System.Drawing.Point(128, 70) Me.logSize.Location = New System.Drawing.Point(128, 71)
Me.logSize.Name = "logSize" Me.logSize.Name = "logSize"
Me.logSize.Size = New System.Drawing.Size(36, 20) Me.logSize.Size = New System.Drawing.Size(36, 20)
Me.logSize.TabIndex = 3 Me.logSize.TabIndex = 3
......
...@@ -59,7 +59,7 @@ Public Class cPreferences ...@@ -59,7 +59,7 @@ Public Class cPreferences
"description": "Whether to write messages to log file.", "description": "Whether to write messages to log file.",
}, },
"logSize": { "logSize": {
"title": "Log-file's limit", "title": "Log-file size limit [MiB]",
"type": "integer", "type": "integer",
"minimum": 0, "minimum": 0,
"default": 2, "default": 2,
......
...@@ -226,8 +226,8 @@ Module output ...@@ -226,8 +226,8 @@ Module output
' Filekopf ' Filekopf
FileOut.WriteLine("# Resultfile Programm " & AppName & " " & AppVers & " Comp " & AppDate) FileOut.WriteLine("# Resultfile Programm " & AppName & " " & AppVers & " Comp " & AppDate)
FileOut.WriteLine("# Datafile LS1: " & Prefs.listSep & coasting_fpaths(0)) FileOut.WriteLine("# Datafile LS1: " & Prefs.listSep & coasting_fpaths(1))
FileOut.WriteLine("# Datafile HS: " & Prefs.listSep & coasting_fpaths(1)) FileOut.WriteLine("# Datafile HS: " & Prefs.listSep & coasting_fpaths(0))
FileOut.WriteLine("# Datafile LS2: " & Prefs.listSep & coasting_fpaths(2)) FileOut.WriteLine("# Datafile LS2: " & Prefs.listSep & coasting_fpaths(2))
FileOut.WriteLine("#") FileOut.WriteLine("#")
If Job.mode = 1 Then If Job.mode = 1 Then
......
...@@ -14,8 +14,8 @@ Option Explicit On ...@@ -14,8 +14,8 @@ Option Explicit On
Namespace My Namespace My
'HINWEIS: Diese Datei wird automatisch generiert und darf nicht direkt bearbeitet werden. Wenn Sie Änderungen vornehmen möchten, 'HINWEIS: Diese Datei wird automatisch generiert und darf nicht direkt bearbeitet werden. Wenn Sie Änderungen vornehmen möchten
' oder bei in dieser Datei auftretenden Buildfehlern wechseln Sie zum Projekt-Designer. ' oder in dieser Datei Buildfehler auftreten, wechseln Sie zum Projekt-Designer.
' (Wechseln Sie dazu zu den Projekteigenschaften, oder doppelklicken Sie auf den Knoten "Mein Projekt" im ' (Wechseln Sie dazu zu den Projekteigenschaften, oder doppelklicken Sie auf den Knoten "Mein Projekt" im
' Projektmappen-Explorer). Nehmen Sie auf der Registerkarte "Anwendung" entsprechende Änderungen vor. ' Projektmappen-Explorer). Nehmen Sie auf der Registerkarte "Anwendung" entsprechende Änderungen vor.
' '
......
...@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ...@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.1.0.0")> <Assembly: AssemblyVersion("3.2.0.0")>
<Assembly: AssemblyFileVersion("1.1.0.0")> <Assembly: AssemblyFileVersion("3.2.0.0")>
...@@ -22,7 +22,7 @@ Namespace My.Resources ...@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. ''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
......
...@@ -15,21 +15,21 @@ Option Explicit On ...@@ -15,21 +15,21 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
#Region "Funktion zum automatischen Speichern von My.Settings" #Region "Automatische My.Settings-Speicherfunktion"
#If _MyType = "WindowsForms" Then #If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
......
...@@ -12,11 +12,11 @@ ...@@ -12,11 +12,11 @@
Module declaration_public Module declaration_public
' Description of the form ' Description of the form
Public Const AppName As String = "Air Drag - BETA" ' Name of the programm Public Const AppName As String = "Air Drag - RC" ' Name of the programm
Public AppVers As String = Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() '"3.1.0" ' Version of the Programm Public AppVers As String = Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() '"3.1.0" ' Version of the Programm
Public AppDate As String ' Date of the compilation of the programm Public AppDate As String ' Date of the compilation of the programm
Public RELEASE_CANDIDATE As Boolean = False Public RELEASE_CANDIDATE As Boolean = True
Public BETA_VERSION As Boolean = True Public BETA_VERSION As Boolean = False
' Control variables ' Control variables
Public Const komment = "#" ' Symbol for a comment in the input files Public Const komment = "#" ' Symbol for a comment in the input files
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
"Header": { "Header": {
"Title": "VECTO-Air Drag JOB", "Title": "VECTO-Air Drag JOB",
"FileVersion": "1.0.0", "FileVersion": "1.0.0",
"AppVersion": "1.1.0.0", "AppVersion": "1.2.0.0",
"ModifiedDate": "2022/01/26 14:34:02 +01:00", "ModifiedDate": "2022/05/31 08:42:34 +02:00",
"CreatedBy": "VKMTHD\\martindippold@)", "CreatedBy": "VKMTHD\\martindippold@)",
"StrictBody": null, "StrictBody": null,
"BodySchema": null "BodySchema": null
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
"trigger_delta_x_max": 30.0, "trigger_delta_x_max": 30.0,
"trigger_delta_y_max": 100.0, "trigger_delta_y_max": 100.0,
"delta_head_max": 10.0, "delta_head_max": 10.0,
"segruns_min_CAL": 4, "segruns_min_CAL": 5,
"segruns_min_LS": 1, "segruns_min_LS": 1,
"segruns_min_HS": 2, "segruns_min_HS": 2,
"segruns_min_head_HS": 10, "segruns_min_head_HS": 10,
...@@ -46,18 +46,18 @@ ...@@ -46,18 +46,18 @@
"v_wind_avg_max_CAL": 5.0, "v_wind_avg_max_CAL": 5.0,
"v_wind_1s_max_CAL": 8.0, "v_wind_1s_max_CAL": 8.0,
"beta_avg_max_CAL": 5.0, "beta_avg_max_CAL": 5.0,
"v_veh_1s_delta_CAL": 1.0, "v_veh_1s_delta_CAL": 5.0,
"v_veh_ave_delta_CAL": 2.0, "v_veh_ave_delta_CAL": 2.0,
"leng_crit": 3.0, "leng_crit": 3.0,
"v_veh_avg_min_LS": 10.0, "v_veh_avg_min_LS": 10.0,
"v_veh_avg_max_LS": 16.0, "v_veh_avg_max_LS": 15.0,
"v_veh_float_delta_LS": 0.5, "v_veh_float_delta_LS": 0.5,
"tq_sum_float_delta_LS": 0.3, "tq_sum_float_delta_LS": 0.3,
"delta_n_ec_LS": 0.02, "delta_n_ec_LS": 0.02,
"v_wind_avg_max_HS": 5.0, "v_wind_avg_max_HS": 5.0,
"v_wind_1s_max_HS": 8.0, "v_wind_1s_max_HS": 8.0,
"beta_avg_max_HS": 3.0, "beta_avg_max_HS": 3.0,
"v_veh_avg_min_HS": 85.0, "v_veh_avg_min_HS": 79.0,
"v_veh_avg_max_HS": 95.0, "v_veh_avg_max_HS": 95.0,
"tq_sum_1s_delta_HS": 0.2, "tq_sum_1s_delta_HS": 0.2,
"delta_n_ec_HS": 0.02, "delta_n_ec_HS": 0.02,
...@@ -71,8 +71,8 @@ ...@@ -71,8 +71,8 @@
}, },
"fv_veh": 0.969, "fv_veh": 0.969,
"fa_pe": 1.0, "fa_pe": 1.0,
"fv_pe": 1.068, "fv_pe": 1.12,
"beta_ame": -0.43, "beta_ame": -0.02,
"t_amb_LS1": 0.0, "t_amb_LS1": 0.0,
"v_avg_LS": 0.0, "v_avg_LS": 0.0,
"v_avg_HS": 0.0, "v_avg_HS": 0.0,
......
This diff is collapsed.
This diff is collapsed.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
# Resultfile Programm Air Drag - BETA 1.1.0.0 Comp 1/26/2022 # Resultfile Programm Air Drag - RC 1.2.0.0 Comp 5/31/2022
# Datafile LS1: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_HS.csdat # Datafile LS1: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_LS1.csdat
# Datafile HS: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_LS1.csdat # Datafile HS: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_HS.csdat
# Datafile LS2: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_LS2.csdat # Datafile LS2: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_LS2.csdat
# #
# Results # Results
# fv_veh:,0.968501080129236,[-] calibration factor for vehicle speed # fv_veh:,0.968501080129236,[-] calibration factor for vehicle speed
# fv_pe:,1.12031450849315,[-] calibration factor for air speed (position error) # fv_pe:,1.12031450849315,[-] calibration factor for air speed (position error)
# fa_pe:,1,[-] position error correction factor for measured air inflow angle (beta) # fa_pe:,1,[-] position error correction factor for measured air inflow angle (beta)
# beta_ame:,-0.431041730696336,[°] calibration factor for beta (misalignment) # beta_ame:,-0.0156820291773556,[°] calibration factor for beta (misalignment)
# t_amb_LS1:,20,[°] average ambient temperature during first low speed test # t_amb_LS1:,0,[°] average ambient temperature during first low speed test
# v_avg_LS:,15.0597653392657,[km/h] average vehicle speed used datasets low speed tests # v_avg_LS:,0,[km/h] average vehicle speed used datasets low speed tests
# v_avg_HS:,84.7865175082316,[km/h] average vehicle speed used datasets high speed test # v_avg_HS:,0,[km/h] average vehicle speed used datasets high speed test
# CdxA(ß)_H1:,5.23787932499676,[m²] average CdxA before yaw angle correction for heading 1 # CdxA(ß)_H1:,0,[m²] average CdxA before yaw angle correction for heading 1
# beta_H1:,0.708978646760527,[°] average absolute yaw angle from high speed tests for heading 1 # beta_H1:,0,[°] average absolute yaw angle from high speed tests for heading 1
# CdxA(ß)_H2:,5.16999038897115,[m²] average CdxA before yaw angle correction for heading 2 # CdxA(ß)_H2:,0,[m²] average CdxA before yaw angle correction for heading 2
# beta_H2:,0.90068851172067,[°] average absolute yaw angle from high speed tests for heading 2 # beta_H2:,0,[°] average absolute yaw angle from high speed tests for heading 2
# CdxA(ß):,5.20393485698395,[m²] average CdxA before yaw angle correction # CdxA(ß):,0,[m²] average CdxA before yaw angle correction
# beta:,0.804833579240598,[°] average absolute yaw angle from high speed tests # beta:,0,[°] average absolute yaw angle from high speed tests
# delta_CdxA_beta:,-0.0246327365262378,[m²] correction of CdxA for yaw angle # delta_CdxA_beta:,0,[m²] correction of CdxA for yaw angle
# CdxA(0)meas:,5.17930212045771,[m²] average measured CdxA for zero yaw angle # CdxA(0)meas:,0,[m²] average measured CdxA for zero yaw angle
# delta_CdxA_height:,0.201790991706145,[m²] correction of CdxA to reference vehicle height # delta_CdxA_height:,0,[m²] correction of CdxA to reference vehicle height
# delta_CdxA_anemo:,-0.15,[m²] CdxA influence from anemometer # delta_CdxA_anemo:,-0.15,[m²] CdxA influence from anemometer
# CdxA(0):,5.23,[m²] average CdxA for zero yaw angle # CdxA(0):,0,[m²] average CdxA for zero yaw angle
# #
# Validity criteria: # Validity criteria:
# RRC:,Ok # RRC:,Ok
# #
SecID [-],DirID [-],HeadID [-],NumUsed [-],F0_singleMS [N],F0_singleMS_LS1 [N],F0_singleMS_LS2 [N],CdxA(ß)_ave_singleMS [m2],CdxA(0)_singleMS [m2],delta_CdxA_singleMS [m2],beta_ave_singleMS [°],RRC_singleMS [kg/t],RRC_singleMS_LS1 [kg/t],RRC_singleMS_LS2 [kg/t],valid_RRC [-],F2_singleMS [N/(m2/s2)],F2_singleMS_LS1 [N/(m2/s2)],F2_singleMS_LS2 [N/(m2/s2)] SecID [-],DirID [-],HeadID [-],NumUsed [-],F0_singleMS [N],F0_singleMS_LS1 [N],F0_singleMS_LS2 [N],CdxA(ß)_ave_singleMS [m2],CdxA(0)_singleMS [m2],delta_CdxA_singleMS [m2],beta_ave_singleMS [°],RRC_singleMS [kg/t],RRC_singleMS_LS1 [kg/t],RRC_singleMS_LS2 [kg/t],valid_RRC [-],F2_singleMS [N/(m2/s2)],F2_singleMS_LS1 [N/(m2/s2)],F2_singleMS_LS2 [N/(m2/s2)]
1,1,1,8,1300.1947176019,1347.57012456454,1250.83949860078,4.77040326498514,4.74295578905032,0.0274474759348194,0.89680049450498,5.30150751315759,5.49467940699099,5.10026299123663,1,2.83177533754522,2.74691722745684,2.92199211156797
2,1,1,8,1293.92459993751,1336.61706777363,1249.49924965121,5.70535538500838,5.68940486001769,0.0159505249906859,0.521156799016073,5.27594128414886,5.45001862496894,5.09479816371545,1,3.40460443552809,3.32243935686296,3.49177168512771
2,2,2,8,1309.86857129955,1317.67862875724,1302.47893568041,5.24083225936948,5.21492255304062,0.0259097063288582,0.846556437589304,5.34095238042631,5.37279767077367,5.31082134834009,1,3.06362645862572,3.04974330517882,3.07646215498181
1,2,2,8,1292.59743030875,1311.31460460359,1274.24452265347,5.09914851857282,5.06992527972223,0.0292232388505874,0.954820585852036,5.27052978719165,5.34684854068741,5.19569632070733,1,2.9712069084291,2.93955325995925,3.00195765619397
# Resultfile Programm Air Drag - BETA 1.1.0.0 Comp 1/26/2022 # Resultfile Programm Air Drag - RC 1.2.0.0 Comp 5/31/2022
# Datafile: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_CAL.csdat # Datafile: ,I:\martindippold\Git\VECTO-AirDrag\DemoData\DemoData_CAL.csdat
# #
# Results # Results
# fv_veh:,0.968619115768514 # fv_veh:,0.968523623448373
# fv_pe:,1.06833099553041 # fv_pe:,1.06989318855317
# beta_ame:,-0.431041730696336 # beta_ame:,-0.0156820291773556
# #
SecID [-],DirID [-],delta t [s],length [m],delta s [m],v (s) [km/h],v (GPS) [km/h],v_veh_CAN [km/h],v_veh [km/h],vair_ic [m/s],vair_uf [m/s],beta_ic [°],beta_uf [°],valid [-],used [-],val_User [-],val_vWind [-],val_vWind_1s [-],val_beta [-],val_vVeh_avg [-],val_vVeh_1s [-],vair [m/s],v_wind_avg [m/s],v_wind_1s [m/s],v_wind_1s_max [m/s],beta_avg [°],t_tire ,Satelites ,<n_card1> SecID [-],DirID [-],delta t [s],length [m],delta s [m],v (s) [km/h],v (GPS) [km/h],v_veh_CAN [km/h],v_veh [km/h],vair_ic [m/s],vair_uf [m/s],beta_ic [°],beta_uf [°],valid [-],used [-],val_User [-],val_vWind [-],val_vWind_1s [-],val_beta [-],val_vVeh_avg [-],val_vVeh_1s [-],vair [m/s],v_wind_avg [m/s],v_wind_1s [m/s],v_wind_1s_max [m/s],beta_avg [°],t_tire ,Satelites ,<n_card1>
1,1,11.2999999999956,250.64,250.478518146619,79.8499115044556,79.980893015031,82.3803198054819,79.7951525267132,19.2047323410964,20.5170108208585,184.587338638373,185.018380369067,0,0,1,1,1,1,0,0,20.8192585655233,2.18736564385682,2.19660311896768,2.61438523761376,4.00304821524004,40,10,695.320601237843 1,1,11.2999999999956,250.64,250.45382446212,79.8499115044556,79.980893015031,82.3803198054819,79.7872858388411,19.2047323410964,20.5470123197257,184.587338638373,184.603020667553,1,1,1,1,1,1,1,1,20.8449262865426,2.0866970767974,2.09619576155282,2.53092334630704,3.67277715388955,40,10,695.320601237843
2,1,11,250.64,250.77696511347,82.0276363636364,82.2655413260671,84.7335075658492,82.0744951743977,20.70066197396,22.1151588147792,184.247111716621,184.678153447315,0,0,1,1,1,1,1,0,22.2328215221333,1.88466757376057,1.88099355041055,2.64197985738211,3.76293882249107,40,10,712.554586739327 2,1,11,250.64,250.75224200627,82.0276363636364,82.2655413260671,84.7335075658492,82.0664037751662,20.70066197396,22.1474972444814,184.247111716621,184.262793745801,1,1,1,1,1,1,1,1,22.2603078340773,1.78269912971261,1.77908992804873,2.54906668428361,3.42972899243816,40,10,712.554586739327
2,2,10.6399999999994,250.64,250.496889272824,84.8030075188016,84.9518938967139,87.500450713615,84.7546091995684,24.4830147104789,26.1559634792315,177.004713615023,177.435755345718,1,1,1,1,1,1,1,1,25.6459319316713,2.94042561860774,2.93493053931676,4.03771804099223,-2.11112948490505,40,10,743.914553990611 2,2,10.6399999999994,250.64,250.472193777193,84.8030075188016,84.9518938967139,87.500450713615,84.7462535785161,24.4830147104789,26.1942106739884,177.004713615023,177.020395644202,1,1,1,1,1,1,1,1,25.6752399054816,3.0124122145987,3.00710665910369,4.11513434342688,-2.45331841811061,40,10,743.914553990611
1,2,10.6500000000015,250.64,250.777067652602,84.7233802816786,84.9670816135084,87.5160940619137,84.769761645765,24.3782373358349,26.0440265622691,176.063761726079,176.494803456773,1,0,1,1,1,1,1,1,25.5554232392266,2.66084406636663,2.68398761213726,3.06225761475971,-2.88162739154677,40,10,736.480112570356 1,2,10.6500000000015,250.64,250.7523445353,84.7233802816786,84.9670816135084,87.5160940619137,84.7614045308932,24.3782373358349,26.0821100745423,176.063761726079,176.079443755257,1,1,1,1,1,1,1,1,25.5842033993016,2.7549982501573,2.77859459145704,3.16211176988224,-3.22396896353121,40,10,736.480112570356
1,1,10.6600000000035,250.64,250.721541346606,84.6439024389967,84.8684414245547,87.4144946672915,84.6713505299833,20.423548474433,21.8191098739545,183.103111527648,183.534153258342,1,0,1,1,1,1,1,1,22.1331456721241,2.27191621018057,2.27055478935206,3.13270369397293,2.82356135804734,40,11,735.378819119025 1,1,10.6600000000035,250.64,250.696823703385,84.6439024389967,84.8684414245547,87.4144946672915,84.6630031170735,20.423548474433,21.8510153988813,183.103111527648,183.118793556826,1,1,1,1,1,1,1,1,22.1598442300631,2.19453875864304,2.19289063838544,3.06253301261684,2.4928803191671,40,11,735.378819119025
2,1,10.6499999999942,250.64,250.629666316521,84.7233802817365,84.9171106941837,87.4646240150094,84.7199067744439,20.8067989368386,22.2285482219938,184.532448405253,184.963490135948,1,1,1,1,1,1,1,1,22.4642451792285,2.19160171619311,2.19359679572822,2.81819676514428,3.97411327354521,40,11,736.100375234522 2,1,10.6499999999942,250.64,250.604957730902,84.7233802817365,84.9171106941837,87.4646240150094,84.7115545745665,20.8067989368386,22.261052458119,184.532448405253,184.548130434432,1,1,1,1,1,1,1,1,22.4920120481213,2.08322403854207,2.08518294471726,2.72488760029787,3.64259402940259,40,11,736.100375234522
2,2,10.6399999999994,250.64,250.578194461863,84.8030075188016,84.9794525821593,87.5288361596245,84.7821038851826,25.2851661971831,27.0129267755885,176.351643192488,176.782684923183,1,1,1,1,1,1,1,1,26.340002845641,3.37669060018131,3.36820681067631,4.72584806927662,-2.66166545445161,40,11,746.860845070422 2,2,10.6399999999994,250.64,250.55349095064,84.8030075188016,84.9794525821593,87.5288361596245,84.7737455535381,25.2851661971831,27.052427085801,176.351643192488,176.367325221667,1,1,1,1,1,1,1,1,26.3700368298922,3.45829671193864,3.4493733572984,4.81068321631995,-3.00578212092604,40,11,746.860845070422
1,2,10.6499999999942,250.64,250.771372575615,84.7233802817365,84.9650900562849,87.5140427579737,84.7677747135566,25.5039315196998,27.2466405503802,175.650984990619,176.082026721313,1,0,1,1,1,1,1,1,26.5276759159042,3.42653115559147,3.42152498327908,3.85270529464463,-3.24406263645557,40,11,736.683864915572 1,2,10.6499999999942,250.64,250.746650019717,84.7233802817365,84.9650900562849,87.5140427579737,84.7594177945685,25.5039315196998,27.2864826142533,175.650984990619,175.666667019798,1,1,1,1,1,1,1,1,26.5576854535923,3.51988000080378,3.51465923184864,3.9431683247972,-3.5889555349191,40,11,736.683864915572
1,1,10.6699999999983,250.64,250.805834025863,84.564573570773,84.8172659176031,87.3617838951312,84.620293868462,20.9580187265918,22.3901010105247,184.370018726592,184.801060457286,1,0,1,1,1,1,1,1,22.5900699591704,2.05882882068438,2.06274207799725,2.69923281329309,3.85205779514959,40,10.9578651685393,734.995692883895 1,1,10.6699999999983,250.64,250.781108072626,84.564573570773,84.8172659176031,87.3617838951312,84.6119514890259,20.9580187265918,22.4228414811503,184.370018726592,184.38570075577,1,1,1,1,1,1,1,1,22.6179658723151,1.9485050706545,1.95238288952194,2.61582904581366,3.51997509987479,40,10.9578651685393,734.995692883895
2,1,10.6299999999974,250.64,250.412167037699,84.8827845719871,85.003032894737,87.5531238815792,84.8056294369463,20.1734087823872,21.5518778877296,182.068157894737,182.499199625431,1,1,1,1,1,1,1,1,21.9249130839048,2.26233365491172,2.26045470409132,2.99522510261016,1.99410570688411,40,11,736.454511278195 2,1,10.6299999999974,250.64,250.387479894443,84.8827845719871,85.003032894737,87.5531238815792,84.7972687860111,20.1734087823872,21.5833926461747,182.068157894737,182.083839923916,1,1,1,1,1,1,1,1,21.950876078212,2.20087402385718,2.19927981438216,2.95511843235788,1.66393736590462,40,11,736.454511278195
2,2,10.6399999999994,250.64,250.703843652736,84.8030075188016,85.0221014084504,87.5727644507042,84.8246536676456,22.9512412102254,24.5195223707785,177.152657276995,177.58369900769,1,1,1,1,1,1,1,1,24.3263423422753,2.25228958245075,2.2537117738079,3.11249001259245,-1.9659810099771,40,11,737.155305164319 2,2,10.6399999999994,250.64,250.679127754356,84.8030075188016,85.0221014084504,87.5727644507042,84.8162911411868,22.9512412102254,24.5553766396609,177.152657276995,177.168339306174,1,1,1,1,1,1,1,1,24.3537954207394,2.31599656919149,2.31770353494918,3.20387908569792,-2.30450362708794,40,11,737.155305164319
1,2,10.6399999999994,250.64,250.590172136734,84.8030075188016,84.9835286384976,87.5330344976527,84.7861704756511,22.0783101721503,23.5869430858424,177.022516431925,177.453558162619,1,0,1,1,1,1,1,1,23.5702586325366,2.52491483696306,2.52439277035667,4.76364032702124,-2.06931788602535,40,11,736.319624413145 1,2,10.6399999999994,250.64,250.565467444674,84.8030075188016,84.9835286384976,87.5330344976527,84.7778117430978,22.0783101721503,23.6214336679477,177.022516431925,177.038198461104,1,1,1,1,1,1,1,1,23.5965584143012,2.57844992499934,2.57812357948132,4.85663968691699,-2.40540132556413,40,11,736.319624413145
1,1,10.6500000000015,250.64,250.662739332143,84.7233802816786,84.9282185741085,87.476065131332,84.7309888584196,21.0841275797373,22.5248270071509,182.672964352721,183.104006083415,1,0,1,1,1,1,1,1,22.7074010020556,1.85912872348909,1.85385808167939,2.25874543715707,2.49402047226422,40,11,735.730393996248 1,1,10.6500000000015,250.64,250.638027485973,84.7233802816786,84.9282185741085,87.476065131332,84.7226355660033,21.0841275797373,22.557764484147,182.672964352721,182.688646381899,1,1,1,1,1,1,1,1,22.7347703901002,1.78628189723267,1.78091632070257,2.15315431832734,2.16129768582932,40,11,735.730393996248
2,1,10.6399999999994,250.64,250.629777169623,84.8030075188016,84.9970018779341,87.5469119342724,84.7996124260387,19.9308729785822,21.2927693709988,183.183389671361,183.614431402057,1,1,1,1,1,1,1,1,21.7148268038777,2.40890847913651,2.41412205151595,2.81605145064312,2.87333181892374,40,11,736.543849765259 2,1,10.6399999999994,250.64,250.60506857315,84.8030075188016,84.9970018779341,87.5469119342724,84.7912523682969,19.9308729785822,21.3239052417034,183.183389671361,183.19907170054,1,1,1,1,1,1,1,1,21.740926725603,2.32965697385166,2.33474802498079,2.74127568966885,2.54413011819714,40,11,736.543849765259
2,2,10.6400000000067,250.64,250.678075855307,84.8030075187436,85.0132826291077,87.5636811079812,84.8158553682492,23.8435797078967,25.4728352463459,176.397399061033,176.828440791728,1,1,1,1,1,1,1,1,25.0964608650684,2.89396066531589,2.88691278745283,3.88297644250357,-2.59716768241635,40,12,736.019342723003 2,2,10.6400000000067,250.64,250.653362497167,84.8030075187436,85.0132826291077,87.5636811079812,84.8074937091799,23.8435797078967,25.5100835202033,176.397399061033,176.413081090211,1,1,1,1,1,1,1,1,25.1247136039031,2.96975625339722,2.96197083010338,3.96154281132417,-2.93782134248824,40,12,736.019342723003
1,2,10.6399999999994,250.64,250.661431265686,84.8030075188016,85.0077070422534,87.5579382535211,84.8102927296399,21.6582335941878,23.1381622571088,177.908497652582,178.339539383277,1,0,1,1,1,1,1,1,23.2093436436189,2.1575240142115,2.15303369944583,2.53610219564855,-1.3411778317106,40,11.9737089201878,736.0441314554 1,2,10.6399999999994,250.64,250.636719548522,84.8030075188016,85.0077070422534,87.5579382535211,84.8019316189691,21.6582335941878,23.1719965985149,177.908497652582,177.924179681761,1,1,1,1,1,1,1,1,23.2354867609271,2.19756030162999,2.19243901056591,2.59949881410749,-1.67616839176951,40,11.9737089201878,736.0441314554
1,1,11.010000000002,250.64,250.838812816259,81.9531335149712,82.2046869328493,84.6708275408348,82.0137821039919,20.0300408348458,21.3987134656054,183.543021778584,183.974063509279,0,0,1,1,1,1,1,0,21.651858055982,1.95609464831362,1.95399251393407,2.43849321741753,3.17958823963221,40,12,721.404537205082 1,1,11.010000000002,250.64,250.814083611778,81.9531335149712,82.2046869328493,84.6708275408348,82.0056966902218,20.0300408348458,21.4300042556433,183.543021778584,183.558703807763,1,1,1,1,1,1,1,1,21.6782078728089,1.86763199502347,1.86599514955201,2.34388624943555,2.84813162589675,40,12,721.404537205082
2,1,10.6699999999983,250.64,250.669936467988,84.564573570773,84.7712743445691,87.3144125749063,84.5744091021532,19.6585698605618,21.0018595098381,180.191357677903,180.622399408598,1,1,1,1,1,1,1,1,21.4688745096357,2.56432555384773,2.56956859616599,3.28575459358535,0.503503686807904,40,12,734.464981273407 2,1,10.6699999999983,250.64,250.645223912266,84.564573570773,84.7712743445691,87.3144125749063,84.5660712463146,19.6585698605618,21.0325699905117,180.191357677903,180.207039707081,1,1,1,1,1,1,1,1,21.4934339766047,2.53522972457828,2.5401713884829,3.26196740013925,0.174381214475198,40,12,734.464981273407
2,2,10.6499999999942,250.64,250.962821381512,84.7233802817365,85.0298949343339,87.5807917823639,84.8324290945396,23.1302271732176,24.7107386228081,176.313977485929,176.745019216623,1,1,1,1,1,1,1,1,24.4814686427731,2.32912207498472,2.33339942101835,3.46058638020918,-2.648202646071,40,9.98874296435272,736.455909943714 2,2,10.6499999999942,250.64,250.938079951415,84.7233802817365,85.0298949343339,87.5807917823639,84.8240658015325,23.1302271732176,24.746872502313,176.313977485929,176.329659515107,1,1,1,1,1,1,1,1,24.5087985465223,2.41273748693163,2.41705923849758,3.50436659678131,-2.98733328978342,40,9.98874296435272,736.455909943714
1,2,10.6299999999974,250.64,250.468815731041,84.8827845719871,85.022290413534,87.5729591259399,84.8248422338,21.0942766813534,22.535669606984,177.321287593985,177.75232932468,1,0,1,1,1,1,1,1,22.7227674538216,2.29910121850703,2.29141808482608,2.91487047052368,-1.80639308115956,40,10,736.415601503758 1,2,10.6299999999974,250.64,250.444123003137,84.8827845719871,85.022290413534,87.5729591259399,84.8164796887515,21.0942766813534,22.5686229388359,177.321287593985,177.336969623163,1,1,1,1,1,1,1,1,22.7479634916346,2.34368143920356,2.33575333081974,2.93120419287796,-2.13993025602327,40,10,736.415601503758
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment