How to reflect the model with area connectors properly?

mansin
mansin Altair Community Member
edited November 2020 in Community Q&A

Hi, everyone.

    I encountered a problem when I reflected a model with area connectors. The model is symmetric, but the whole model must be analyzed in some cases.  I reflected the original half model (half model.hm) about xz plane of AxisSystem1 (ID=1) by using *duplicateentities and *reflectmarkwithoption and *equivalence commands, then merged the same components and load collectors. However, the analysis of the symmetry model (symmetry.hm ) cannot be executed properly and gives too much errors such as, 

 

 *** See next message about line 47237 from file:
     E:/HyperWorks_Work/Symmetry/Symmetry.fem
  'RBE3       26648           23617       0   22003   23619   23620   23621'
  
 This line was interpreted as:
 47237:RBE3, 26648, , 23617, 0, 22003, 23619, 23620, 23621
  
 *** ERROR # 1000 *** in the input data:
 Incorrect data in field # 5.
  Expected COMPONENT numbers, found  INTEGER (0).
  
 *** ERROR # 1000 *** in the input data:
 Incorrect data in field # 7.
  Expected COMPONENT numbers, found  INTEGER (23619).
  
 
 *** See next message about line 47238 from file:
     E:/HyperWorks_Work/Symmetry/Symmetry.fem
  'RBE3       26649           16110       0   23623   16111   16112   16113'
  
 This line was interpreted as:
 47238:RBE3, 26649, , 16110, 0, 23623, 16111, 16112, 16113
  
 *** ERROR # 1000 *** in the input data:
 Incorrect data in field # 5.
  Expected COMPONENT numbers, found  INTEGER (0).

.

.

.

 

The errors in .out file reflect that the RBE3 elements in the reflected Glue component have wrong information. The RBE3 elements seem not to be reflected properly.

BTW, the half model can be analyzed normally.

I don't know where the problem is. Can anybody gives me some advices?

Thanks.

Unable to find an attachment - read this blog

Answers

  • Q.Nguyen-Dai
    Q.Nguyen-Dai Altair Community Member
    edited July 2018

    Before doing with TCL, try do all within HM session and check if you have these errors?

  • mansin
    mansin Altair Community Member
    edited July 2018

    Q.Nguyen-Dai

        The half model (without reflection) works fine.

        The error state arises after reflection. 

         The original model without reflection and the reflected model are attached as 'half model.hm' and 'Symmetry.hm', respectively.

    Thanks.

  • tinh
    tinh Altair Community Member
    edited July 2018

    I guess you used *duplicatemark elems 1 1

    Please try again with

    *duplicatemark elems 1 0

    You don't have to reorganize elems

  • mansin
    mansin Altair Community Member
    edited July 2018

    tinh

    Thank you very much for reply.

    I used *duplicateentities command to duplicate elems, nodes and comps along with any attached loads, while the command *duplicatemark only duplicates the elems and nodes. Even so, I tried the '*duplicatemark elems 1 0' command to duplicate and reflect the elements, a lot of different errors about RBE3 data arises.

    For the convenience of testing, I attached the duplication and reflection tcl file (). The 'symmetry.hm' file can be obtained from 'half model.hm' by using this tcl file.

    Thanks.

    Unable to find an attachment - read this blog

  • tinh
    tinh Altair Community Member
    edited July 2018

    Hi

    Another way is to save half model as half.hm, reflect (not duplicate), and then import the file half.hm, and then equivalence

    You dont need to duplicate and organize

    Please try it

  • mansin
    mansin Altair Community Member
    edited August 2018

    tinh

        This method is a good idea. It can solve this problem well.

        Thank you very much.