calculate the stiffness matrix for a regular plan frame

7
// calculate the stiffness matrix for a regular plan frame // author F. Paulet-Crainiceanu // version 1.0 / december 2006 clear mode(0) disp('') disp('') disp(' *******************************************') disp(' *** CALCULATION OF THE STIFFNESS MATRIX ***') disp(' *******************************************') disp('') disp('') n=0; while n<1 n=input('Number of levels = '); if n<1 then disp('error, no.of levels should be >= 1') disp('') end end disp('') m=0; while m<1 m=input('Number of spans = '); if m<1 then disp('error, no.of spans should be >= 1') disp('') end end disp('') EI=0; while EI<=0 EI=input('E*I = '); if EI<=0 then disp('error, E*I should be > 0') disp('') end end disp('') disp('') disp(' ** LEVEL HEIGHTS:')

Upload: atasiei-monica-gabriela

Post on 16-Nov-2015

8 views

Category:

Documents


5 download

DESCRIPTION

Calculate the Stiffness Matrix for a Regular Plan Frame

TRANSCRIPT

// calculate the stiffness matrix for a regular plan frame

// calculate the stiffness matrix for a regular plan frame

// author F. Paulet-Crainiceanu

// version 1.0 / december 2006

clear

mode(0)

disp('')

disp('')

disp(' *******************************************')

disp(' *** CALCULATION OF THE STIFFNESS MATRIX ***')

disp(' *******************************************')

disp('')

disp('')

n=0;

while n