×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Analytical rigid surface revolve feature failed in Abaqus Scripting

Analytical rigid surface revolve feature failed in Abaqus Scripting

Analytical rigid surface revolve feature failed in Abaqus Scripting

(OP)
Hi, I'm using Abaqus Scripting to make an impact model in my final degree proyect.

This is the first time working with Python and I'm having some problems.

I have to design a cylinder with the next features (3D and analytical rigid surface)and when I run the script in Abaqus I always receive this message "Analytical rigid surface revolve feature failed"

This is my code, and any help will well appreciated. Thank you.


from abaqus import *
from abaqusConstants import *
import regionToolset

session.viewports['Viewport: 1'].setValues(displayedObject=None)

#----------------------------------------------------------------------

#Create model

mdb.models.changeKey(fromName='Impact', toName='Impact')
shellModel = mdb.models['Impact']

#-----------------------------------------------------------------------

#Create the shell

import sketch
import part

shellProfileSketch = shellModel.ConstrainedSketch(name='Shell CS Profile',sheetSize=5)
shellProfileSketch.rectangle(point1=(0,0), point2=(0.1,0.1))
shellPart=shellModel.Part(name='Placa',dimensionality=THREE_D, type=DEFORMABLE_BODY)
shellPart.BaseSolidExtrude(sketch=shellProfileSketch, depth=0.004)

#Create proyectil

import sketch
import part

proyectilProfileSketch = shellModel.ConstrainedSketch(name='Proyectil CS Profile',sheetSize=5)
proyectilProfileSketch.Line(point1=(0,0), point2=(0.0065,0))
proyectilProfileSketch.Line(point1=(0.0065,0), point2=(0.0065,0.025))
proyectilProfileSketch.Line(point1=(0.0065,0.025), point2=(0,0.025))
proyectilProfileSketch.Line(point1=(0,0.025), point2=(0,0))

proyectilPart=shellModel.Part(name='Proyectil', dimensionality=THREE_D, type=ANALYTIC_RIGID_SURFACE)
proyectilPart.AnalyticRigidSurfRevolve(sketch=proyectilProfileSketch)

#-----------------------------------------------------------------------

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources