1 / 41

Automating Pro/ENGINEER No programming skills nor money required

Automating Pro/ENGINEER No programming skills nor money required. Olaf Corten Fico BV. This presentation. Why Automate? Which solutions are available? Focus on free solutions with no programming knowledge needed Mapkeys , trailfiles , Pro/BATCH 3 rd party tools: ProTrail and sBatch

paul2
Download Presentation

Automating Pro/ENGINEER No programming skills nor money required

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Automating Pro/ENGINEERNo programming skills nor money required Olaf Corten Fico BV

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

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

  4. How can we automate? • 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 • 3rd party tools like: • sBatch • ProTrail

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

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

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

  8. Built in functions of ProE • Mapkeys • Running trailfiles • Free

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

  10. Building your mapkeys • Use built in mapkey recorderTools -> Mapkeys -> Newor • Get the commands from session trailfileCopy them to config.promapkey xxx [commands] • Pick carefully • Don’t make screen selections(unless you want to create a trailfile)If you need to select somethingUse the Find Tool

  11. Building your mapkeys • Continuation: • Continue mapkeys on a new line by ending previous line with ;\ • Start new line with mapkey(continued).(not really necessary) • E.G.mapkeyfsdxf ~ 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 • 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 • Add description to your mapkey: • @MAPKEY_LABEL to give your mapkey a name • @MAPKEY_NAME to give your mapkey additional infoTIP: Always end this with the mapkey in brackets e.g. (mapkeyfadxf) • E.G.mapkey xxx @MAPKEY_LABELName of the mapkey;\mapkey(continued) @MAPKEY_NAMEName and action (mapkey xxx)

  14. Building your mapkeys • Cleaning up the mapkey • Remove all lines starting with exclamation markE.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 • 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 • 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 • Nesting mapkeys: • Create nested mapkeys by calling other mapkeys with the percent sign. • E.G.mapkeyfsa @MAPKEY_LABELSave As;\mapkey(continued) @MAPKEY_NAMESave As (mapkeyfsa);\mapkey(continued) ~ Activate `main_dlg_cur` ` ProCmdModelSaveAs `mapkeyfsdxf @MAPKEY_LABELSave As DXF;\mapkey(continued) @MAPKEY_NAMESave As DXF (mapkeyfsdxf);\mapkey(continued) %fsa;\mapkey(continued) ~ Select `file_saveas` `type_option` 1 `db_137`;\mapkey(continued) ~ Activate `file_saveas` `OK`

  18. Building your mapkeys • Parameters: • Use old Parameter UIWith the config.pro option NEW_PARAMETER_UI NO. • vs

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

  20. Building your trailfiles • Use same approach as creating mapkeys • 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. • Put every command on one line • Create environment variable CONTINUE_FROM_OOS = 1to prevent ProE from crashing when running a trailfile • 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 • Graphical utility to run your own mapkeys • Free • Uses J-Link • By USG Innotiv (Martein Schuttert) • Builds one large mapkey from selected mapkeys and runs it on your files

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

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

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

  25. sBatch v4.0 (beta) • Uses asynchronous J-Link connection • Supports 64-bit • Supports Pro/ENGINEER Wildfire 4 • Supports WindchillWorkspace • Intralink 3.x • WindchillPDMLink/ProjectLink 8.0 • WindchillPDMLink/ProjectLink 9.x • Supports non-graphics mode • Improvedinstalllation (detects Pro/E and OS version)

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

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

  28. Running sBatch Start sBatch Add Files to process Select mapkeys to runList is alphabetical TIP: Create shortcutsto often used mapkeysat the top Choose execution method and select run 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 • Runs predefined tasks on selected files • Creates a large trailfile and runs it with ProE • Runs in the background • Does error checking when the task is finished • Written by me in C++ • DOS Commandline utility

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

  32. ProTrail • 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 • One executableJust put it somewhere in your PATH. • Ideally: • Create folder c:\Utilities • Copy protrail.exe to this folder • Add folder c:\Utilities to your PATH • Synchronize TEMP variable with config TRAIL_DIRe.g. C:\TEMP

  34. Running ProTrail You start ProTrail from a DOS prompt Use commandline arguments to drive itTip: 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 Type protrail –h to get help Use –dontrun option to test

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

  37. Running ProTrail 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, -ilinkNeeds PDM_LDB_PATH variable

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

  39. Running ProTrail Examples: protrail –e dxf –e pdf –drwCreate 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 –prtIn Workspace WORK set all parts to mmNs units, assign material aisi_316, regenerate and save

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

  41. Thanks for your attention

More Related