Inclusion of Self Weight for 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
Araj
Posts: 26
Joined: Thu Jul 15, 2004 5:20 am

Inclusion of Self Weight for analysis

Post by Araj »

Hello !!!

How can I include the self weight of the element member for analysis in OpenSees ?

Is there any specific command for that ?

Thank you

With regards,
Aloke
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk »

it depends on the elements you are using .. at the moment some do and some don't .. what are you using?
Araj
Posts: 26
Joined: Thu Jul 15, 2004 5:20 am

Post by Araj »

I am using the "element nonlinearBeamColumn " and "element beamWithHinges" for the analysis.
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk »

these elements do not have a self-weight option .. to provide self-weight for these elements you can apply some uniform beam loads.
kadirtopcu
Posts: 33
Joined: Mon Jul 08, 2013 5:51 am
Location: Boğaziçi University

Re: Inclusion of Self Weight for analysis

Post by kadirtopcu »

and how about the truss element and displacement beam column element?
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Inclusion of Self Weight for analysis

Post by fmk »

nope. basically the continuum elements do, the line elements do not.
hshoar
Posts: 26
Joined: Wed Sep 12, 2012 5:45 am
Location: Sience and Research branch of IAU
Contact:

Re: Inclusion of Self Weight for analysis

Post by hshoar »

Dear fmk,
Could we use uniform beam loads to impose weight for vertical elements, like columns? or brace elements?
Thanks.
kadirtopcu
Posts: 33
Joined: Mon Jul 08, 2013 5:51 am
Location: Boğaziçi University

Re: Inclusion of Self Weight for analysis

Post by kadirtopcu »

Dear hshoar,
İf you find any answer for your question, could you please write here ? Because I am also confused about it.
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Inclusion of Self Weight for analysis

Post by fmk »

yes. of course!
kadirtopcu
Posts: 33
Joined: Mon Jul 08, 2013 5:51 am
Location: Boğaziçi University

Re: Inclusion of Self Weight for analysis

Post by kadirtopcu »

Dear fmk
When we apply uniform loads to braces, which direction sould we use ? because in local axes, it is not including downwards direction.
lorcancon
Posts: 25
Joined: Thu May 22, 2014 5:22 am
Location: Roughan & O Donovan

Re: Inclusion of Self Weight for analysis

Post by lorcancon »

Hi all,

When working with a larger model, It may be useful to create a loop which will automatically apply self weight as a line load for all elements. Something like the following:

foreach elem [getEleTags] {
set area [lindex [eleResponse $elem section] 4]; # Here we need to get the area of element with tag "$elem"
set unitW 7.85; #For example
set Wz [expr $area*9.81*unitW]
pattern Plain 1 Linear{
eleLoad $elem -type -beamUniform $Wz
}
}

However, the "eleResponse" command only gives information about responses to loads. We require a command here which gives a list of element properties (e.g. stiffness, inertia, Area etc). Frank, maybe such a command already exists?

Regards,
Lorcan
Post Reply