Gaetan82
Aerospace
- Nov 12, 2011
- 9
Hello
I'm trying to create a pcl to run the same commands in more groups using a for cycle.
I created:
Integer NumTotSection = 10
Integer SectionCounter
STRING Name_Group[512](10)
Name_Group(1)= "Alfa"
/* so on ...
Name_Group(10)= "Omega"
/* and the for command
FOR (SectionCounter = 1 TO NumTotSection)
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group(SectionCounter)] )
/* MY command group
END FOR
but the problem is in the command to show (" to load") a group as the presence of the [] in same way not allow patran to read the Name_Group (i).
Could please someone explane me my mistake. I have never problem with other command to use a String array but for this comand the [] in same way give me a mistake.
As example, in this case I receive the following message:
*------------------------------------------------------------------
Integer NumTotSection = 4
Integer SectionCounter
STRING Name_Group[512](4)
Name_Group(1)= "XF_COLD_Canopy_ARCH_CENTER"
Name_Group(2)= "XF_COLD_Canopy_ARCH_CENTER_RETAINER"
Name_Group(3)= "XF_COLD_Canopy_ARCH_FRONT"
Name_Group(4)= "XF_COLD_Canopy_ARCH_REAR"
/* and the for command
FOR (SectionCounter = 1 TO NumTotSection)
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group( @
SectionCounter)] )
$# (PCL) Improper syntax for array constant
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(sectioncounter)] )"
$# Character is "]"
$# (PCL) Missing right parenthesis
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(sectioncounter)] )"
$# Extra information: sectioncounter
/* MY command group
END FOR
$# Session file stopped playing (level 1)
$# Last command aborted
*------------------------------------------------------------------
I tried a lot of combination but without results.
As example, also if I use the command:
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group(1)] )
I receive the following message:
*------------------------------------------------------------------
FOR (SectionCounter = 1 TO NumTotSection)
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group(1)] )
$# (PCL) Improper syntax for array constant
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(1)] )"
$# Character is "]"
$# (PCL) Missing right parenthesis
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(1)] )"
$# Extra information: name_group
/* MY command group
END FOR
$# Session file stopped playing (level 1)
$# Last command aborted
*------------------------------------------------------------------
I thought that it depends by [] as I have not problem with other command inside a for cycle as for example:
res_display_report_write( "", 0, "Tensor", "Nodal", "Append", Nome_Report(Numeratore_Group) )
to write a report where there are not the [] .
Could someone help me, please ?
Thank you
I'm trying to create a pcl to run the same commands in more groups using a for cycle.
I created:
Integer NumTotSection = 10
Integer SectionCounter
STRING Name_Group[512](10)
Name_Group(1)= "Alfa"
/* so on ...
Name_Group(10)= "Omega"
/* and the for command
FOR (SectionCounter = 1 TO NumTotSection)
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group(SectionCounter)] )
/* MY command group
END FOR
but the problem is in the command to show (" to load") a group as the presence of the [] in same way not allow patran to read the Name_Group (i).
Could please someone explane me my mistake. I have never problem with other command to use a String array but for this comand the [] in same way give me a mistake.
As example, in this case I receive the following message:
*------------------------------------------------------------------
Integer NumTotSection = 4
Integer SectionCounter
STRING Name_Group[512](4)
Name_Group(1)= "XF_COLD_Canopy_ARCH_CENTER"
Name_Group(2)= "XF_COLD_Canopy_ARCH_CENTER_RETAINER"
Name_Group(3)= "XF_COLD_Canopy_ARCH_FRONT"
Name_Group(4)= "XF_COLD_Canopy_ARCH_REAR"
/* and the for command
FOR (SectionCounter = 1 TO NumTotSection)
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group( @
SectionCounter)] )
$# (PCL) Improper syntax for array constant
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(sectioncounter)] )"
$# Character is "]"
$# (PCL) Missing right parenthesis
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(sectioncounter)] )"
$# Extra information: sectioncounter
/* MY command group
END FOR
$# Session file stopped playing (level 1)
$# Last command aborted
*------------------------------------------------------------------
I tried a lot of combination but without results.
As example, also if I use the command:
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group(1)] )
I receive the following message:
*------------------------------------------------------------------
FOR (SectionCounter = 1 TO NumTotSection)
uil_viewport_post_groups.posted_groups( "default_viewport", 1, [Name_Group(1)] )
$# (PCL) Improper syntax for array constant
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(1)] )"
$# Character is "]"
$# (PCL) Missing right parenthesis
$# Line is "uil_viewport_post_groups.posted_groups( "default_viewport", 1, [
$# name_group(1)] )"
$# Extra information: name_group
/* MY command group
END FOR
$# Session file stopped playing (level 1)
$# Last command aborted
*------------------------------------------------------------------
I thought that it depends by [] as I have not problem with other command inside a for cycle as for example:
res_display_report_write( "", 0, "Tensor", "Nodal", "Append", Nome_Report(Numeratore_Group) )
to write a report where there are not the [] .
Could someone help me, please ?
Thank you