Presentation is loading. Please wait.

Presentation is loading. Please wait.

Automating Pro/ENGINEER No programming skills nor money required Olaf Corten Fico BV Olaf Corten Fico BV.

Similar presentations


Presentation on theme: "Automating Pro/ENGINEER No programming skills nor money required Olaf Corten Fico BV Olaf Corten Fico BV."— Presentation transcript:

1 Automating Pro/ENGINEER No programming skills nor money required Olaf Corten Fico BV Olaf Corten Fico BV

2 This presentation u Why Automate? u Which solutions are available? u Focus on free solutions with no programming knowledge needed –Mapkeys, trailfiles, Pro/BATCH –3 rd party tools: ProTrail and sBatch Installation Usage Examples u Why Automate? u Which solutions are available? u Focus on free solutions with no programming knowledge needed –Mapkeys, trailfiles, Pro/BATCH –3 rd party tools: ProTrail and sBatch Installation Usage Examples

3 Why Automate? u Customize and extend the Pro/ENGINEER user interface with seamlessly embedded custom processes u Integrate expert systems and knowledge-based applications into the Pro/ENGINEER environment u Create automated, single-use, or derived designs by external manipulation of geometric and parametric constraints u Improve product quality with design rule verification based on inputs from external solutions u Perform tedious, routine, time-consuming and compute- intensive tasks –Creating deliverables (plotfiles, cadfiles, BOM’s, mass- properties, images, renderings) u Customize and extend the Pro/ENGINEER user interface with seamlessly embedded custom processes u Integrate expert systems and knowledge-based applications into the Pro/ENGINEER environment u Create automated, single-use, or derived designs by external manipulation of geometric and parametric constraints u Improve product quality with design rule verification based on inputs from external solutions u Perform tedious, routine, time-consuming and compute- intensive tasks –Creating deliverables (plotfiles, cadfiles, BOM’s, mass- properties, images, renderings)

4 How can we automate? u The sky is the limit. It all depends on the tools you use –Pro/Toolkit (C/C++ library) –J-Link (Java) - Free –Automation Gateway (Visual Basic, VBA, C, etc) –Pro/Web.Link (HTML and Javascript) - Free –Pro/BATCH - Free –Built in tools like: Trailfiles & Mapkeys –3 rd party tools like: sBatch ProTrail u The sky is the limit. It all depends on the tools you use –Pro/Toolkit (C/C++ library) –J-Link (Java) - Free –Automation Gateway (Visual Basic, VBA, C, etc) –Pro/Web.Link (HTML and Javascript) - Free –Pro/BATCH - Free –Built in tools like: Trailfiles & Mapkeys –3 rd party tools like: sBatch ProTrail

5 Pro/BATCH u Tool with graphical UI to Export 2D & 3D formats u Free u Scheduler u No PDM Integration u Tool with graphical UI to Export 2D & 3D formats u Free u Scheduler u No PDM Integration

6 Pro/BATCH - Usage u Make shortcut to [proloadpoint]\bin\pro_batch.bat and set startup folder to where you want to run it. u Select the files you want to process u Select the action you want to do u Name your batchfile and enter which ProE startup command to use (normally proe1.bat) u Save the batchfile u Now run it (or schedule it) u Starts ProE with cmdline options: 0 0 3 pro_wait -batchfile [path]\[batchfile] u Make shortcut to [proloadpoint]\bin\pro_batch.bat and set startup folder to where you want to run it. u Select the files you want to process u Select the action you want to do u Name your batchfile and enter which ProE startup command to use (normally proe1.bat) u Save the batchfile u Now run it (or schedule it) u Starts ProE with cmdline options: 0 0 3 pro_wait -batchfile [path]\[batchfile]

7 Pro/BATCH - Demo u Create DXF’s from a few drawings

8 Built in functions of ProE u Mapkeys u Running trailfiles u Free u Mapkeys u Running trailfiles u Free

9 Building your mapkeys u Set following config.pro options: –CMDMGR_TRAIL_OUTPUT YES puts internal ProE commands in trailfile instead of menu dependant commands ~ Command `ProCmdModelSaveAs` vs. ~ Activate `main_dlg_cur` `File.psh_save_as` –TRAIL_DIR C:\TEMP make sure your trailfiles are always on a local drive u Set following config.pro options: –CMDMGR_TRAIL_OUTPUT YES puts internal ProE commands in trailfile instead of menu dependant commands ~ Command `ProCmdModelSaveAs` vs. ~ Activate `main_dlg_cur` `File.psh_save_as` –TRAIL_DIR C:\TEMP make sure your trailfiles are always on a local drive

