stress and strain input
stress and strain input
(OP)
If i have the value of the stress and strain of a material, how can i define a material with this characteristics in ANSYS?
Thanks
Thanks
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: stress and strain input
look for "tabular data", "material properties" ("TB" family of commands - 8.4 of Structural Guide)
Regards
RE: stress and strain input
and tb command just MKIN and BKIN Specifications seems to fit for me with their Stress-strain options.
What should be the Lab so i can make a stress-strain input?
RE: stress and strain input
1- *DIM-ension a TABLE (see help) to have 100 rows and 2 columns, format your data points file as needed by ANSYS (see help) and then read-in the data from file into the table. Let's say your table is named "DATA_PT", and that the first column contains the total strain whether the second column contains the stress.
2- Use non-linear kinematic hardening material model, as follows (indicatively):
TB,KINH
TBTEMP,...
*DO,i,1,100,1
TBPT,DEFI,DATA_PT(i,1),DATA_PT(i,2)
*ENDDO
You can write these commands in a text file and then "Read Input From..." this file. This APDL file may also include the table declaration (*DIM,...) and the data reading from file (*TREAD,...).
Regards
RE: stress and strain input
RE: stress and strain input
accepts 19 points or so. But realistically this should be more than enough...