03-03-2008 08:48 AM
03-04-2008 02:54 PM
03-04-2008 06:41 PM
03-07-2008 03:58 PM
03-07-2008 05:14 PM
You have a race condition with respect to the Linear Temp indicator. You are reading a local variable of it and writing to the indicator. Whether the local variable has the value from this iteration of the loop or the previous iteration of the loop all depends on "who wins the race" and which wires get executed first. It will lead to unpredictable results.
Is that what you mean by "I need to execute the function in the red box after the case structre"? Use a wire from the line go into the indicator in the true case to go to the functions in the red box. (By the way, what happens in the false case?)
You should also eliminate the local variable for "Load Cell Constant" and just take a wire from outside the loop and tunnel it into the loop.
I don't understand the question about the"getting the initial value without it going into the max function". It seems like a different questions then second part of the sentence.
03-08-2008 07:04 AM
03-08-2008 12:31 PM
03-10-2008 01:01 PM
03-11-2008 10:05 AM
03-11-2008 10:13 AM