converting element type to SOLID45 by tcl macro

User: "Mirhan Ozdemir_21843"
Altair Community Member
Updated by Mirhan Ozdemir_21843

Hi to all,

I am trying to convert the solid elements to solid45 types so that I can import my model to ansys. I would like to automize this process since I have lats of model. I have to write some tcl macros but all of them are failed. It gives the error in the picture. However, when I check the files, they are in the workinh directory. How can I solve this issue.

 

Thank u.

 

image

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "Adriano Koga_20259"
    New Altair Community Member
    Updated by Adriano Koga_20259

    this looks to be a issue when you're passing the working directory as a variable, because of the 'space' character.

     

    Try using something like this:

    set working_dir {c:/program files/....../your_folder}

     

    or depending on the command that you're using use quotes:

    some_command "c:/program files/....."

    some_command {c:/program files/....}

     

    If this does not work, give more details on your code.