TensionOnlyMaterial

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

Post Reply
tonyqwert
Posts: 4
Joined: Sun Sep 06, 2020 12:32 am

TensionOnlyMaterial

Post by tonyqwert » Sun Sep 06, 2020 12:48 am

Hello all!

I am a new user of this software. There is a type of material named "TensionOnlyMaterial" that I don't know how to use.

My code is:
"wipe
puts "System"
model basic -ndm 2 -ndf 3
puts "node"
node 1 0.000E+000 0.000E+000;
node 2 0.000E+000 1.000E+000;
puts "rigidDiaphragm"
puts "mass"
puts "restraint"
fix 1 1 1 1;
puts "Equal DOF"
puts "material"
uniaxialMaterial Steel01 1 1 1 0;
uniaxialMaterial TensionOnlyMaterial 2 1;"

And, here is the error pops up:
"WARNING could not create uniaxialMaterial TensionOnlyMaterial"


Thanks!!

selimgunay
Posts: 913
Joined: Mon Sep 09, 2013 8:50 pm
Location: University of California, Berkeley

Re: TensionOnlyMaterial

Post by selimgunay » Sun Sep 06, 2020 8:23 am

You should use this syntax:

uniaxialMaterial ENT $matTag $E

https://opensees.berkeley.edu/wiki/inde ... n_Material

mhscott
Posts: 874
Joined: Tue Jul 06, 2004 3:38 pm
Location: Corvallis, Oregon USA
Contact:

Re: TensionOnlyMaterial

Post by mhscott » Sun Sep 06, 2020 9:09 am

It's undocumented, and different from ENT (Elastic-No-Tension) ...

uniaxialMaterial TensionOnly 2 1

tonyqwert
Posts: 4
Joined: Sun Sep 06, 2020 12:32 am

Re: TensionOnlyMaterial

Post by tonyqwert » Sun Sep 06, 2020 6:27 pm

selimgunay wrote:
Sun Sep 06, 2020 8:23 am
You should use this syntax:

uniaxialMaterial ENT $matTag $E

https://opensees.berkeley.edu/wiki/inde ... n_Material
The model you mentioned is elastic in compression direction. What I am trying to find is a elastic-plastic model in tension direction.

tonyqwert
Posts: 4
Joined: Sun Sep 06, 2020 12:32 am

Re: TensionOnlyMaterial

Post by tonyqwert » Sun Sep 06, 2020 6:51 pm

mhscott wrote:
Sun Sep 06, 2020 9:09 am
It's undocumented, and different from ENT (Elastic-No-Tension) ...

uniaxialMaterial TensionOnly 2 1
I've tried. It still doesn't work...

mhscott
Posts: 874
Joined: Tue Jul 06, 2004 3:38 pm
Location: Corvallis, Oregon USA
Contact:

Re: TensionOnlyMaterial

Post by mhscott » Sun Sep 06, 2020 8:46 pm

It may not be in the latest OpenSees.exe executable yet. I believe it's in the Python module though.

tonyqwert
Posts: 4
Joined: Sun Sep 06, 2020 12:32 am

Re: TensionOnlyMaterial

Post by tonyqwert » Mon Sep 07, 2020 3:20 am

mhscott wrote:
Sun Sep 06, 2020 8:46 pm
It may not be in the latest OpenSees.exe executable yet. I believe it's in the Python module though.
Thanks!!

Post Reply