Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

GPOST-FIL Major words executing order

pro_javi

New member
I have been told major words cimfil sections are executed following an order. Does anybody know about this?

CIMFIL/ON,MACHIN
CIMFIL/ON,LOADTL
CIMGIL/ON,COOLNT
ETC...

I am working on the following code:

%
O0004
G53 X420 Z420
( / PART NAME : 229040AB_004)
( / DATE TIME : 21-MAR-06 16:19:28)
( / CUT FEEDRATE & UNITS : 0.200 MMPR)
( / TOOL NAME : T01)
( /&nbsp ; TOOL COMMENTS)
T0101
G54
G92 S3000
G96 S200 M4
G18 G40 M8
G1 X46.7 F.2
...

and i want the line G53 X420 Z420 appear after the tool load, but it appears before the PPRINT messages. This line does not come from the NCL file, it is a custom line written in FIL:

CIMFIL/ON,MACHIN
RSLT=POSTF(13)
INSERT/(TEXT/'G53 X420 Z420$')
CIMFIL/OFF

I am a beginner with GPOST, any help would be appreciated.
Thks.
 
The "MACHIN" command is one of the first commands exported by Proe. If you want to insert that line after the tool change, all you have to do is change your macro to "CIMFIL/ON,TURRET" instead of "CIMFIL/ON,MACHIN".
 

Sponsor

Articles From 3DCAD World

Back
Top