10 Building your mapkeys u Use built in mapkey recorder Tools -> Mapkeys -> New or u Get the commands from session trailfile Copy them to config.pro mapkey xxx [commands] u Pick carefully u Don’t make screen selections (unless you want to create a trailfile) If you need to select something Use the Find Tool u Use built in mapkey recorder Tools -> Mapkeys -> New or u Get the commands from session trailfile Copy them to config.pro mapkey xxx [commands] u Pick carefully u Don’t make screen selections (unless you want to create a trailfile) If you need to select something Use the Find Tool

11 Building your mapkeys u Continuation: –Continue mapkeys on a new line by ending previous line with ;\ –Start new line with mapkey(continued). (not really necessary) –E.G. mapkey fsdxf ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs `;\ mapkey(continued) ~ Select `file_saveas` `type_option` \ mapkey(continued) 1 `db_137`;\ mapkey(continued) ~ Activate `file_saveas` `OK`;\ mapkey(continued) ~ Activate `export_2d_dlg` `OK_Button` u Continuation: –Continue mapkeys on a new line by ending previous line with ;\ –Start new line with mapkey(continued). (not really necessary) –E.G. mapkey fsdxf ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs `;\ mapkey(continued) ~ Select `file_saveas` `type_option` \ mapkey(continued) 1 `db_137`;\ mapkey(continued) ~ Activate `file_saveas` `OK`;\ mapkey(continued) ~ Activate `export_2d_dlg` `OK_Button`

12 Building your mapkeys u Continuation: –You can put ProE continuation lines on one line as long as they don’t exceed the line length. Maximum line length = 98 characters (incl. backslash) –E.G. ~ Select `file_saveas` `type_option` \ 1 `db_137` Change into: ~ Select `file_saveas` `type_option` 1 `db_137` u Continuation: –You can put ProE continuation lines on one line as long as they don’t exceed the line length. Maximum line length = 98 characters (incl. backslash) –E.G. ~ Select `file_saveas` `type_option` \ 1 `db_137` Change into: ~ Select `file_saveas` `type_option` 1 `db_137`

13 Building your mapkeys u Add description to your mapkey: –@MAPKEY_LABEL to give your mapkey a name –@MAPKEY_NAME to give your mapkey additional info TIP: Always end this with the mapkey in brackets e.g. (mapkey fadxf) u E.G. mapkey xxx @MAPKEY_LABELName of the mapkey;\ mapkey(continued) @MAPKEY_NAMEName and action (mapkey xxx) u Add description to your mapkey: –@MAPKEY_LABEL to give your mapkey a name –@MAPKEY_NAME to give your mapkey additional info TIP: Always end this with the mapkey in brackets e.g. (mapkey fadxf) u E.G. mapkey xxx @MAPKEY_LABELName of the mapkey;\ mapkey(continued) @MAPKEY_NAMEName and action (mapkey xxx)

14 Building your mapkeys u Cleaning up the mapkey –Remove all lines starting with exclamation mark E.G. ~ Activate `export_2d_dlg` `OK_Button` ! Message Dialog: Warning ! : The file d:\36065.dxf already exists, continue anyway? ~ Activate `UI Message Dialog` `ok` u Cleaning up the mapkey –Remove all lines starting with exclamation mark E.G. ~ Activate `export_2d_dlg` `OK_Button` ! Message Dialog: Warning ! : The file d:\36065.dxf already exists, continue anyway? ~ Activate `UI Message Dialog` `ok`

15 Building your mapkeys u Cleaning up the mapkey –Remove unnecessary consecutive Open/ Select … and Close … lines: E.G. ~ Select `main_dlg_cur` `MenuBar1` \ 1 `File` ~ Close `main_dlg_cur` `MenuBar1` ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs ` and ~ Open `file_saveas` `type_option` ~ Close `file_saveas` `type_option` ~ Select `file_saveas` `type_option` \ 1 `db_137` u Cleaning up the mapkey –Remove unnecessary consecutive Open/ Select … and Close … lines: E.G. ~ Select `main_dlg_cur` `MenuBar1` \ 1 `File` ~ Close `main_dlg_cur` `MenuBar1` ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs ` and ~ Open `file_saveas` `type_option` ~ Close `file_saveas` `type_option` ~ Select `file_saveas` `type_option` \ 1 `db_137`

