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! > CAM Software > EdgeCam


EdgeCam Discuss EdgeCam software here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 02-24-2009, 11:40 AM
 
Join Date: Jun 2006
Location: usa
Posts: 236
kendo is on a distinguished road
PCI references

I dont know the first thing to do after bouncing around in that help file and I dont get to spend a lot of time bangin my head against this program.
Can someone please point me in the right direction with a simple PCI?

I mean really simple, like this:

change all entities to "geometry" layer, delete all other layers, ask for a digitised point, move all entities to X0 Y0 Z0 using that base point

and assign this to a button on the interface
I would think I could click the button, click a point and be done

I think if I could understand a pci this simple then I could start learning.
The examples I looked at are all for creating geometry, but this sequence of actions is what I do every time I drop in geometry from autocad

I found some PDFs for the code wizard, the toolstore etc, but nothing other than the help file for the PCIs

Thanks for any help
Kenny
Reply With Quote

  #2   Ban this user!
Old 04-01-2009, 02:29 PM
 
Join Date: Dec 2008
Location: UK
Posts: 9
Dan Petre is on a distinguished road

documentation for pci is a joke, still it is only thing i can use to learn.

will have a stab at what you have asked.

till then, i have managed to write a pci today, do an areaclear cycle, stay at depth, finish the pocket with a profiling cycle with 1 spring pass with cutter comp.

the clever thing about it is it picks the depth of the pocket geometry and uses it as level.

