I am trying to create multiple fields based on load case count using PCL. My requirement is every time the field name should be changed. I used concatenate option. But it doesn't work. Any other way it can be done ?
When naming your PCL functions you need to make sure that the name e.g."field_create" is unique. As Patran is written in PCL there are an enormous number of functions and you must keep yours different or they will be used instead of the standard version.
Initially I thought your name was a duplicate of "fields_create" then realised it was singular.
As a general guideline users typically take their initials or company abbreviation as a prefix to all the functions they write. Patran itself uses application names like fem_, flds_, asm_, sgm_, db_ etc to group functions, remember also that a number of the math functions mth_ also can be called without the mth_ e.g. mth_cosd or cosd.
When naming your PCL functions you need to make sure that the name e.g."field_create" is unique. As Patran is written in PCL there are an enormous number of functions and you must keep yours different or they will be used instead of the standard version.
Initially I thought your name was a duplicate of "fields_create" then realised it was singular.
As a general guideline users typically take their initials or company abbreviation as a prefix to all the functions they write. Patran itself uses application names like fem_, flds_, asm_, sgm_, db_ etc to group functions, remember also that a number of the math functions mth_ also can be called without the mth_ e.g. mth_cosd or cosd.