16 Building your mapkeys u Browsing: –Type in full path vs browsing ~ Select `file_saveas` `ph_list.Filelist` 1 `Data` ~ Activate `file_saveas` `ph_list.Filelist` 1 `Data` ~ Select `file_saveas` `ph_list.Filelist` 1 `PTC` ~ Activate `file_saveas` `ph_list.Filelist` 1 `PTC` ~ Select `file_saveas` `ph_list.Filelist` 1 `Work` ~ Activate `file_saveas` `ph_list.Filelist` 1 `Work` ~ Activate `file_saveas` `ok` vs ~ Update `file_saveas` `opt_EMBED_BROWSER_TB_SAB_LAYOUT` \ `d:\\data\\ptc\\work` ~ Activate `file_saveas` `opt_EMBED_BROWSER_TB_SAB_LAYOUT` ~ Activate `file_saveas` `ok` u Browsing: –Type in full path vs browsing ~ Select `file_saveas` `ph_list.Filelist` 1 `Data` ~ Activate `file_saveas` `ph_list.Filelist` 1 `Data` ~ Select `file_saveas` `ph_list.Filelist` 1 `PTC` ~ Activate `file_saveas` `ph_list.Filelist` 1 `PTC` ~ Select `file_saveas` `ph_list.Filelist` 1 `Work` ~ Activate `file_saveas` `ph_list.Filelist` 1 `Work` ~ Activate `file_saveas` `ok` vs ~ Update `file_saveas` `opt_EMBED_BROWSER_TB_SAB_LAYOUT` \ `d:\\data\\ptc\\work` ~ Activate `file_saveas` `opt_EMBED_BROWSER_TB_SAB_LAYOUT` ~ Activate `file_saveas` `ok`

17 Building your mapkeys u Nesting mapkeys: –Create nested mapkeys by calling other mapkeys with the percent sign. –E.G. mapkey fsa @MAPKEY_LABELSave As;\ mapkey(continued) @MAPKEY_NAMESave As (mapkey fsa);\ mapkey(continued) ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs ` mapkey fsdxf @MAPKEY_LABELSave As DXF;\ mapkey(continued) @MAPKEY_NAMESave As DXF (mapkey fsdxf);\ mapkey(continued) %fsa;\ mapkey(continued) ~ Select `file_saveas` `type_option` 1 `db_137`;\ mapkey(continued) ~ Activate `file_saveas` `OK` u Nesting mapkeys: –Create nested mapkeys by calling other mapkeys with the percent sign. –E.G. mapkey fsa @MAPKEY_LABELSave As;\ mapkey(continued) @MAPKEY_NAMESave As (mapkey fsa);\ mapkey(continued) ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs ` mapkey fsdxf @MAPKEY_LABELSave As DXF;\ mapkey(continued) @MAPKEY_NAMESave As DXF (mapkey fsdxf);\ mapkey(continued) %fsa;\ mapkey(continued) ~ Select `file_saveas` `type_option` 1 `db_137`;\ mapkey(continued) ~ Activate `file_saveas` `OK`

18 Building your mapkeys u Parameters: –Use old Parameter UI With the config.pro option NEW_PARAMETER_UI NO. – vs u Parameters: –Use old Parameter UI With the config.pro option NEW_PARAMETER_UI NO. – vs

19 Building your mapkeys - Demo u Create mapkey to export dxf to folder on disk

