Search found 26 matches

by cicilixiaoran
Mon Jan 09, 2012 8:55 pm
Forum: OpenSees.exe Users
Topic: changed constitutive relation for every one time step
Replies: 7
Views: 5568

Re: changed constitutive relation for every one time step

Dear vesna,Thank you very much.I do a pushover analysis with changed elastic modulus for every one time step, the code is as follows: wipe; model BasicBuilder -ndm 2 -ndf 3; set dataDir Data; file mkdir $dataDir/; set mm 1; set kN 1; set s 1; set LunitTXT "mm"; set FunitTXT "kN";...
by cicilixiaoran
Wed Dec 07, 2011 6:49 am
Forum: OpenSees.exe Users
Topic: changed constitutive relation for every one time step
Replies: 7
Views: 5568

Re: changed constitutive relation for every one time step

Thank you, I do a pushover analysis with changed elastic modulus for every one time step, the code is as follows: wipe; model BasicBuilder -ndm 2 -ndf 3; set dataDir Data; file mkdir $dataDir/; set mm 1; set kN 1; set s 1; set LunitTXT "mm"; set FunitTXT "kN"; set TunitTXT "...
by cicilixiaoran
Sun Dec 04, 2011 7:02 am
Forum: OpenSees.exe Users
Topic: changed constitutive relation for every one time step
Replies: 7
Views: 5568

Re: changed constitutive relation for every one time step

Dear vesna, Thank you very much. These days I carefully read the example you provided and wrote a program about cantilever column under cyclic load with changed elastic modulus for every one time step, here damage equation is the function of the concrete strain, and defined as: dd=0, when 0≤ε≤εf ; d...
by cicilixiaoran
Wed Nov 23, 2011 12:33 am
Forum: OpenSees.exe Users
Topic: changed constitutive relation for every one time step
Replies: 7
Views: 5568

Re: changed constitutive relation for every one time step

Dear vesna,
Thank you very much.These days.I have tried to do it as you said,but i don't successfully do it.Do you mean that i should make a new material every one time step inside an analysis loop? Can you set an example for me ?Thank you very much.

Best regards
by cicilixiaoran
Fri Oct 07, 2011 5:23 am
Forum: OpenSees.exe Users
Topic: changed constitutive relation for every one time step
Replies: 7
Views: 5568

changed constitutive relation for every one time step

Hello! Everyone, I want to simulate the changed elastic modulus and changed constitutive relation of concrete for every one time step. Here damage factor is the function of the concrete strain, and Ecxiu=(1-$dd)*$Ec, where Ecxiu is the elastic modulus after the concrete is damaged, dd is damage fact...
by cicilixiaoran
Fri Oct 07, 2011 1:14 am
Forum: OpenSees.exe Users
Topic: About changed damping ratio for every one time step
Replies: 2
Views: 2503

Re: About changed damping ratio for every one time step

Hello vesna, thank you very much for your reply,this problem is solved according to your suggestion.

Best regards.
cicilixiaoran
by cicilixiaoran
Fri Oct 07, 2011 1:10 am
Forum: OpenSees.exe Users
Topic: About recorder in the circulation
Replies: 2
Views: 2559

Re: About recorder in the circulation

Hello vesna, thank you very much for your reply,this problem is solved because of your answer of my next problem"About changed damping ratio for every one time step".Thank you very much! :)
by cicilixiaoran
Sun Oct 02, 2011 4:58 am
Forum: OpenSees.exe Users
Topic: About changed damping ratio for every one time step
Replies: 2
Views: 2503

About changed damping ratio for every one time step

Hello! Everyone, If I regression the formulation of the η=a*pow(σ,b) , where , η is hysteresis damping coefficient, σ is the maximum stress of the section of column bottom , and δ=η/2 ,where δ is damping ratio, I want to extraction the section strain of every one time step, and multiplied by elastic...
by cicilixiaoran
Sat Oct 01, 2011 9:53 pm
Forum: OpenSees.exe Users
Topic: About recorder in the circulation
Replies: 2
Views: 2559

About recorder in the circulation

Hello, everyone, Now I have some problem about recorder in the circulation, for example: recorder Node -file $dataDir/DFree.out -time -node 2 -dof 1 2 3 disp; foreach Dmax $iDmax { set iDstep [GeneratePeaks $Dmax $Dincr $CycleType $Fact]; for {set i 1} {$i <= $Ncycles} {incr i 1} { set zeroD 0 set D...
by cicilixiaoran
Fri Dec 24, 2010 1:19 am
Forum: OpenSees.exe Users
Topic: About rayleigh damping
Replies: 1
Views: 1869

About rayleigh damping

Hello, does the below code indicate that betaKcomm will be updated in every time step? Is it that if the Kcurrent is choosed, then the tangent stiffness is used and both Kcurrent and coefficient are changed in every time step, if the KlastCommitt is choosed, then the stiffness of the last committed ...
by cicilixiaoran
Thu Dec 23, 2010 5:55 pm
Forum: OpenSees.exe Users
Topic: About dynamic time-history curve
Replies: 3
Views: 2889

Re: About dynamic time-history curve

Dear vesna, Thank you very much for your reply. Yes, after 2.48 sec the value(displacement) is constant. And the dynamic time-history curve(displacement-time) is a straight line parallel to time axis from 2.48 sec to 10 sec. I don't know how to upload pictures of dynamic time-history curve. Thank you!
by cicilixiaoran
Thu Dec 23, 2010 1:48 am
Forum: OpenSees.exe Users
Topic: About dynamic time-history curve
Replies: 3
Views: 2889

About dynamic time-history curve

Hello everybody!
when I conduct dynamic time-history of cantilever column, the maximum analysis time is defined 10 second,but when the time is 2.48 second, the dynamic time-history curve calculated is a straight line parallel to X axis up to the tenth seconds. Why is this? Thank you!
by cicilixiaoran
Wed Dec 08, 2010 6:11 pm
Forum: OpenSees.exe Users
Topic: how to write data in an out file?
Replies: 2
Views: 2237

Dear vesna,

I successfully do it according to your suggestion.Thank you very much!
:)
Best regards
cicilixiaoran
by cicilixiaoran
Wed Dec 08, 2010 6:08 pm
Forum: OpenSees.exe Users
Topic: how can I write these data in an out file?
Replies: 4
Views: 3017

Dear vesna,

I successfully do it according to your suggestion.Thank you very much!

Best regards
cicilixiaoran
by cicilixiaoran
Tue Dec 07, 2010 11:50 pm
Forum: OpenSees.exe Users
Topic: how to write data in an out file?
Replies: 2
Views: 2237

how to write data in an out file?

Dear vesna, Thank you for your help. set outFileID [open filetoread.out "r"] set b [read $outFileID] close $outFileID set a [lindex $b 1] puts "a is $a" Through the above command, I can get the second data "a" in the first lode step. That puts "a is $a" is put...