Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: i0wa
  • Order by date
  1. i0wa

    Adding custom stock to the mechanical routing

    I found only this info: 1. Create parameterized model (or sketch) 2. Edit all necessary data in Part Families (Tools -> Part Families) 3. Create part family and save Excel file as your_file_name.txt (MS-DOS) to your_NX_install_dir\ugroute_mech\utils4. Save your file to...
  2. i0wa

    Correct variable definition in PB

    joycejo, proc1 is activated with ude. mouldy1, proc1 and proc2 are in the start of the program. I think, if the process is initialized once, it will be also available during the whole post processing, isn't it?
  3. i0wa

    Correct variable definition in PB

    Sorry, my fault. myVar is simple PB variable. not UDE
  4. i0wa

    Correct variable definition in PB

    Hi everyone! MB it will be a silly question, but... I have 2 processes within which the one variable is used. proc MOM_myProc1 {} { global myVar set myVar 1 } proc MOM_myProc2 {} { global myVar MOM_abort "$myVar" } in the log it is writen than "no such variable 'myVar'" in process 2 what I've...
  5. i0wa

    UDE problem

    Thanks a lot. I found a lot of mistakes, corrected them and now it works well.
  6. i0wa

    UDE problem

    It doesn't seem to be an error in variable names, but thanks for spotting another bug ;)http://files.engineering.com/getfile.aspx?folder=12363aa1-e8d2-428f-950d-8a410e8933c4&file=my_log.txt
  7. i0wa

    UDE problem

    I've written my UDE but NX shows me an error. I've tried to put "MOM_abort" to a different places, but it was useless because of the one and only place when MOM_abort proc worked it was before the "proc MOM_my_proc {} { ..." I add 2 files with my UDE and proc (zipped archive). Thanks in...
  8. i0wa

    TCL string operations

    Sorry, it's impossible to get machine time as I suggested.. I read comments and.. temp file then re-posting again is the only possible way.
  9. i0wa

    TCL string operations

    To create temp file, then final is the common way. There is custom command like "initialize tool list" used for tool list generation in before than any tool is used - another words in the program start. what about this?
  10. i0wa

    TCL string operations

    MOM_first_tool is a process not a variable. Question to <b>shags72</b>: Your solution works perfect, thank You very much! But could You also say what code of symbol "-" (minus) because if I try to change underscore to minus then I get an error in regsub -all {_} $text_string " " text_string...
  11. i0wa

    PLUS sign force output

    Good evening. It seems to be a piece of cake to output the "+" in front of coordinate BUT when it is greater than 0. The question is how to make post processor to output "positive zero" (+0.0) ? Thanks in advance for any help.
  12. i0wa

    TCL string operations

    Thank You for Your posts!
  13. i0wa

    TCL string operations

    Sounds like a plan ;)
  14. i0wa

    TCL string operations

    Is it possible to make the postprocessor to analyze the symbols in string and change them if needed? For example: source string: "THIS_IS_AN_EXAMPLE" produced string: "THIS IS AN EXAMPLE" As you see, the underscore is changed to space. BTW. How to output in the end of the program the very...
  15. i0wa

    SIemens NX Post: WORKPIECE dimensions

    a bit tricky for me. mb there is a some kind of list of expressions?
  16. i0wa

    SIemens NX Post: WORKPIECE dimensions

    Thanks a lot! I think that's it! ;)
  17. i0wa

    SIemens NX Post: WORKPIECE dimensions

    Is it possible to get dimensions of the blank part with common MOM functions/vars?
  18. i0wa

    MOM variables

    Hello, Got some questions about variables in pb. Are there any variables in post builder with blank geometry size values. (look pic1.jpg) By the way, I do believe that there is any way to get variables with mcs and workpiece names in pb. Thanks.
  19. i0wa

    blank string

    MOM_output_literal "\r" #adds 1 empty line. line length is 0 MOM_output_literal "\n" #adds 2 empty lines \a Audible alert (bell) (0x7). \b Backspace (0x8). \f Form feed (0xc). \n Newline (0xa). \r Carriage-return (0xd). \t Tab (0x9). \v Vertical tab (0xb). \<newline>whiteSpace A single...
  20. i0wa

    blank string

    hmm. nice idea :D another way is to declare any empty variable: set $anyVar "" and try to make forced output of it.
Back
Top