hexagon logo

I recieve a PATRAN internal error (internal unknown opcode) while creating a point on an already existing point during my PCL run.

I use overridemessage to create a point on an already existing point like below:
 
ui_override_message(1000034, "YESTOALL")
 
I have this situation in my routine in several places and it Works well. The following is a part of the session file written by patran during my pcl runs:
 
$#    Point 67 already exists at the specified location to create the next
$# Point. Do you wish to create a duplicate Point?
$? YESTOALL 1000034
$# 1 Point created: Point 209
 
But at some point i recieve the following error:
 
$#    Point 71 already exists at the specified location to create the next
$# Point. Do you wish to create a duplicate Point?
$? YESTOALL 1000034
$# (PCL) Internal unknown opcode
$# Extra information: [ 201 ]
$# Call traceback...
$#  Function UIL_MESSAGE.GETRESPONSENUMBER, Line Number 2111
$#  Function UIL_MESSAGE.MANAGE, Line Number 1992
$#  Function ASM_CONST_GRID_XYZ
$#  Function BFF_CLS_FUN_050_MSH.BFF_MSH_CRT_TRA_MSH, Line Number 8288
$#  Function BFF_MEN_011_FRM_042.FUN_BUT_ACT_APP, Line Number 1035
$# Execution aborted
 
The code for what I receive the error is the 1st of the 3 lines below:
 
asm_const_grid_xyz(str_from_integer(f08_max_lbl_pn1), "Node " // str_from_integer(f08_int_elm_no1), "Coord 0", f08_lst_crt_pnt)
asm_const_grid_xyz(str_from_integer(f08_max_lbl_pn2), "Node " // str_from_integer(f08_int_elm_no2), "Coord 0", f08_lst_crt_pnt)
asm_const_line_2point(str_from_integer(f08_max_lbl_cr1), "Point " // str_from_integer(f08_max_lbl_pn1), "Point " // str_from_integer(f08_max_lbl_pn1), 0, "", 50., 1, f08_lst_crt_crv)
 
I obtain the point labels from:
 
db_get_max_point_label(f08_max_lbl_pnt)
f08_max_lbl_pn1 = f08_max_lbl_pnt + 1
f08_max_lbl_pn2 = f08_max_lbl_pnt + 2
Parents Reply Children
No Data