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 > NCPlot G-Code editor / backplotter


NCPlot G-Code editor / backplotter Discuss NCPlot software here.


Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 06-18-2006, 09:46 AM
MetLHead's Avatar
Gold Member
 
Join Date: Mar 2003
Location: USA
Posts: 724
MetLHead is on a distinguished road
NCPlot v2 beta 22 available

You can download it at:

www.ncplot.com


General
=======

Fixed toolbar related window resizing problem. Under certain conditions a blank bar would remain under the toolbar when the NCPlot window was maximized.

Fixed problem with system variables #5001, #5021 and #5041 when machine type is set to Lathe diameter. These values were only half of what they should have been.

NCPlot now works properly regardless of the decimal point character assigned by the Control Panel's regional settings.

Added a status bar panel for quick access to script files. When this panel is clicked, a menu pops up with a list of the available script files. When one the script files is selected from this menu, the script file is executed.

Added support for Lathe G70 - G73 cycles. These cycles do not display the full roughing tool path, but rather just the finished profile. They work similar to a subprogram, beginning at the block designated by the "P" address and ending at the block designated by the "Q" address.



DXF Import / Export
===================

The DXF exporter has been modified to save the actual viewport contents rather than generating the DXF data from the G-Code program. This is faster and allows saving of geometry created with the Calc tools.

Added a new DXF export option to the File menu. The new tool is called "Export Selected as DXF File" and allows saving only the selected viewport entities to a DXF file.

Fixed a bug in the DXF exporter. When the Lathe machine type was active, the exporter was saving all arcs as clockwise. This is fixed.

Fixed an error that was occurring when a DXF file was opened from the File | Open menu. The drawing would display, but a run time error would shut NCPlot down when converted to G-Code. There was also a case where the drawing would display briefly and then disappear before the conversion options window opened.



Viewport
========

Added the ability to maximize the viewport. Double-clicking the viewport will hide the program display in order to maximize the size of the viewport. Double-clicking again will restore the program display.

Added a slider control to the bottom of the viewport. This allows you to control the backplot by simply moving the slider.


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

  #2   Ban this user!
Old 06-26-2006, 07:13 PM
single phase's Avatar  
Join Date: Feb 2006
Location: Pennsylvania
Age: 52
Posts: 318
single phase is on a distinguished road
G28

Thank you for adding that. Where do I set the x and z lathe offsets or in other words the value in machine coordinates for the tool safe turret rotation? Will the graphics show the tool moving over to this point?
Tweet this Post!Share on Facebook
Reply With Quote

  #3  
Old 06-26-2006, 08:15 PM
MetLHead's Avatar
Gold Member
 
Join Date: Mar 2003
Location: USA
Posts: 724
MetLHead is on a distinguished road

Originally Posted by single phase
Thank you for adding that. Where do I set the x and z lathe offsets or in other words the value in machine coordinates for the tool safe turret rotation? Will the graphics show the tool moving over to this point?
Are you talking about the G54 - G59 work offsets? These can be found under Setup | Machine Configuration on the work offsets tab. See the attached pic.

Regards,
Scott
Attached Thumbnails
Click image for larger version

Name:	work.jpg‎
Views:	63
Size:	30.5 KB
ID:	19285  
Tweet this Post!Share on Facebook
Reply With Quote

  #4  
Old 06-26-2006, 08:47 PM
tobyaxis's Avatar
Moderator
 
Join Date: Jan 2006
Location: USA
Posts: 4,395
tobyaxis is on a distinguished road
Question NC Plot

Hello MetLHead,

I went to your website and saw that Beta2.2 was still in the development stage. Does your post here indicate that Beta2.2 is up and running? Or are you still working on the bugs?
__________________
Toby D.
"Imagination and Memory are but one thing, but for divers considerations have divers names"
Schwarzwald

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)

www.refractotech.com
Tweet this Post!Share on Facebook
Reply With Quote

  #5  
Old 06-27-2006, 07:19 AM
MetLHead's Avatar
Gold Member
 
Join Date: Mar 2003
Location: USA
Posts: 724
MetLHead is on a distinguished road

Tobyaxis,

All of the beta versions so far have been available to the general public. This is so I get as much feedback as possible about what works and what doesn't. The official release of NCPlot version 2 will be sometime this summer, probably before the end of August. So, I'm pretty much finished adding features and am working on finishing up what I have and fixing whatever bugs there are.

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

Sponsored Links
  #6   Ban this user!
Old 06-27-2006, 10:27 AM
single phase's Avatar  
Join Date: Feb 2006
Location: Pennsylvania
Age: 52
Posts: 318
single phase is on a distinguished road

The G28 command.
Tweet this Post!Share on Facebook
Reply With Quote

  #7  
