Putting joints at the ends of a beam-column element
Moderators: silvia, selimgunay, Moderators
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
Putting joints at the ends of a beam-column element
How can I put joints within a structure?
Sorry, I didn't know where to place this thread, so I place it in both Documentation and here (OpenSees.exe Users).
Thanks in advance.
Sorry, I didn't know where to place this thread, so I place it in both Documentation and here (OpenSees.exe Users).
Thanks in advance.
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
Hi Silvia. Let me see if I understood. For this structure:
The code would be this:
Am I right? Thanks in advance.
The code would be this:
Code: Select all
(...)
model BasicBuilder -ndm 2 -ndf 3
(...)
node 1 0. 0.
node 2 16. 0.
node 3 0. 15.
node 31 0. 15.
node 4 8. 15.
node 5 16. 15.
node 51 16. 15.
equalDOF 3 31 1 2 3
equalDOF 5 51 1 2 3
fix 1 1 1 0
fix 2 1 1 0
(...)
element elasticBeamColumn 1 1 3 $ACol $Ec $IzCol $transfTag
element elasticBeamColumn 2 2 5 $ACol $Ec $IzCol $transfTag
element truss 3 31 4 $ABeam $matTagBeam
element truss 4 4 51 $ABeam $matTagBeam
(...)
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
releases
Hi,
if you want to release the bending moment at node 4, just use the following code
Silvia was suggesting the two alternatives, not the combination of both methods
if you want to release the bending moment at node 4, just use the following code
Code: Select all
(...)
model BasicBuilder -ndm 2 -ndf 3
(...)
node 1 0. 0.
node 2 16. 0.
node 3 0. 15.
node 4 8. 15.
node 41 8. 15.
node 5 16. 15.
equalDOF 4 41 1 2
fix 1 1 1 0
fix 2 1 1 0
(...)
element elasticBeamColumn 1 1 3 $ACol $Ec $IzCol $transfTag
element elasticBeamColumn 2 2 5 $ACol $Ec $IzCol $transfTag
element elasticBeamColumn 3 3 4 $ABeam $Ec $IzBeam $transfTag
element elasticBeamColumn 4 41 5 $ABeam $Ec $IzBeam $transfTag
(...)
Zlatko Vidrih
Institute of Structural Engineering, earthquake Engineering and Construction IT
Faculty of Civil and Geodetic Engineering
University of Ljubljana, Slovenia
Institute of Structural Engineering, earthquake Engineering and Construction IT
Faculty of Civil and Geodetic Engineering
University of Ljubljana, Slovenia
-
- Posts: 40
- Joined: Wed Feb 06, 2008 10:53 am
- Location: Universidad del Norte
Re: releases
Hi Zlatko Vidrih.
Then my code is ok, right?
Many thanks in advance.
Then my code is ok, right?
Many thanks in advance.