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

Skip to content
Snippets Groups Projects
Commit 0b6280f7 authored by Raphael LUZ's avatar Raphael LUZ
Browse files

Torque converter test version with rpm limit

* DEV Tab permanently enabled!
* TClimit in DEV tab
* Removed unused DEV parameters
parent e33c03e5
No related branches found
Tags milestones/2.0.4-beta4_Test
No related merge requests found
......@@ -495,7 +495,7 @@ Public Class F_MAINForm
If Lic.TimeWarn Then GUImsg(tMsgID.Warn, "License expiring date (y/m/d): " & Lic.ExpTime)
End If
DEV.Enabled = Lic.LicFeature(9)
DEV.Enabled = True ' Lic.LicFeature(9)
If DEV.Enabled Then
DEV.LoadFromFile()
......
......@@ -467,7 +467,7 @@ Public Class cGBX
nuMax = Math.Min(TCnu(TCdim), nUout / ENG.Nidle)
Else
nuMin = Math.Max(nUout / FLD(Gear).N95h, TCnu(0))
nuMin = Math.Max(nUout / DEV.TClimit, TCnu(0))
nuMax = Math.Min(TCnuMax, nUout / ENG.Nidle)
End If
......
......@@ -12,7 +12,7 @@ Imports System.Collections.Generic
Module VECTO_Global
Public Const VECTOvers As String = "2.0.4-beta4 test1"
Public Const VECTOvers As String = "2.0.4-beta4 Test"
Public Const LicSigAppCode As String = "VECTO-Release-0093C61E0A2E4BFA9A7ED7E729C56AE4"
Public MyAppPath As String
Public MyConfPath As String
......
......@@ -18,8 +18,7 @@ Public Class cDEV
Private iOptionsDim As Integer
Public TCiterPrec As Single
Public TCnUstep As Single
Public TCnUstepMin As Single
Public TClimit As Single
Public AdvFormat As Boolean
......@@ -124,18 +123,15 @@ Public Class cDEV
Conf0.SingleVal = 0.001
MyOptions.Add("TCiterPrec", Conf0)
Conf0 = New cDEVoption(tDEVconfType.tSingleVal, "TC iteration: start value for nU-step [1/min]")
Conf0.SingleVal = 100
MyOptions.Add("TCnUstep", Conf0)
Conf0 = New cDEVoption(tDEVconfType.tSingleVal, "TC iteration: lowest value for nU-step [1/min]")
Conf0.SingleVal = 0.01
MyOptions.Add("TCnUstepMin", Conf0)
Conf0 = New cDEVoption(tDEVconfType.tBoolean, "Better output files format")
Conf0 = New cDEVoption(tDEVconfType.tBoolean, "Detailed output files format")
Conf0.BoolVal = False
MyOptions.Add("AdvFormat", Conf0)
Conf0 = New cDEVoption(tDEVconfType.tSingleVal, "Max. engine speed for torque converter operation")
Conf0.SingleVal = 1600
MyOptions.Add("TClimit", Conf0)
'**************************** END: Parameters Configuration '*****************************
'*****************************************************************************************
'*****************************************************************************************
......@@ -147,9 +143,8 @@ Public Class cDEV
'Initialize the actual Config-Parameters from MyConfigs list
Public Sub SetOptions()
TCiterPrec = MyOptions("TCiterPrec").SingleVal
TCnUstep = MyOptions("TCnUstep").SingleVal
TCnUstepMin = MyOptions("TCnUstepMin").SingleVal
AdvFormat = MyOptions("AdvFormat").BoolVal
TClimit = MyOptions("TClimit").SingleVal
End Sub
'Demo for Delegate Function
......
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