What is this opensees error mean??

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

Moderators: silvia, selimgunay, Moderators

Post Reply
sriram
Posts: 15
Joined: Wed Jun 29, 2005 10:37 am
Location: Iowa State University ,Ames

What is this opensees error mean??

Post by sriram »

Hi I am trying to get the rebar stresses from the experimental strain history. I am trying to do this using a truss element and suppling the strain history as input file.
but when i run the scirpt, I am getting follwoing error, I don't understand what it means. can anyone know where i am going wrong.? Any help is greatly appriciated..


FATAL SparseGenColLinSOE::getX - vectX == 0 -----------------------------------
----------------------------------------
End of script <C:\Documents> reached, Press any key to continue

I am posting my TCL file below.
model basic -ndm 2 -ndf 3
node 1 0.0 0.0
node 2 1.0 0.0
fix 1 1 1 1
fix 2 0 1 1

#steel model for #5 rebar
uniaxialMaterial ReinforcingSteel 1 71.03 97.5 28537 875 0.0097 0.101
element truss 1 1 2 1.00 1
set SeriesPath1 "Path Series -dt 1 -filePath Y_disp.txt"
pattern Plain 1 $SeriesPath1 {
# sp $node $DOF $Reference
sp 2 1 1
}
## Define reference load in X direction
# pattern Plain 1 "Linear" {
## Fx Fy Mz
# load 2 1.0 0 0
#}
recorder Node -file testing.out -time -node 2 -dof 1 2 3 disp
recorder Element -file Force.out -time -ele 1 axialForce
## Create displacement Increment
#set du 0.0001
# Define analysis parameters
integrator LoadControl 1
#integrator DisplacementControl 2 1 $du
system SparseGeneral -piv
test NormDispIncr 1.0e-5 100 1
numberer Plain
constraints Transformation
algorithm KrylovNewton
analysis Static

# Apply the 40 points in the files.
analyze 40
# ------------------------------
silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia »

try using a different material. I have have many problems with reinforcingsteel.
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104
sriram
Posts: 15
Joined: Wed Jun 29, 2005 10:37 am
Location: Iowa State University ,Ames

Post by sriram »

HI silvia,
I did try steel 02.Even then I am getting same error. Do you think is there anything else wrong in my script.?
silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia »

why load control with sp?
please look at the examples with sp.
i put a link to a neesCentral location.
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104
jwaugh
Posts: 110
Joined: Thu Jul 15, 2004 12:20 pm
Location: HNTB - Portland ME

Post by jwaugh »

Silvia, what he is doing is right. At least it is right according to how I have used "sp" before.

If you take the same model and change it to Displacement control and cycle it that way then it works.
silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia »

that's what i had asked about at some point. was that in a parallel thread?
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104
Post Reply