Old 06-27-2006, 04:54 PM
MetLHead's Avatar
Gold Member
 
Join Date: Mar 2003
Location: USA
Posts: 724
MetLHead is on a distinguished road

Originally Posted by single phase
The G28 command.
??

I'm sorry, but I think you lost me. Could you explain what you are trying to do? If you have a sample program, that would help me too.

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

  #8   Ban this user!
Old 06-27-2006, 08:56 PM
single phase's Avatar  
Join Date: Feb 2006
Location: Pennsylvania
Age: 52
Posts: 318
single phase is on a distinguished road

On a lathe the G28 command returns the cutter back to the machine zero in both X and Z. It executes moves in the same way as the G00 does, by that I mean it moves both axis at the same rate (not a linear move).

The machine zero on a lathe is usually out away from the spindle and therefor a safe place for the turret to rotate without any risk of a tool crash. So it is where you move the tool to before you do a tool change.

To simulate that in your program, you could put in tool offsets for all the tools or you could just put in an offset from the G50 to the machine zero. By default that is where all programs should start from.

The G28 command also has X(or U) and Z(or W) parameters. They move the tool to an intermediate point before going to the machine zero.

G1X0Z-1;
G28U0Z.5;

This G28 moves the drill out of the part before returning to the machine zero. Without the Z.5 parameter the drill is broken off in the part.

Cheers
Dave

Last edited by single phase; 06-28-2006 at 12:31 AM.
Tweet this Post!Share on Facebook
Reply With Quote

  #9  
Old 06-27-2006, 09:24 PM
MetLHead's Avatar
Gold Member
 
Join Date: Mar 2003
Location: USA
Posts: 724
MetLHead is on a distinguished road

Hi Dave,

The G28 should work just like you described. The commanded axes first move to the commanded position, then move to the machine zero point. You can set NCPlot to show G00 moves as non-interpolated. This is on the machine configuration dialog on the control options tab. The only thing not supported is the tool offsets. Did you try the new beta? Let me know if you see something that doesn't work.

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

  #10   Ban this user!
Old 06-27-2006, 09:24 PM
single phase's Avatar  
Join Date: Feb 2006
Location: Pennsylvania
Age: 52
Posts: 318
single phase is on a distinguished road
UI request.

I would like to make a request.

CIMCO Edit is a tool similar to yours. It has a nice user interface, one feature of which I wish you would consider adopting. It automatically and dynamically refreshes the plot. The biggest reason I did not buy it was it is far behind your program when it comes to lathe simulation. Yours works and CIMCO Edit doesn't. I called them on it and they said their programmers just concentrate on mill stuff.

Predator Editor does many of the lathe g-code commands the right way but its back plot feature is so bad I laughed at it. Yours is way better.

The thing that makes an automatic update option so cool to use is you can put it in a mode where it always updates the graphics the instant you change a parameter of code. Say you are editing a program and you think to your self I better move that just a little and so you change a 4 to a 4.5 and as you type it in, the line in the graphics window jumps over to the new position.

Another feature I would like to see is dynamic "plot to". When this is selected the program dynamically plots to the position of the cursor. Move the cursor to another line in the g-code and the plot updates and stops there. An offshoot of this feature is to have the plot show the full program plotted but a cutter is shown on the plot with the position at the position of the cursor in the g-code.


Even if you do not like my ideas I want to thank you for such a great tool. Keep up the good work.

Cheers
Dave
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 06-27-2006, 09:48 PM
single phase's Avatar  
Join Date: Feb 2006
Location: Pennsylvania
Age: 52
Posts: 318
single phase is on a distinguished road

Originally Posted by MetLHead
Hi Dave,

The G28 should work just like you described. The commanded axes first move to the commanded position, then move to the machine zero point. You can set NCPlot to show G00 moves as non-interpolated. This is on the machine configuration dialog on the control options tab. The only thing not supported is the tool offsets. Did you try the new beta? Let me know if you see something that doesn't work.

Thanks,
Scott
Where is the machine zero in the plot window? It can not be at the G54 zero.
Tweet this Post!Share on Facebook
Reply With Quote

  #12   Ban this user!
Old 06-28-2006, 12:30 AM
single phase's Avatar  
Join Date: Feb 2006
Location: Pennsylvania
Age: 52
Posts: 318
single phase is on a distinguished road

I see what you did. You have it moving the cutter to X0.0Z0.0. That is not what the G28 command really does and there is no value in that. It would just cause a crash.

The G28 command moves the cutter to machine zero (while going through the intermediate position). As an example G28U0W0 moves the cutter directly to the machine zero.

Please see my example above and note that I edited it because I screwed it up the first time around.


Dave
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





All times are GMT -5. The time now is 09:07 AM.





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