Maximum strain at section analysis

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

Moderators: silvia, selimgunay, Moderators

Post Reply
nibas
Posts: 24
Joined: Thu Jun 09, 2005 12:25 am
Location: NTUA

Maximum strain at section analysis

Post by nibas » Thu Jun 09, 2005 2:31 am

I try to perform a section analysis, of reinforced concrete.
I would like to ask how may I set a criterion,
in order to stop the strains of concrete at 0.0035
and the steel's strains at 0.01

Thank you
Nibas
Civil Engineer
Ph.D. Candidate

silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia » Thu Jun 09, 2005 8:42 am

i am curious as to whether you can do it in the analysis, too!
i just have been doing it in the post-processing!
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104

fmk
Site Admin
Posts: 5883
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk » Thu Jun 09, 2005 10:20 am

you could use a a MinMax material .. after min or max reached it returns 0 for stress and tangent; otherwise it returns the stress and tangent of the other material.

uniaxialMaterial MinMax matTag? otherMatTag? -min minStrain? -max maxStrain?

otherwise you could go into the source code & modify to suit your needs!

nibas
Posts: 24
Joined: Thu Jun 09, 2005 12:25 am
Location: NTUA

Post by nibas » Fri Jun 10, 2005 1:44 am

Thank you silvia and fmk for your replies

I 'd like to ask fmk what is the "otherMatTag?",

and where may I get information about this material,

because the 1.6 edition of the manual does not write anything bout

Best Regards,
Nibas
Civil Engineer
Ph.D. Candidate

fmk
Site Admin
Posts: 5883
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk » Fri Jun 10, 2005 7:19 am

the otherMatTag? is the material whose strain you are imposing the limits on .. you pass the MinMax to the section or element and your steel or concrete is passed to the MinMax.

nibas
Posts: 24
Joined: Thu Jun 09, 2005 12:25 am
Location: NTUA

Post by nibas » Fri Jun 10, 2005 8:03 am

fmk,

thanks a lot!!!

i carried out the analysis,

with the uniaxialMaterial MinMax 4 1 -min -0.0035 -max 10

and it works.

it was very usefull to me!!!
Nibas
Civil Engineer
Ph.D. Candidate

silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia » Fri Jun 10, 2005 9:26 am

congratulations!!!
don't forget to attach one to the steel!
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104

nibas
Posts: 24
Joined: Thu Jun 09, 2005 12:25 am
Location: NTUA

Post by nibas » Sat Jun 11, 2005 6:53 am

:lol:
Nibas
Civil Engineer
Ph.D. Candidate

silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia » Mon Jun 20, 2005 12:16 pm

Nibas,
can I ask you to please post the part of your script where you do this? I'll add it to some examples.
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104

nibas
Posts: 24
Joined: Thu Jun 09, 2005 12:25 am
Location: NTUA

Post by nibas » Wed Jun 22, 2005 2:11 am

Ok Silvia,

just give me a couple of days
Nibas
Civil Engineer
Ph.D. Candidate

nibas
Posts: 24
Joined: Thu Jun 09, 2005 12:25 am
Location: NTUA

Post by nibas » Thu Jun 23, 2005 1:02 am

# Define model builder
# --------------------
model basic -ndm 2 -ndf 3

# Define materials for nonlinear columns
# Units: kN-m
# ------------------------------------------
# CONCRETE tag f'c ec0 f'cu ecu
# Core concrete (confined)
uniaxialMaterial Concrete01 1 -16000 -0.0035 -12000 -0.014

# Cover concrete (unconfined)
uniaxialMaterial Concrete01 2 -16000 -0.0020 0 -0.006

# STEEL
# Reinforcing steel
set fy 500000; # Yield stress
set E 200000000.0; # Young's modulus
# tag fy E0 b
uniaxialMaterial Steel01 3 $fy $E 0.01

# Define cross-section for nonlinear columns
# ------------------------------------------



uniaxialMaterial MinMax 4 1 -min -0.0035 -max 10
uniaxialMaterial MinMax 5 2 -min -0.0035 -max 10
uniaxialMaterial MinMax 6 3 -min -10 -max 0.01



# set some paramaters
set colWidth 0.4
set colDepth 0.4

