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

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

Merge pull request #230 in VECTO/vecto-sim from master to develop

* commit '263ebfb8':
  do not read default.vtcc in vecto 2.2 (drag part, nu >= 1)
parents 4134bbe2 263ebfb8
No related branches found
No related tags found
No related merge requests found
...@@ -391,12 +391,12 @@ Public Class cGBX ...@@ -391,12 +391,12 @@ Public Class cGBX
Do While Not file.EndOfFile Do While Not file.EndOfFile
line = file.ReadLine line = file.ReadLine
TCnuMax = CSng(line(0)) TCnuMax = CSng(line(0))
If CSng(line(0)) < 1 Then 'If CSng(line(0)) < 1 Then '@@@quam: read the complete file!
TCnu.Add(TCnuMax) TCnu.Add(TCnuMax)
TCmu.Add(CSng(line(1))) TCmu.Add(CSng(line(1)))
TCtorque.Add(CSng(line(2))) TCtorque.Add(CSng(line(2)))
TCdim += 1 TCdim += 1
End If 'End If
Loop Loop
Catch ex As Exception Catch ex As Exception
WorkerMsg(tMsgID.Err, "Error while reading Torque Converter file! (" & ex.Message & ")", MsgSrc) WorkerMsg(tMsgID.Err, "Error while reading Torque Converter file! (" & ex.Message & ")", MsgSrc)
...@@ -413,29 +413,31 @@ Public Class cGBX ...@@ -413,29 +413,31 @@ Public Class cGBX
If TCnuMax > 1 Then TCnuMax = 1 If TCnuMax > 1 Then TCnuMax = 1
'Add default values for nu>1 If False Then ' @@@quam: don'r read default tcc file
If Not file.OpenRead(MyDeclPath & "DefaultTC.vtcc") Then 'Add default values for nu>1
WorkerMsg(tMsgID.Err, "Default Torque Converter file not found!", MsgSrc) If Not file.OpenRead(MyDeclPath & "DefaultTC.vtcc") Then
Return False WorkerMsg(tMsgID.Err, "Default Torque Converter file not found!", MsgSrc)
End If Return False
End If
'Skip Header 'Skip Header
file.ReadLine() file.ReadLine()
Try Try
Do While Not file.EndOfFile Do While Not file.EndOfFile
line = file.ReadLine line = file.ReadLine
TCnu.Add(CSng(line(0))) TCnu.Add(CSng(line(0)))
TCmu.Add(CSng(line(1))) TCmu.Add(CSng(line(1)))
TCtorque.Add(CSng(line(2))) TCtorque.Add(CSng(line(2)))
TCdim += 1 TCdim += 1
Loop Loop
Catch ex As Exception Catch ex As Exception
WorkerMsg(tMsgID.Err, "Error while reading Default Torque Converter file! (" & ex.Message & ")", MsgSrc) WorkerMsg(tMsgID.Err, "Error while reading Default Torque Converter file! (" & ex.Message & ")", MsgSrc)
Return False Return False
End Try End Try
file.Close() file.Close()
End If
Return True Return True
End Function End 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