CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > CamSoft Products


CamSoft Products Discuss Camsoft PC based CNC controller products here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 04-03-2005, 05:38 AM
 
Join Date: Nov 2004
Location: USA
Age: 50
Posts: 446
murphy625 is on a distinguished road
Timer.fil How much is to much ?

The Camsoft manual says that a A degradation of system performance can be expected when the amount of commands in the TIMER.FIL file increases.
How much is to much for a pentium computer??

I'm thinking that this is probably an open ended question that is not easy to answer but I am just looking for some round figures..

Is fifty IF THEN statements to much? What about 200 of them? Or how about checking 200 variables?
My timer is set to 1000ms (1 second) and must always be on.

I dont think I am going to run into problems but I would hate to continue with a program design structure that is bound to hit a brick wall..
Does anyone have an idea as to how to test the performance??

One other thing that I would like to know.. How big are your .fil files??
My macro.fil is just over 40K
Timer.fil is about 4K
Mcode.fil is about 15K (and growing quick)
Everything else is under 1K or 2K.
My .CBK backup file is around 90K now.

Thanks!
Murphy
Tweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 04-03-2005, 11:11 AM
 
Join Date: Sep 2003
Location: ADDISON, Illinois
Posts: 17
Jim Cooper is on a distinguished road

Murphy,

I have noticed that too much logic in the TIMER.FIL file does degrade performance. If you think about it everytime the timer interval you set elapses then all the logic runs again.

Motion is handled separately by the second CPU on the motion board so you're safe there cause it won't affect positioning performance.

It's all in how you manage the IF THEN GOTO logic in the TIMER.

Use GOTO to jump around large chunks of logic that don't need to run once the timer logic finds what it needs. This makes the logic flow run faster. Then put the most important events at the top so they run first.

The two major factors seem to be how well the logic flows and how often the timer interval is set. TIMER ON,1000 every 1 second is very good cause in computer terms that's a long time. I didn't try too hard but I got up to 100 lines in the TIMER.FIL file and it ran quick at a 1000 milliseconds.

Your package is different than mine and the limits to how many lines in the factory automation program may be less. CNC Lite and Professional do have a limit but find another way like other buttons on the screen if you have too many lines for the timer. The guys at Camsoft have always been more than willing to help me if I needed a new command or something increased.

200 variables are okay. I know there is room for 999 of them.

The MACRO.FIL and MCODE.FIL files I have done for some very nasty machine tool changers have been huge. Far bigger logic files than what you have so far. I wouldn't worry about these. If Camsoft could handle these machines it could handle anything.

Also I ran into something else on the test program I made. Watch out when using IF THEN to compare a variable and some text like the EXIT MENU text and using spaces at the end of the text. It compares every thing even spaces unless it's a numeric value.


On the subject from yesterday

Yesterday you didn't update the TIME variable \31 in the code you posted so there was no need to go into a loop. So if it wasn't for the reason that you wanted to update the pop up list box menu for the time then the code I posted yesterday will work very cleanly.

Instead of the M code from yesterday put this code in the TIMER and also refresh your variables here too.

!IF \81=0 THEN \9=FREE
!IF \81=2 THEN \9=BUSY
!LISTCLEAR: LISTSETUP 20;5625;2000;2000 :LISTADD STAGE 1 STATUS :LISTADD EXIT MENU :LISTADD TIME LEFT \31 :LISTADD STATUS \9 :LISTADD DWELL \151 :LISTADD DRIP \171 :LISTPICK \8

Jim C.
Tweet this Post!Share on Facebook
Reply With Quote

  #3   Ban this user!
Old 04-03-2005, 03:11 PM
 
Join Date: Nov 2004
Location: USA
Age: 50
Posts: 446
murphy625 is on a distinguished road

Jim,

Thanks for all that information!!!!
Your comments about timer interval and file sizes make me feel much more confident.
Thanks for taking your time to tell me this stuff....

As for the ListSetup coding. I hesitate to put that into the timer.fil because I want to keep that file small so I try not to put code into it when I can find another way. What I did not tell you is that there are 14 different versions of that code. Each version is for a specific process on my machine. That code was created for the purpose of letting a user click on a screen graphic that represents one of the 14 different processes on my machine.
The user clicks on the graphic button, that listsetup menu pops up, and the user can monitor all the current process parameters and see them changing for that particular part of the process.

Now dont blame me because you created this question!! LOL
Question / Comment: I understand that I could make it so that when a user clicks on one of the graphics, an Mcode changes a variable, (lets say \50 ). I could then put code in the timer.fil to check that \50.

IF \50=1 THEN Run this listsetup code.
IF \50=2 THEN Run this listsetup code.

But what I dont understand about filling up the timer.fil (and you hit on this) is will things bog down even though IF \50=?? THEN never holds true??
What you said leads me to believe I can fill that timer.fil up with lots of stuff so long as an IF THEN statement is used to see if it needs to be run..
In English: No matter how much code is in the timer.fil , if the code doesnt run, it wont slow anything down.
Would that be a correct statement?

Thanks a bunch for your help Jim,
Murphy
Tweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 04-03-2005, 03:57 PM
 
Join Date: Sep 2003
Location: ADDISON, Illinois
Posts: 17
Jim Cooper is on a distinguished road

Murphy,

