Hi everyone,
I'm having issue defining MinMax material with the following code
------------------------------------------------------------
import openseespy.opensees as op
import os
from math import sqrt, pi
op.wipe()
op.model('basic','-ndm',2)
matTag=1
otherTag=2
Fy=3.780 #[T/cm2]
E0=2100.
b=0.00577
op.uniaxialMaterial('Steel01',otherTag,Fy,E0,b)
op.uniaxialMaterial('MinMax', matTag, otherTag, '-min', -0.1, 'max', 0.1)
It returns this error
WARNING invalid option:max uniaxialMaterial MinMax tag: 1
-----------------------------------------------------------
Thank you.
Defining MinMax material
Moderators: silvia, selimgunay, Moderators
Re: Defining MinMax material
Use '-max' instead of 'max'
Re: Defining MinMax material
Thank you! I didnt see it at all