Connecting Tech Pros Worldwide Help | Site Map

Eerie problem with compiler... need help

Newbie
 
Join Date: May 2007
Posts: 13
#1: Jun 21 '07
So I posted this before, but got no answer. I found a way around it but now my backway is doing the same problem.

Basically, in one of my get methods:
Expand|Select|Wrap|Line Numbers
  1. Property Get H() As Double
  2.     H = CalcH 'This was implemented as the "Back Way" and it fixed problem, before the code in CalcH was in here
  3. End Property
  4.  
  5. Private Function CalcH() As Double
  6.     If pH <= 0# And pT > 0# And pP > 0# Then 'calculate if not set
  7.         pH = STMPTH(pP, pT)
  8.     ElseIf pH <= 0# And pT > 0# Then
  9.         If pType = StreamType.Water Then
  10.             pH = STMTQH(pT, 0#)
  11.         Else
  12.             pH = STMTQH(pT, 1#)
  13.         End If
  14.     ElseIf pH <= 0# And pP > 0# Then
  15.         If pType = StreamType.Water Then
  16.             pH = STMPQH(pP, 0#)
  17.         Else
  18.             pH = STMPQH(pP, 1#)
  19.         End If
  20.     End If
  21.     CalcH = pH
  22. End Function
  23.  
When I run the program, I give pH a value of 1488. But when it comes to retrieving that value the compiler goes nuts. If I run the program, I get "Error 6: Overflow". So I use the debugger, I step through the WHOLE program... and it completes its run with no issue.... so I run again... and get the error. I find out it is when I retrieve the H value. So I put a break right there. I run program to the break and then step through the retrieval and find something quite odd. When it gets to the
Expand|Select|Wrap|Line Numbers
  1. If pH <= 0# And pT > 0# And pP > 0# Then 'calculate if not set
it actually returns true... but pH has a value of 1488! so I do this again and mouse over the pH to see what it says and it says "pH = 0" thats odd... I hit F8 to step. then mouse over pH, still "pH = 0" I open up the locals window and locate the pH variable. it says "pH = 1488", I mouse over pH again and now it says "pH = 1488" BUT IT JUST PASSED AN IF STATEMENT SAYING IF<=0!!!! please help!

Screenshots (in order):
#1
#2
#3
#4
#5
#6
#7
pureenhanoi's Avatar
Familiar Sight
 
Join Date: Mar 2007
Location: VietNam
Posts: 175
#2: Jun 22 '07

re: Eerie problem with compiler... need help


Quote:

Originally Posted by Tophurious

So I posted this before, but got no answer. I found a way around it but now my backway is doing the same problem.

Basically, in one of my get methods:

Expand|Select|Wrap|Line Numbers
  1. Property Get H() As Double
  2.     H = CalcH 'This was implemented as the "Back Way" and it fixed problem, before the code in CalcH was in here
  3. End Property
  4.  
  5. Private Function CalcH() As Double
  6.     If pH <= 0# And pT > 0# And pP > 0# Then 'calculate if not set
  7.         pH = STMPTH(pP, pT)
  8.     ElseIf pH <= 0# And pT > 0# Then
  9.         If pType = StreamType.Water Then
  10.             pH = STMTQH(pT, 0#)
  11.         Else
  12.             pH = STMTQH(pT, 1#)
  13.         End If
  14.     ElseIf pH <= 0# And pP > 0# Then
  15.         If pType = StreamType.Water Then
  16.             pH = STMPQH(pP, 0#)
  17.         Else
  18.             pH = STMPQH(pP, 1#)
  19.         End If
  20.     End If
  21.     CalcH = pH
  22. End Function
  23.  
When I run the program, I give pH a value of 1488. But when it comes to retrieving that value the compiler goes nuts. If I run the program, I get "Error 6: Overflow". So I use the debugger, I step through the WHOLE program... and it completes its run with no issue.... so I run again... and get the error. I find out it is when I retrieve the H value. So I put a break right there. I run program to the break and then step through the retrieval and find something quite odd. When it gets to the
Expand|Select|Wrap|Line Numbers
  1. If pH <= 0# And pT > 0# And pP > 0# Then 'calculate if not set
it actually returns true... but pH has a value of 1488! so I do this again and mouse over the pH to see what it says and it says "pH = 0" thats odd... I hit F8 to step. then mouse over pH, still "pH = 0" I open up the locals window and locate the pH variable. it says "pH = 1488", I mouse over pH again and now it says "pH = 1488" BUT IT JUST PASSED AN IF STATEMENT SAYING IF<=0!!!! please help!

i saw that you are programing about Class. I've never seen this type of error before. But i think problem here is caused by Local Varriables and Global Varriables. Can u discribe more about ur Class. ( Member Varriables and Member Function)
Moderator
 
Join Date: Oct 2006
Location: Australia
Posts: 7,748
#3: Jun 22 '07

re: Eerie problem with compiler... need help


I can't look at the images right now, because my work system blocks them. Will have a look in a few hours when I'm at home. In the meantime...

Are you setting it to 1488 or 1488# ? Perhaps there's an unintended conversion happening somewhere along the line, which is causing a calculation to overflow. VB, along with some other languagesw, has a nasty tendency to convert everything in a calculation to match the smallest data type used anywhere in the calculation. This can really screw you up sometimes.

Like I said, I'll have a look at this in detail in a few hours, and see whether anything comes to mind.
Newbie
 
Join Date: May 2007
Posts: 13
#4: Jun 26 '07

re: Eerie problem with compiler... need help


Expand|Select|Wrap|Line Numbers
  1. Private pP As Double 'Pressure of the stream
  2. Private pT As Double 'Temperature of the stream
  3. Private pH As Double 'Enthalpy of the stream
  4. Private pW As Double 'Flow of the stream
  5. Private pType As StreamType 'Type of stream: Steam, Water, Leak(Enum)
  6. Private pName As String 'Name of the stream
  7.  
  8. Property Let P(P As Double)
  9.     pP = P
  10. End Property
  11.  
  12. Property Let T(T As Double)
  13.     If pType = Steam And pP <> 0 Then
  14.         If (T - STMPT(pP)) < 27 Then 'Check for 27 degree superheat per PTC 6
  15.             pT = 0
  16.         Else
  17.             pT = T
  18.         End If
  19.     Else
  20.         pT = T
  21.     End If
  22. End Property
  23.  
  24. Property Let H(H As Double)
  25.     pH = H
  26. End Property
  27.  
  28. Property Let W(W As Double)
  29.     pW = W
  30. End Property
  31.  
  32. Property Get P() As Double
  33.     P = pP
  34. End Property
  35.  
  36. Property Get T() As Double
  37.     If pT = 0 And pH > 0 And pP > 0 Then 'calculate if temp unknown & H known
  38.         If Not SuperHeat Then
  39.             pT = STMPHT(pP, pH)
  40.         End If
  41.     End If
  42.     T = pT
  43. End Property
  44.  
  45. Property Get H() As Double
  46.     H = CalcH
  47. End Property
  48.  
  49. Property Get W() As Double
  50.     W = pW
  51. End Property
  52.  
  53. Property Get SType() As StreamType
  54.     SType = pType
  55. End Property
  56.  
  57. Property Get Name() As String
  58.     Name = pName
  59. End Property
  60.  
  61. Property Get S() As Double 'Get Entropy
  62.     If pT <> 0 And pP <> 0 Then
  63.         S = STMPTS(pP, pT)
  64.     ElseIf pT = 0 And pP <> 0 Then
  65.         S = STMPHS(pP, H)
  66.     End If
  67. End Property
  68.  
  69. Property Get x() As Double 'Get X
  70.     x = STMPHQ(pP, H)
  71. End Property
  72.  
  73. Property Get Q() As Double 'Get Energy Flow Rate (H*W)
  74.     Q = H * pW
  75. End Property
  76.  
  77. Property Get V() As Double 'Get Specific Volume
  78.     V = STMPTV(P, T)
  79. End Property
  80.  
  81. Property Get Density() As Double 'Get Specific Density
  82.     If P = 0 Then
  83.         Density = 62.087 + 0.022519 * T - 0.00033873 * (T ^ 2) + 0.0000010579 * (T ^ 3)
  84.     Else
  85.         Density = 1 / V
  86.     End If
  87. End Property
  88.  
  89. Property Get C() As Double 'Get Specific Heat
  90.     C = 1.0244 - 0.00071715 * pT + 0.0000061796 * (pT ^ 2) - 0.000000016397 * (pT ^ 3)
  91. End Property
  92.  
This problem went away. And KEEPS COMING BACK!!! I switched my computers out and it started working again. Now I have the same sort of issue and we tried it on 3 different computers here. same problem. I run the program and get overflow. but I can hold down F8 for 20 minutes and easily fly past the point at which it crashes. I am so tired of it. I want to use C# or C++ but unfortunately my company does not have licenses for it.
pureenhanoi's Avatar
Familiar Sight
 
Join Date: Mar 2007
Location: VietNam
Posts: 175
#5: Jun 27 '07

re: Eerie problem with compiler... need help


Quote:

Originally Posted by Tophurious

This problem went away. And KEEPS COMING BACK!!! I switched my computers out and it started working again. Now I have the same sort of issue and we tried it on 3 different computers here. same problem. I run the program and get overflow. but I can hold down F8 for 20 minutes and easily fly past the point at which it crashes. I am so tired of it. I want to use C# or C++ but unfortunately my company does not have licenses for it.

i tried copy ur code in to a new project and do it. No problem occured. Maybe, u have other statement that i dont know. But i have small idea.
Expand|Select|Wrap|Line Numbers
  1. Property Let H(H As Double)
  2.       pH = H
  3. End Property
  4.  
Here, u let pH = H. H maybe a local varriable in proprerty Let. If this is, no problem occure. But if VB translate H as Property Get H() As Double that u declare. So, this is wrong. I donot ensure how VB translate this, but u shouldnt use the same name for the varriable as the Property name.
Use the same name for Property Let and Property Get only.
Expand|Select|Wrap|Line Numbers
  1. Property Let H (hValue as Double)
  2.      pH = hValue
  3. End Property
  4. Property Get H () As Double 
  5.      H = calH()
  6. End Property
  7.  
Try replacing other Varriables which name as similar as Property name and do ur project again. If it still have error, i must say sorry because i cannot help u any more.
Moderator
 
Join Date: Oct 2006
Location: Australia
Posts: 7,748
#6: Jun 27 '07

re: Eerie problem with compiler... need help


That is some weird stuff you've got going on there.

Sorry, I completely forgot about it. I'll e-mail myself a reminder to have a look when I get home tonight.

In the meantime, one straw you could grasp in desperation is to put DefDBL A-Z at the top of the module(s), to indicate a default data type of Double for everything. Probably won't help, but hey, it probably won't hurt.
Moderator
 
Join Date: Oct 2006
Location: Australia
Posts: 7,748
#7: Jun 27 '07

re: Eerie problem with compiler... need help


Just a note. As I think on it further, it's not really all that surprising that things can work slightly differently between compiled and interpreted code. After all, if the problem is related to temporary values generated during a calculation, there's no reason why the runtime and IDE code couldn't be using some slightly different code internally to do it.

My guess is that it will probably just end up being necessary to force something to Double format, or split up a calculation (or comparison) to gain finer control over the format conversions. However, I haven't read back through the whole of the thread yet. Will do so tonight.

In the meantime, good luck!
Moderator
 
Join Date: Oct 2006
Location: Australia
Posts: 7,748
#8: Jun 27 '07

re: Eerie problem with compiler... need help


Well, I've had a look through the images. I'm going to admit complete bafflement. I've never really done much with classes, and I know things can get complicated due to different memory models, different types of creation/sharing/destruction of objects and so on. For all I know, there might be another instance of something which is working with the same data that you are looking at.
Reply