%Label=EntityRequired
%AskDig=Select first ENTITY for chain=Digitise
%If [&Entno] <= 0
%MessageBox=nRet=[#MB_ICONERROR],"Must Digitise an entity"
%GOTO=EntityRequired
%Endif
%CALC=saveent=[&Entno]
* Chain entities storing in buffer
%InitDigInfo=gdh1
%ChainEntno=nEnts=[gdh1],[&Entno],[&DirFlag],[#TRUE],[#FALSE]
*%MessageBox=[nEnts] selected by chain

%Query=nRet=[saveent],[#TRUE]
%Calc=savedz=[&ZEnd]


* Initialising command:- Areaclear Milling
%InitCommand=cmd1=36,105
%ClearMods=[cmd1]
* Setting modifier 'Strategy'
%SetModifier=[cmd1],100,Pocket|1
* Setting modifier 'Mill Type'
%SetModifier=[cmd1],137,Climb|0
* Setting modifier 'Direction'
%SetModifier=[cmd1],40,Inside-out|0
* Setting modifier 'Link Control'
%SetModifier=[cmd1],178,Retract|0
* Setting modifier 'Feedrate'
%SetModifier=[cmd1],5,600
* Setting modifier 'Plunge Feed'
%SetModifier=[cmd1],6,50
* Setting modifier 'Speed'
%SetModifier=[cmd1],7,9000
* Setting modifier 'Offset'
%SetModifier=[cmd1],12,0.3
* Setting modifier 'Island Offset'
%SetModifier=[cmd1],175,0.3
* Setting modifier '% Stepover'
%SetModifier=[cmd1],16,50
* Setting modifier 'Depth'
%SetModifier=[cmd1],162,
* Setting modifier 'Clearance'
%SetModifier=[cmd1],28,10
* Setting modifier 'Retract'
%SetModifier=[cmd1],29,1
* Setting modifier 'Level'
%SetModifier=[cmd1],161,[savedz]+1
* Setting modifier 'Depth'
%SetModifier=[cmd1],9,-1
* Setting modifier 'Safe Distance'
%SetModifier=[cmd1],220,1
* Setting modifier 'Finish At'
%SetModifier=[cmd1],107,Depth|0
* Setting modifier 'Approach'
%SetModifier=[cmd1],135,
* Setting modifier 'Strategy'
%SetModifier=[cmd1],189,Plunge|1
* Setting modifier 'Ramp'
%SetModifier=[cmd1],197,
* Setting modifier 'Helical'
%SetModifier=[cmd1],198,
* Setting modifier 'External Boss'
%SetModifier=[cmd1],196,
* Setting modifier 'Contouring'
%SetModifier=[cmd1],180,
* Setting modifier 'Cut Increment'
%SetModifier=[cmd1],10,6
* Setting modifier 'Draft Angle'
%SetModifier=[cmd1],181,0
* Setting modifier 'Cut by Region'
%SetModifier=[cmd1],60,<Yes>
* Setting modifier 'Enable Island Facing'
%SetModifier=[cmd1],33,<Yes>
* Setting modifier 'Z Offset'
%SetModifier=[cmd1],30,0.0
* Setting modifier 'Advanced'
%SetModifier=[cmd1],235,
* Setting modifier 'Tolerance'
%SetModifier=[cmd1],62,0.05

%ExecCommand=cmdret=[cmd1],[gdh1]

* Initialising command:- Profiling
%InitCommand=cmd1=22,110
%ClearMods=[cmd1]
* Setting modifier 'Model Type'
%SetModifier=[cmd1],93,Wireframe|1
* Setting modifier 'Mill Type'
%SetModifier=[cmd1],137,Climb|0
* Setting modifier 'NC Output Smoothing'
%SetModifier=[cmd1],101,Line Arc|1
* Setting modifier 'Tolerance'
%SetModifier=[cmd1],62,0.01
* Setting modifier 'Multiple Passes'
%SetModifier=[cmd1],191,
* Setting modifier 'Start Offset'
%SetModifier=[cmd1],176,.02
* Setting modifier 'Offset Increment'
%SetModifier=[cmd1],178,.02
* Setting modifier 'Feed'
%SetModifier=[cmd1],199,
* Setting modifier 'Feedrate'
%SetModifier=[cmd1],5,1500
* Setting modifier 'Plunge Feed'
%SetModifier=[cmd1],6,1500
* Setting modifier 'Speed'
%SetModifier=[cmd1],7,6000
* Setting modifier 'Technology'
%SetModifier=[cmd1],77,None|0
* Setting modifier 'CRC'
%SetModifier=[cmd1],216,
* Setting modifier 'Compensation'
%SetModifier=[cmd1],21,Geometry|3
* Setting modifier 'Depth'
%SetModifier=[cmd1],197,
* Setting modifier 'Clearance'
%SetModifier=[cmd1],28,10
* Setting modifier ''
%SetModifier=[cmd1],236,
* Setting modifier 'Retract'
%SetModifier=[cmd1],29,1
* Setting modifier ''
%SetModifier=[cmd1],233,
* Setting modifier 'Level'
%SetModifier=[cmd1],161,[savedz]+1
* Setting modifier ''
%SetModifier=[cmd1],234,
* Setting modifier 'Depth'
%SetModifier=[cmd1],9,-1
* Setting modifier ''
%SetModifier=[cmd1],235,
* Setting modifier 'Finish At'
%SetModifier=[cmd1],107,Clearance|2
* Setting modifier 'Flat Land'
%SetModifier=[cmd1],14,
* Setting modifier 'Detect Flat Land'
%SetModifier=[cmd1],33,<Yes>
* Setting modifier 'Control'
%SetModifier=[cmd1],131,
* Setting modifier 'Finish Shallow'
%SetModifier=[cmd1],195,
* Setting modifier 'Optimisation'
%SetModifier=[cmd1],192,
* Setting modifier 'Cut by Region'
%SetModifier=[cmd1],60,<Yes>
* Setting modifier 'Nearest Neighbour'
%SetModifier=[cmd1],95,<Yes>
* Setting modifier 'Corners'
%SetModifier=[cmd1],217,
* Setting modifier 'Twizzle Radius'
%SetModifier=[cmd1],160,1.0
* Setting modifier 'Boundary Control'
%SetModifier=[cmd1],253,
* Setting modifier 'Tool Control'
%SetModifier=[cmd1],254,Tool Centre|0
* Setting modifier 'Start/End'
%SetModifier=[cmd1],209,
* Setting modifier 'Plunge Point'
%SetModifier=[cmd1],210,Automatic|0
* Setting modifier 'Retract Point'
%SetModifier=[cmd1],212,Automatic|0
%SetModifier=[cmd1],140,<None>
* Setting modifier 'Start/End Point Preference'
%SetModifier=[cmd1],186,
* Setting modifier 'Type'
%SetModifier=[cmd1],187,Digitise|0
* Setting modifier 'Profile Extension'
%SetModifier=[cmd1],116,
* Setting modifier 'Overlap'
%SetModifier=[cmd1],119,0.0
* Setting modifier 'Lead'
%SetModifier=[cmd1],135,
* Setting modifier 'Type'
%SetModifier=[cmd1],189,Horizontal|1
* Setting modifier 'Percentage Feed'
%SetModifier=[cmd1],134,100
* Setting modifier 'Equal Lead Moves'
%SetModifier=[cmd1],11,<Yes>
* Setting modifier 'Lead In'
%SetModifier=[cmd1],196,
* Setting modifier 'Angle'
%SetModifier=[cmd1],24,90
* Setting modifier 'Length'
%SetModifier=[cmd1],136,0.5
* Setting modifier 'Lead Out'
%SetModifier=[cmd1],198,
* Setting modifier 'Links'
%SetModifier=[cmd1],162,
* Setting modifier 'Short Link Distance'
%SetModifier=[cmd1],128,10
* Setting modifier 'Short Links'
%SetModifier=[cmd1],203,
* Setting modifier 'Type'
%SetModifier=[cmd1],102,Step|1
* Setting modifier 'Percentage Feed'
%SetModifier=[cmd1],129,100
* Setting modifier 'Long Links'
%SetModifier=[cmd1],204,
* Setting modifier 'Type'
%SetModifier=[cmd1],103,Optimised|0
* Setting modifier 'Safe Distance'
%SetModifier=[cmd1],220,1
* Setting modifier 'Rest Profiling'
%SetModifier=[cmd1],170,
* Setting modifier 'Previous Tool Diameter'
%SetModifier=[cmd1],230,0.0

%ExecCommand=cmdret=[cmd1],[gdh1]

%FreeDigInfo=[gdh1]
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
Sketch Block Patterns - Break References? jgore Solidworks 4 12-26-2007 06:44 AM




All times are GMT -5. The time now is 07:35 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 354 355 356 357 358 359 360 361