Numerical error
Moderators: silvia, selimgunay, Moderators
Numerical error
Hello, I do an IDA-analysis.
But with some records the analysis stops at a certain intensity - and I dont know why.
The error message I get is the following:
Vector::Vector(int) - out of memory creating vector of size 1460
What is the problem? What can it be and how can I solve it?
Thanks, Clemens
But with some records the analysis stops at a certain intensity - and I dont know why.
The error message I get is the following:
Vector::Vector(int) - out of memory creating vector of size 1460
What is the problem? What can it be and how can I solve it?
Thanks, Clemens
Re: Numerical error
What system solver do you use?
Re: Numerical error
I am using the following analysis commands:
algorithm NewtonLineSearch
system BandGeneral
constraints Transformation
numberer RCM
test NormDispIncr [lindex $TestTolList 0] 50 0
integrator Newmark $gamma1 $beta
analysis Transient
algorithm NewtonLineSearch
system BandGeneral
constraints Transformation
numberer RCM
test NormDispIncr [lindex $TestTolList 0] 50 0
integrator Newmark $gamma1 $beta
analysis Transient
Re: Numerical error
Try using one of the sparse solvers. An example would be:
system UmfPack
system UmfPack
Re: Numerical error
I tried all the solvers, but non worked.
What does this error message say?
Is it an ill conditioned problem or something else?
What does this error message say?
Is it an ill conditioned problem or something else?
Re: Numerical error
In that case you are having problems with memory. Are you creating lists that you are not deleting after you use them? This may consume all you memory.