Inclusion of Self Weight for analysis
Moderators: silvia, selimgunay, Moderators
Inclusion of Self Weight for analysis
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
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
-
- Posts: 33
- Joined: Mon Jul 08, 2013 5:51 am
- Location: Boğaziçi University
Re: Inclusion of Self Weight for analysis
and how about the truss element and displacement beam column element?
Re: Inclusion of Self Weight for analysis
nope. basically the continuum elements do, the line elements do not.
-
- 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
Dear fmk,
Could we use uniform beam loads to impose weight for vertical elements, like columns? or brace elements?
Thanks.
Could we use uniform beam loads to impose weight for vertical elements, like columns? or brace elements?
Thanks.
-
- Posts: 33
- Joined: Mon Jul 08, 2013 5:51 am
- Location: Boğaziçi University
Re: Inclusion of Self Weight for analysis
Dear hshoar,
İf you find any answer for your question, could you please write here ? Because I am also confused about it.
İf you find any answer for your question, could you please write here ? Because I am also confused about it.
Re: Inclusion of Self Weight for analysis
yes. of course!
-
- Posts: 33
- Joined: Mon Jul 08, 2013 5:51 am
- Location: Boğaziçi University
Re: Inclusion of Self Weight for analysis
Dear fmk
When we apply uniform loads to braces, which direction sould we use ? because in local axes, it is not including downwards direction.
When we apply uniform loads to braces, which direction sould we use ? because in local axes, it is not including downwards direction.
Re: Inclusion of Self Weight for analysis
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
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