20 Building your trailfiles u Use same approach as creating mapkeys u Start trail file with 2 line header !trail file version No. 1400 !Pro/ENGINEER TM Wildfire 4.0 (c) 2009 by Parametric Technology Corporation All Rights Reserved. u Put every command on one line u Create environment variable CONTINUE_FROM_OOS = 1 to prevent ProE from crashing when running a trailfile u EG: !trail file version No. 1400 !Pro/ENGINEER TM Wildfire 4.0 (c) 2009 by Parametric Technology Corporation All Rights Reserved. ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs ` ~ Update `file_saveas` `opt_EMBED_BROWSER_TB_SAB_LAYOUT` `d:\\data\\ptc` ~ Select `file_saveas` `type_option` 1 `db_137` ~ Activate `file_saveas` `OK` ~ Activate `export_2d_dlg` `OK_Button` ~ Activate `UI Message Dialog` `ok` u Use same approach as creating mapkeys u Start trail file with 2 line header !trail file version No. 1400 !Pro/ENGINEER TM Wildfire 4.0 (c) 2009 by Parametric Technology Corporation All Rights Reserved. u Put every command on one line u Create environment variable CONTINUE_FROM_OOS = 1 to prevent ProE from crashing when running a trailfile u EG: !trail file version No. 1400 !Pro/ENGINEER TM Wildfire 4.0 (c) 2009 by Parametric Technology Corporation All Rights Reserved. ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs ` ~ Update `file_saveas` `opt_EMBED_BROWSER_TB_SAB_LAYOUT` `d:\\data\\ptc` ~ Select `file_saveas` `type_option` 1 `db_137` ~ Activate `file_saveas` `OK` ~ Activate `export_2d_dlg` `OK_Button` ~ Activate `UI Message Dialog` `ok`

21 sBatch u Graphical utility to run your own mapkeys u Free u Uses J-Link u By USG Innotiv (Martein Schuttert) u Builds one large mapkey from selected mapkeys and runs it on your files u Graphical utility to run your own mapkeys u Free u Uses J-Link u By USG Innotiv (Martein Schuttert) u Builds one large mapkey from selected mapkeys and runs it on your files

22 u Download from: http://www.usginnotiv.nl/13855/default.aspx www.USGInnotiv.nl > 1 st Tab > Divisies > Product Development > sTools http://www.usginnotiv.nl/13855/default.aspx www.USGInnotiv.nl u Link to download page with password will be mailed u Also other tools: –sPurge –Plotdate u Download from: http://www.usginnotiv.nl/13855/default.aspx www.USGInnotiv.nl > 1 st Tab > Divisies > Product Development > sTools http://www.usginnotiv.nl/13855/default.aspx www.USGInnotiv.nl u Link to download page with password will be mailed u Also other tools: –sPurge –Plotdate sBatch

23 Probably need to add the.zip extension to downloaded files

24 sBatch v3.2 u Creates one large mapkey and adds a button configured to run this mapkey to your config.win u Then runs a trailfile which presses this button u Can connect to Intralink 3.x Workspace u Supports R2001, Wildfire & Wildfire 2.0 u Creates one large mapkey and adds a button configured to run this mapkey to your config.win u Then runs a trailfile which presses this button u Can connect to Intralink 3.x Workspace u Supports R2001, Wildfire & Wildfire 2.0

25 sBatch v4.0 (beta) u Uses asynchronous J-Link connection u Supports 64-bit u Supports Pro/ENGINEER Wildfire 4 u Supports Windchill Workspace –Intralink 3.x –Windchill PDMLink/ProjectLink 8.0 –Windchill PDMLink/ProjectLink 9.x u Supports non-graphics mode u Improved installlation (detects Pro/E and OS version) u Uses asynchronous J-Link connection u Supports 64-bit u Supports Pro/ENGINEER Wildfire 4 u Supports Windchill Workspace –Intralink 3.x –Windchill PDMLink/ProjectLink 8.0 –Windchill PDMLink/ProjectLink 9.x u Supports non-graphics mode u Improved installlation (detects Pro/E and OS version)

26 sBatch v4.0 Installation u C:\Program Files\USG Innotiv sBatch u Finds your latest Wildfire version (up to v4.0) u Configure PDM integration –PDMLink 9,8 or 7 and/or –ProjectLink 9,8 or 7 –Intralink 3.x u Desktop icon u C:\Program Files\USG Innotiv sBatch u Finds your latest Wildfire version (up to v4.0) u Configure PDM integration –PDMLink 9,8 or 7 and/or –ProjectLink 9,8 or 7 –Intralink 3.x u Desktop icon

27 sBatch Installation u Creates c:\windows\sbatch.ini (to hold installation paths) u Creates \.usginnotiv\sbatch.conf in your %USERPROFILE% (holds sBatch config. Can be updated from sBatch) u sBatch looks for config.pro in [proeloadpoint]\text u Creates c:\windows\sbatch.ini (to hold installation paths) u Creates \.usginnotiv\sbatch.conf in your %USERPROFILE% (holds sBatch config. Can be updated from sBatch) u sBatch looks for config.pro in [proeloadpoint]\text

