Dear sir,
A 4X4 pile group-raft supporting a 3D frame superstructure of single story is done in opensees with the help of suitable element and materials. Soil is defined by zerolength spring element spring.
Plz anybody will check my code why analysis is showing an warning. The warning is as follows:
"WARNING UmfpackGenlinsolver::solve(void)-4 returned in factorization UMD2FA()
UMD2FA: LVALUE too small! Must be greater than 1934196" ..................
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
The final code is also attached for reference.
#wiping out all previous declarations
wipe;
#modelling of pile and soil: Pile as elastic beam column element and soil as a spring
#modelling in six degrees of freedom
source Pile.tcl ;
#modelling of raft by standard brick element
#modelling in three degrees of freedom
source Raft.tcl ;
#modelling of superstructure by 3D frame model
#modelling in six degrees of freedom
source superstructure_model.tcl ;
#recorder commands
source recorders.tcl ;
source file_converter.tcl ;
converter earthquake.txt earthquake.acc dt
# transient load pattern definition
set accelSeries "Series -dt $dt -filePath earthquake.acc -factor 1";
pattern UniformExcitation 2 1 -accel $accelSeries
#pattern UniformExcitation 3 2 -accel $accelSeries
#set damping forces
rayleigh 0.05 0. 0. 0.
#analysis strategies
wipeAnalysis
constraints Plain
numberer RCM
system UmfPack
#system SparseSPD
test NormDispIncr 1.0e-8 10
#algorithm Linear
algorithm Newton
integrator Newmark 0.5 0.25
analysis Transient
#analyzing in 600 steps with an increment of 0.1 ion time
analyze 200 .5
#source file
Plz help me.....
Analysis problem in a pile-soil-raft-superstructure modeldel
Moderators: silvia, selimgunay, Moderators
-
- Posts: 5
- Joined: Fri Apr 01, 2011 12:59 am
- Location: IIT Bhubaneswar
Re: Analysis problem in a pile-soil-raft-superstructure mode
this is a problem with the solver running out of memory in it's work area .. the next version of the code will have a fix .. in the meantime you need to use a different solver .. how big is the model and do you have multi point constraints in there.