473,395 Members | 1,462 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Eerie problem with compiler... need help

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
Jun 21 '07 #1
7 1562
pureenhanoi
175 100+
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)
Jun 22 '07 #2
Killer42
8,435 Expert 8TB
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.
Jun 22 '07 #3
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.
Jun 26 '07 #4
pureenhanoi
175 100+
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.
Jun 27 '07 #5
Killer42
8,435 Expert 8TB
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.
Jun 27 '07 #6
Killer42
8,435 Expert 8TB
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!
Jun 27 '07 #7
Killer42
8,435 Expert 8TB
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.
Jun 27 '07 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

12
by: rhmd | last post by:
Just found Python and I love it. What an elegant language! I would like to use it for various applications, but the mathematical calculations are way too slow (a million sines 8 seconds in Python...
6
by: Martin Bless | last post by:
The good news: Along with Python-2.4 comes really good news to Windows users. Yes, you now CAN build extension modules yourself using the SAME C++ compiler and linker Python is built with...
10
by: Alan Lee | last post by:
Hi i am writing a small simulation for a bunch of atoms jumping around on a surface. I know i am a crappy programmer since i am not very familiar with object oriented languages. I am woindering...
7
by: Ebay boy | last post by:
I have recently bought a compiler and I have this sample code that includes the following: #include <stdlib.h> #include <string.h> #include <time.h> Unfortunately, my compiler doesn't...
66
by: Knady | last post by:
Hi, I have the following problem, I must to do my assignment, but I really do not know how to use the malloc. I need create a program that will be used to do some algebrical computation on the...
17
by: Student | last post by:
Hi All, I have an assignment for my Programming language project to create a compiler that takes a C++ file as input and translate it into the C file. Here I have to take care of inheritance and...
5
by: Ark | last post by:
Consider static T foo; .............. T get_foo(void) { return foo; } In a multi-threaded (or -tasked) environment, I need to ensure that I get_foo() grabs T atomically (e.g. is not...
83
by: Anonymous | last post by:
Came across some code summarized as follows: char const* MyClass::errToText(int err) const { switch (err) { case 0: return "No error"; case 1: return "Not enough"; case 2: return "Too...
3
by: Rene | last post by:
Hello to all! For a long time I have been "fighting" a problem compiling an OpenGL program which uses GLUT. First I have put a question in a Watcom group (I want to use this compiler) to which I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.