3D Model with ShellMITC4 as Floor Slab

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

Moderators: silvia, selimgunay, Moderators

Post Reply
alirezaarab
Posts: 53
Joined: Sun May 06, 2012 1:23 am
Location: shiraz university

3D Model with ShellMITC4 as Floor Slab

Post by alirezaarab »

Hi
I am modeling a 3D RC structure with nonlinearBeamColumn element for beams and columns and ShellMITC4 element for slabs. Defining the section of slabs with ElasticMembranePlateSection which can model the structure mass as distributed (using $rho- mass density of the material), now I want to know if OpenSEES just consider this distributed mass as nodal masses, or rotary inertia of slab considers in mass matrix as well?

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

Re: 3D Model with ShellMITC4 as Floor Slab

Post by fmk »

the mass matrix from the element only contains translational terms.

//multiply by density
temp *= rhoH ;

//node-node translational mass
for ( k=0, kk=0; k<numberNodes; k++, kk+=ndf ) {

massJK = temp * shp[massIndex][k] ;

for ( p = 0; p < 3; p++ )
mass( jj+p, kk+p ) += massJK ;

} // end for k loop
Post Reply