how simulate a real bahaviour in pushover analysys
Moderators: silvia, selimgunay, Moderators
how simulate a real bahaviour in pushover analysys
i create a model of a pier following line by line the example
Ex3.Canti2D.build.InelasticFiberSection
but i don't obtain the real behaviour , infact if i Impose 10 m as displacement the pire doesn't collapse.
why?
how must i do?
Ex3.Canti2D.build.InelasticFiberSection
but i don't obtain the real behaviour , infact if i Impose 10 m as displacement the pire doesn't collapse.
why?
how must i do?
I try with hysteretic material
but the result is the same : the structure doesn't collapse.
Rbase never moves to zero.
Why?
I pray to you. help me!!!!!
set Fy [expr 450]; # STEEL yield stress
set Es [expr 206000*$MPa]; # modulus of steel
set epsY [expr $Fy/$Es];
set Fu [expr 494.5];
set epsU 1;
set pinchX 1;
set pinchY 1;
set damage1 0.0;
set damage2 0.0;
set beta 0.0;
uniaxialMaterial Concrete02 $IDconcCore $fc1C $eps1C $fc2C $eps2C $lambda $ftC $Ets; # build core concrete (confined)
uniaxialMaterial Concrete02 $IDconcCover $fc1U $eps1U $fc2U $eps2U $lambda $ftU $Ets; # build cover concrete (unconfined)
uniaxialMaterial Hysteretic $IDreinf $Fy $epsY $Fu $epsU -$Fy -$epsY -$Fu -$epsU $pinchX $pinchY $damage1 $damage2 $beta ; # hysteritic reinforcemnet model
but the result is the same : the structure doesn't collapse.
Rbase never moves to zero.
Why?
I pray to you. help me!!!!!
set Fy [expr 450]; # STEEL yield stress
set Es [expr 206000*$MPa]; # modulus of steel
set epsY [expr $Fy/$Es];
set Fu [expr 494.5];
set epsU 1;
set pinchX 1;
set pinchY 1;
set damage1 0.0;
set damage2 0.0;
set beta 0.0;
uniaxialMaterial Concrete02 $IDconcCore $fc1C $eps1C $fc2C $eps2C $lambda $ftC $Ets; # build core concrete (confined)
uniaxialMaterial Concrete02 $IDconcCover $fc1U $eps1U $fc2U $eps2U $lambda $ftU $Ets; # build cover concrete (unconfined)
uniaxialMaterial Hysteretic $IDreinf $Fy $epsY $Fu $epsU -$Fy -$epsY -$Fu -$epsU $pinchX $pinchY $damage1 $damage2 $beta ; # hysteritic reinforcemnet model
there are material's parameter:
I don't understand the problem the unit are N/mm2
set IDconcCore 1; # material ID tag -- confined core concrete
set IDSteel 2; # material ID tag -- reinforcement
# nominal concrete compressive strength
set fc [expr -30]; # CONCRETE Compressive Strength, ksi (+Tension, -Compression)
set Ec [expr 31220]; # Concrete Elastic Modulus
puts "$Ec"
# CALCESTRUZZO CONFINATO
set fpc [expr $fc]; # CONFINED concrete (mander model), maximum stress
set epsc [expr -0.002]; # strain at maximum stress
set fpcu [expr 0.8*$fpc]; # ultimate stress
set epsU [expr -0.0035]; # strain at ultimate stress
# -----------
set fy [expr 430]; # STEEL yield stress
set fu [expr 494.5];
set Es [expr 206000]; # modulus of steel
set Esh [expr 8062.5];
set esh 0.002;
set eult 0.001;
uniaxialMaterial Concrete01 $IDconcCore $fpc $epsc $fpcu $epsU; # build core concrete (confined)
uniaxialMaterial ReinforcingSteel $IDSteel $fy $fu $Es $Esh $esh $eult -MPCurveParams 0.333 18 4;
I don't understand the problem the unit are N/mm2
set IDconcCore 1; # material ID tag -- confined core concrete
set IDSteel 2; # material ID tag -- reinforcement
# nominal concrete compressive strength
set fc [expr -30]; # CONCRETE Compressive Strength, ksi (+Tension, -Compression)
set Ec [expr 31220]; # Concrete Elastic Modulus
puts "$Ec"
# CALCESTRUZZO CONFINATO
set fpc [expr $fc]; # CONFINED concrete (mander model), maximum stress
set epsc [expr -0.002]; # strain at maximum stress
set fpcu [expr 0.8*$fpc]; # ultimate stress
set epsU [expr -0.0035]; # strain at ultimate stress
# -----------
set fy [expr 430]; # STEEL yield stress
set fu [expr 494.5];
set Es [expr 206000]; # modulus of steel
set Esh [expr 8062.5];
set esh 0.002;
set eult 0.001;
uniaxialMaterial Concrete01 $IDconcCore $fpc $epsc $fpcu $epsU; # build core concrete (confined)
uniaxialMaterial ReinforcingSteel $IDSteel $fy $fu $Es $Esh $esh $eult -MPCurveParams 0.333 18 4;