time history analysis doesn't complete
Moderators: silvia, selimgunay, Moderators
time history analysis doesn't complete
Hi everybody
In time history analysis, what does the following meaning?
UmfpackGenLinSOE::setsize – n 60 nnz 684 IVal 13680
In time history analysis, what does the following meaning?
UmfpackGenLinSOE::setsize – n 60 nnz 684 IVal 13680
Re: time history analysis doesn't complete
nothing .. that us just a debug statement that never got removed form the code telling me the number of equations, the number of non-zero entries in the matrix and the size of the array neeed for storage.
Re: time history analysis doesn't complete
When I multiply g by 5 in GMfatt (set GMfatt [expr $g*5.0])
Time history analysis doesn’t converge. While before that everything is ok.
How can I solve it?
wipeAnalysis
loadConst -time 0.0
set outFile tabas.txt
set Nsteps 1642
set dt 0.02;
set g 9.81
set GMfatt $g;
set gamma 0.5
set beta 0.25;
set alphaM 0.446;
set betaK 0.00426;
set betaKcomm 0
set betaKinit 0
system UmfPack
constraints Plain
test EnergyIncr 1.0e-4 1000;
algorithm NewtonLineSearch;
numberer RCM
integrator Newmark $gamma $beta
analysis Transient
set Gaccel "Series -dt $dt -filePath $outFile -factor $GMfatt";
pattern UniformExcitation 2 1 -accel $Gaccel;
analyze $Nsteps $dt;
Time history analysis doesn’t converge. While before that everything is ok.
How can I solve it?
wipeAnalysis
loadConst -time 0.0
set outFile tabas.txt
set Nsteps 1642
set dt 0.02;
set g 9.81
set GMfatt $g;
set gamma 0.5
set beta 0.25;
set alphaM 0.446;
set betaK 0.00426;
set betaKcomm 0
set betaKinit 0
system UmfPack
constraints Plain
test EnergyIncr 1.0e-4 1000;
algorithm NewtonLineSearch;
numberer RCM
integrator Newmark $gamma $beta
analysis Transient
set Gaccel "Series -dt $dt -filePath $outFile -factor $GMfatt";
pattern UniformExcitation 2 1 -accel $Gaccel;
analyze $Nsteps $dt;
Re: time history analysis doesn't complete
do something in the analysis script in case the analyze command fails,
http://opensees.berkeley.edu/wiki/index ... e_Analysis
i have seen cases where there are 20 if {} blocks within the while loop!
http://opensees.berkeley.edu/wiki/index ... e_Analysis
i have seen cases where there are 20 if {} blocks within the while loop!
Re: time history analysis doesn't complete
you mean i should use while loop?
what do you mean by: i have seen cases where there are 20 if {} blocks within the while loop!?
and another problem:
in UniformExcitation Pattern, when i change factor ( or ground motion records), the result of analysis e.g. displacement, does not change. what is the reason?
i set the mass at nodes.
wipeAnalysis
loadConst -time 0.0
set outFile tabas.txt
set Nsteps 1642
set dt 0.02;
set GMfatt 9.81;
set Gaccel "Series -dt $dt -filePath $outFile -factor $GMfatt";
pattern UniformExcitation 2 1 -accel $Gaccel;
set gamma 0.5
set beta 0.25;
system UmfPack
constraints Plain
test EnergyIncr 1.0e-4 1000;
algorithm NewtonLineSearch;
numberer RCM
integrator Newmark $gamma $beta
analysis Transient
analyze $Nsteps $dt;
what do you mean by: i have seen cases where there are 20 if {} blocks within the while loop!?
and another problem:
in UniformExcitation Pattern, when i change factor ( or ground motion records), the result of analysis e.g. displacement, does not change. what is the reason?
i set the mass at nodes.
wipeAnalysis
loadConst -time 0.0
set outFile tabas.txt
set Nsteps 1642
set dt 0.02;
set GMfatt 9.81;
set Gaccel "Series -dt $dt -filePath $outFile -factor $GMfatt";
pattern UniformExcitation 2 1 -accel $Gaccel;
set gamma 0.5
set beta 0.25;
system UmfPack
constraints Plain
test EnergyIncr 1.0e-4 1000;
algorithm NewtonLineSearch;
numberer RCM
integrator Newmark $gamma $beta
analysis Transient
analyze $Nsteps $dt;
Re: time history analysis doesn't complete
you need to use a while loop.
while { ...} {
set ok [analyze 1 $dt]
if {$ok != 0} {
}
if {$ok != 0} {
}
..
..
}
2. if you change the factor it should change the response.
while { ...} {
set ok [analyze 1 $dt]
if {$ok != 0} {
}
if {$ok != 0} {
}
..
..
}
2. if you change the factor it should change the response.
Re: time history analysis doesn't complete
Dear fmk
you wrote: "i have seen cases where there are 20 if {} blocks within the while loop!"
could you please write it here? It will be very useful.
Thanks in advance
you wrote: "i have seen cases where there are 20 if {} blocks within the while loop!"
could you please write it here? It will be very useful.
Thanks in advance
Re: time history analysis doesn't complete
no. sorry i don't have it and the student has long left stanford.
Re: time history analysis doesn't complete
Thanks for your attention.
is there any way to find it?
is there any way to find it?