28 Running sBatch u Start sBatch u Add Files to process u Select mapkeys to run List is alphabetical u TIP: Create shortcuts to often used mapkeys at the top u Choose execution method and select run u Connects to current Pro/E session or starts a new one

29 sBatch Demo –Create 300dpi jpegs with a white background specified models shaded in the DEF_1 orientation. Use mapkeys –vv1 - Set View to DEF_1 –vs - Shade –faj3 - Create 300dpi jpg with white background

30 ProTrail u Runs predefined tasks on selected files u Creates a large trailfile and runs it with ProE u Runs in the background u Does error checking when the task is finished u Written by me in C++ u DOS Commandline utility u Runs predefined tasks on selected files u Creates a large trailfile and runs it with ProE u Runs in the background u Does error checking when the task is finished u Written by me in C++ u DOS Commandline utility

31 ProTrail u Download from: www.ProESite.com > Utilities > ProTrail http://www.proesite.com/UTIL/protrail.htm www.ProESite.com http://www.proesite.com/UTIL/protrail.htm u Can connect to Intralink 3.x workspace u In most cases upwards compatible because running trailfiles is often upwards compatible as well. u Download from: www.ProESite.com > Utilities > ProTrail http://www.proesite.com/UTIL/protrail.htm www.ProESite.com http://www.proesite.com/UTIL/protrail.htm u Can connect to Intralink 3.x workspace u In most cases upwards compatible because running trailfiles is often upwards compatible as well.

32 ProTrail u Predefined tasks –Export several 2D and 3D formats –Create images –Explode, unexplode –Run Global interference, Massprops –Set units, assign or unassign material –Import files –Regenerate, save, add timestamp –Check ProE version u Predefined tasks –Export several 2D and 3D formats –Create images –Explode, unexplode –Run Global interference, Massprops –Set units, assign or unassign material –Import files –Regenerate, save, add timestamp –Check ProE version

33 ProTrail Installation u One executable Just put it somewhere in your PATH. u Ideally: –Create folder c:\Utilities –Copy protrail.exe to this folder –Add folder c:\Utilities to your PATH u Synchronize TEMP variable with config TRAIL_DIR e.g. C:\TEMP u One executable Just put it somewhere in your PATH. u Ideally: –Create folder c:\Utilities –Copy protrail.exe to this folder –Add folder c:\Utilities to your PATH u Synchronize TEMP variable with config TRAIL_DIR e.g. C:\TEMP

34 Running ProTrail u You start ProTrail from a DOS prompt u Use commandline arguments to drive it Tip: Install DosHere (or Command Prompt Here) Shell extension. It enables you to quickly open a DOS prompt in a folder from Explorer.

35 Running ProTrail u Type protrail –h to get help u Use –dontrun option to test

36 Running ProTrail u Options –File Selection: Wildcards *.*, etc. -drw, -prt, -asm, -lay, -models -i inputfile -num (objects with numerical names: e.g. 12345.prt –Running: -foreground, -pause, -dontexit, -dontrun -cmd -v (version)

37 Running ProTrail u Options –export Jpg, tiff Dxf, dwg, pdf Iges, Step, set, stl, productview, shrinkwrap –print (to printername) several other plot related options –Intralink 3.x options -ws, -local, -ilink Needs PDM_LDB_PATH variable

38 Running ProTrail u Options –Specials: -save -view, -shade -regen -unit, -(un)assign -verify, -famtab, -instsave -(un)explode, -interference, -massprops -trail

39 Running ProTrail u Examples: –protrail –e dxf –e pdf –drw Create dxf and pdf files of all sheets on all drawings –protrail –bgw –e jpg –dpi 300 –view DEF_1 –shade –models 36* Set background to white and create 300dpi jpegs of the DEF_1 shaded view of all models starting with 36 in their name –protrail –ws WORK –unit mmNs –assign aisi_316.mat –regen –save –prt In Workspace WORK set all parts to mmNs units, assign material aisi_316, regenerate and save

40 Running ProTrail u Examples: –protrail –unexplode –interference –asm -e step Open all assemblies, unexplode them, do an Interference check and export to step –protrail –famtab –models Save FamilyTable file of all generic models. –protrail –import dxf -save Import all dxf’s and save as a ProE drw (also checks dxf format size)

41 Thanks for your attention


Download ppt "Automating Pro/ENGINEER No programming skills nor money required Olaf Corten Fico BV Olaf Corten Fico BV."

Similar presentations


Ads by Google