set cover 0.04
set As 0.000314; # Φ20

# some variables derived from the parameters
set y1 [expr $colDepth/2.0]
set z1 [expr $colWidth/2.0]

section Fiber 1 {


# Create the concrete core fibers
patch rect 4 10 1 [expr $cover-$y1] [expr $cover-$z1] [expr $y1-$cover] [expr $z1-$cover]

# Create the concrete cover fibers (top, bottom, left, right)
patch rect 5 10 1 [expr -$y1] [expr $z1-$cover] $y1 $z1
patch rect 5 10 1 [expr -$y1] [expr -$z1] $y1 [expr $cover-$z1]
patch rect 5 2 1 [expr -$y1] [expr $cover-$z1] [expr $cover-$y1] [expr $z1-$cover]
patch rect 5 2 1 [expr $y1-$cover] [expr $cover-$z1] $y1 [expr $z1-$cover]

# Create the reinforcing fibers (left, middle, right)
layer straight 6 3 $As [expr $y1-$cover] [expr $z1-$cover] [expr $y1-$cover] [expr $cover-$z1]
layer straight 6 2 $As 0.0 [expr $z1-$cover] 0.0 [expr $cover-$z1]
layer straight 6 3 $As [expr $cover-$y1] [expr $z1-$cover] [expr $cover-$y1] [expr $cover-$z1]

}



# Estimate yield curvature
# (Assuming no axial load and only top and bottom steel)
set d [expr $colDepth-$cover] ;# d -- from cover to rebar
set epsy [expr $fy/$E] ;# steel yield strain
set Ky [expr $epsy/(0.7*$d)]

# Print estimate to standard output
puts "Estimated yield curvature: $Ky"

# Set axial load
set P 0

set mu 15; # Target ductility for analysis
set numIncr 100; # Number of analysis increments

# Call the section analysis procedure
source MomentCurvature.tcl
MomentCurvature 1 $P [expr $Ky*$mu] $numIncr $y1 $z1
Nibas
Civil Engineer
Ph.D. Candidate

silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia » Mon Jul 18, 2005 11:29 am

okey,
i did pretty much what you have. however, my analysis of a circular section keeps going, as only one fiber has reached such strain. i get a little kink in the mom-curv, but nothing more.
how can I improve my analysis?
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104

motalaat
Posts: 17
Joined: Wed Jul 21, 2004 11:10 am
Location: UC Berkeley
Contact:

Post by motalaat » Mon Jul 18, 2005 7:26 pm

I have to say first that I am thankful for this discussion. It has been very useful to learn about the MinMax material. I will need to use is shortly and I had been resorting to an ungraceful manipulation of hysteretic-trilinear instead.

As for the section analysis continuing after the farthermost fiber reaching the maximum strain spaecified, I am afraid the only way about that - besides post-processing, will be to create a MinMax section :) However, why the need to do? A section where fibers are elimintaed as individul fibers reach their maximum strains will display a more realistic gradual softening behavior as damage progresses inwards. This unless you are modeling brittle failure - such as sections confined by rupture-prone FRP wraps, and then you will have to wait for a month or so for me to provide you with a cross section that is sensitive to lateral confinement. Hopefully by the OS workshop :)

Again, thanks for that MinMax material. It will be great in modeling multi-linear behavior of brittle wrapping material. One question to Frank, though. If a MinMax material exceeds the maximum positive strain once and then goes back to a lower strain, does he MinMax material (a) still return zero stress and strain still, or (b) does it return that of the "other material"? What happens in the other "negative" direction, are they completely uncoupled?

M.Talaat
PhD. Candidate, UCB

Zephyre
Posts: 10
Joined: Tue Sep 22, 2009 10:26 am
Location: UMD

Post by Zephyre » Fri Nov 20, 2009 1:54 pm

Hi Mohamed,

I have read your paper "A computational model for RC members confined with fiber reinforced polymer lamina" published on 2006 and as it says you have succeed to introduce a fiber-section model for nonlinear analysis confined RC members into OpenSees. Are those sections and materials available to use with OpenSees? That would be very useful for researchers working of this.
Thank you in advance :)
Thanks!

Post Reply