why the error repeat ?

For posts concerning the documentation, errors, ommissions, general comments, etc.

Moderators: silvia, selimgunay, Moderators

Post Reply
jerrylsy
Posts: 2
Joined: Fri May 15, 2009 5:42 am

why the error repeat ?

Post by jerrylsy » Fri May 15, 2009 5:48 am

I built a 3D beam and assign the beam a section aggregator, but the error repeat: no torsion detected in sections.......
here is the script, please help me, thanks~!O(∩_∩)O

model basic -ndm 3 -ndf 6;
# MATERIAL DEFINATION
uniaxialMaterial Steel01 1 35 32500 0.05
#section description
#set parameters
set colWidth 200
set colDepth 500
# some variables derived from the parameters
set y1 [expr $colWidth/2.0]
set z1 [expr $colDepth/2.0]

section Fiber 101 {
# Create the concrete core fibers
patch quad 1 10 10 [expr -$y1] [expr -$z1] [expr $y1] [expr -$z1] [expr $y1] [expr $z1] [expr -$y1] [expr $z1]
}
#end of section description

set Ubig 1.00E+15
uniaxialMaterial Elastic 70 $Ubig
section Aggregator 1 70 T -section 101

#model description
#nodes
node 1 0 0 0
node 2 2000 0 0

#constrain
fix 1 1 1 1 1 1 1

#local axes relations
geomTransf Linear 1 0 1 0

#elements
set COL 101
set np 6
element nonlinearBeamColumn 1 1 2 $np $COL 1
[/b]

jerrylsy
Posts: 2
Joined: Fri May 15, 2009 5:42 am

Post by jerrylsy » Fri May 15, 2009 6:44 pm

The problem is solved now, the element was assign to a wrong section tag

Post Reply