The TIMER.FIL file will still be affected by lots of IF THEN commands but if the statement is not true and doesn't run, it goes by so fast you won't notice but hundreds of these would have some small affect i am sure.

The only way I see that you can display a bunch of different types of list boxes is write the code as I suggested in the Mcode.fil file originally and forget the timer. Exiting the Mcode without looping

The benefit is that you can have multiple versions. 14 if you wanted but the problem is that these can not go in tight GOTO LOOPs. You'll just have to set the variables for time and date when you enter the Mcode and refresh the variables as needed.

Jim C.
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 04-03-2005, 04:47 PM
 
Join Date: Nov 2004
Location: USA
Age: 50
Posts: 446
murphy625 is on a distinguished road

Jim,
Thanks for the tip!!! The information you have provided has saved me alot of time.
I am starting to wonder if this Camsoft software is going to be able to do the job. Here are some MAJOR LIMITATIONS that I am running into:

1. I can not add any more macros to my macro.fil unless I delete some. I am getting an error message that says I have to many.

2. I can not add more than 150 lines total to the timer.fil

3. I can not have more than 100 lines in any specific Mcode. (doesnt do any good to use another Mcode because you cant call one Mcode from another as you can a macro)

4. I can not have more than 100 lines in any [Macro]
How and the heck am I supposed to write programs with less than 100 lines?????

By far, the largest specific problem is that it is not possible to do an "OR" statement on a single line. You must put the "IF THEN" on seperate lines.
!IF \20=0 THEN bla bla :IF\21=0 THEN bla bla :IF \22=0 THEN bla bla
This line above wont work.. All 3 of those statements must go on seperate lines. This is what is causing me the biggest problem..
Camsoft forces me to use the following:
!IF \20=0 THEN bla bla
!IF \21=0 THEN bla bla
!IF \22=0 THEN bla bla

Now, if I have 14 different processes with around 8 or 10 checks and balances per process, that comes to 140 IF THEN statements. And this does not include coding to change buttons and lights on the user interface.

I am familiar with using Visual Basic so I am not completely stupid with logic commands. Any ideas?? Am I approaching this wrong?? I have looked at the problem from several angles and I run into CAMSOFT road blocks everytime. This NEVER happened when I used to use Visual Basic.
I find it interesting that CAMSOFT makes absolutly no mention of these limitations anywhere or anyplace..
I just can not get over being limited to 100 lines of code.. This is insane!!

Please tell me I am missing something here...

Thanks,
Murphy
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 04-03-2005, 06:34 PM
 
Join Date: Sep 2003
Location: ADDISON, Illinois
Posts: 17
Jim Cooper is on a distinguished road

Murphy,

I have a different package than you and I don't have those same limitations.

Some one from an earlier thread said you can nest macros and if that means call one macro from another than that's what I do and my files are much bigger than what yours are. The sample macro.mac file on my Camsoft CD is 159k with hundreds of macros. I think you could try only making 14 IF THEN statements and have these call your 8 or 10 checks in other macros and so on.

You should call Camsoft and show them what you're doing. I may be steering you wrong. Sorry I couldn't help you more but I have to get to my real job tomorrow.

Jim C.
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 04-03-2005, 06:52 PM
 
Join Date: Nov 2004
Location: USA
Age: 50
Posts: 446
murphy625 is on a distinguished road

Jim,

Thank you very much for your time.

You've been a huge help.. I am going to have to give Camsoft a ring about this issue.

Thanks again for all your help,

Murphy
Tweet this Post!Share on Facebook
Reply With Quote

  #8  
Old 04-04-2005, 12:26 PM
Gold Member
 
Join Date: Sep 2003
Location: USA
Posts: 529
HillBilly is on a distinguished road

How does a post just disappear?
Tweet this Post!Share on Facebook
Reply With Quote

  #9   Ban this user!
Old 04-04-2005, 03:39 PM
 
Join Date: Nov 2004
Location: USA
Age: 50
Posts: 446
murphy625 is on a distinguished road

Maybe the Admin was hungry and ate it....

That happened to me the other day also... I swore I posted something.. came back in an hour to check the response and it vanished..

I guess its called "$hit happens"

Murphy
Tweet this Post!Share on Facebook
Reply With Quote

  #10  
Old 04-04-2005, 03:45 PM
Al_The_Man's Avatar
Community Moderator
 
Join Date: Dec 2003
Location: Canada
Posts: 15,713
Al_The_Man is on a distinguished road
Buy me a Beer?

Originally Posted by HillBilly
How does a post just disappear?
The moderator will remove it, if it does not follow forum rules and Content guidelines.
Al
__________________
“Logic will get you from A to B. Imagination will take you everywhere.”
Albert E.
(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 04-04-2005, 04:32 PM
 
Join Date: Nov 2004
Location: USA
Age: 50
Posts: 446
murphy625 is on a distinguished road

I am sure my post followed the forum rules..

The post was a simple question about camsoft software operation and was posted tot he camsoft forum...

I think what happened is I hit the "Preview Post" button and never submitted. I wonder how often this happens to other... LOL.. gotta watch what we click on!

Murphy
Tweet this Post!Share on Facebook
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using Gauges in CamSoft Steve Etter CamSoft Products 6 11-12-2003 02:58 PM




All times are GMT -5. The time now is 11:34 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353