×
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

how to design a model with multiple properties and user subroutine

how to design a model with multiple properties and user subroutine

how to design a model with multiple properties and user subroutine

(OP)
hey all,
I guess it's a small question for most of them.I actually wanted to know how could i design a 2d shell with inner part as viscoplastic and outer part as elastoplastic,a user subroutine UMAT is applied on this model.
I am actually trying to apply a user subroutine on a cell structure of a material in which matrix and unit cell are in elastoplatic region and the particle in the center is a viscoplastic.
Should i have to mention while giving the properties that these are viscoplastic and elastoplastic separately and should i have to just specify the USER DEFINED MATERIAL AND CAN I SPECIFY THE PROPERTIES IN THE SUBROUTINE....
PLZ LET ME KNOW..
VINNU ARIGE

RE: how to design a model with multiple properties and user subroutine

You need to define two user materials and assign them to different element sets (or different parts, depending on your modeling approach).

In UMAT you will have to identify to which material (model area) the integration point belongs to, by cheking the CMNAME parameter vs. the assigned material name (put in *USER MATERIAL definitions).

Depending on this check one of the coded constitutive responses (viscoplastic or elastoplastic) will be used.

The material proporties are typically specified on the definition
*USER MATERIAL, NAME=viscopl, CONSTANTS=no_of_constants1
c1,c2,c3....etc

*USER MATERIAL, NAME=elplast, CONSTANTS=no_of_constants2
k1,k2,k3....etc

when UMAT is called, the constants you put in the *USER MATERIAL definition will be found in the PROPS vector which will have the length NPROPS= CONSTANTS.

Generally the first thing in UMAT to be done, after identifying the material is to recover the constants,say:
E=PROPS(1)
NU=PROPS(2)
S_YIELD=PROPS(3) and so on

Alternatively ....of course if you identify the material you could specify the material properties within the UMAT , but then you'll have to update the subroutine each time you want change material properties.

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