Search found 5881 matches

by fmk
Wed May 02, 2018 8:39 pm
Forum: Parallel Processing
Topic: Error using OpenSeesSP
Replies: 8
Views: 14426

Re: Error using OpenSeesSP

thanks .. probably LayeredShellSection is not working in parallel.

can you post the section and materials commands
by fmk
Wed May 02, 2018 8:36 pm
Forum: OpenSees.exe Users
Topic: How to check if the analyze is completed?
Replies: 3
Views: 3150

Re: How to check if the analyze is completed?

set ok [analyze 1]
puts $ok

will output 0 if it worked, other number if did not.
by fmk
Wed May 02, 2018 8:33 pm
Forum: OpenSees.exe Users
Topic: Applying an earthquake acceleration to model
Replies: 6
Views: 5436

Re: Applying an earthquake acceleration to model

when you used uniform acceleration it does not apply any acceleration to the base nodes .. what it does is create a forcing function F(t) = -ag(t) M 1, M being the mass matrix and ag being the ground motion and 1 a vector of 1's and 0's, 1 in the vector if the corresponding dof is in the dirn specif...
by fmk
Wed May 02, 2018 8:28 pm
Forum: OpenSees.exe Users
Topic: Applied displacement
Replies: 8
Views: 2178

Re: Applied displacement

are you basically saying that the acceleration recorded at the ground node is not the same as that you used to derive the displacements?
by fmk
Wed May 02, 2018 8:21 pm
Forum: OpenSees.exe Users
Topic: Region
Replies: 2
Views: 881

Re: Region

you can build up the element or nodes into a list and then put an eval around the command

set cmd region -ele $eleList ....
eval $cmd
by fmk
Wed May 02, 2018 8:17 pm
Forum: OpenSees.exe Users
Topic: Why does not the period change even though shear is included
Replies: 6
Views: 3050

Re: Why does not the period change even though shear is incl

sorry .. shear aggregator does not work with disp based elemnets, only forced based include shear defo effects if provided in the section.
by fmk
Wed May 02, 2018 8:02 pm
Forum: OpenSees.exe Users
Topic: Record flexure and shear displacements components
Replies: 2
Views: 903

Re: Record flexure and shear displacements components

you cannot record that info from the element .. and your approach will not work for a nonlinear model.
by fmk
Wed May 02, 2018 7:47 pm
Forum: OpenSees.exe Users
Topic: Viscous damper with MultipleSupport disp input
Replies: 4
Views: 4595

Re: Viscous damper with MultipleSupport disp input

the viscous material is looking at change in vel of two connected nodes to get a force value .. as you only provide an imposed displacement at the node and no associated vel, the material is going to have a 0 force as there is no delta velocity between the nodes.
by fmk
Thu Apr 26, 2018 5:28 am
Forum: OpenSees.exe Users
Topic: Algorithm Failed at Iteration
Replies: 2
Views: 1078

Re: Algorithm Failed at Iteration

if the solver fails it means the tangent matrix is singular, i.e. a 0 encountered on diagonal during factorization, i.e. your model is unstable. .. as it does get through the first few steps you could try swicthcing to a ModifiedNewton with initial stiffness iterations
by fmk
Thu Apr 26, 2018 5:23 am
Forum: OpenSees.exe Users
Topic: ConvergenceTest object failed in test
Replies: 4
Views: 7484

Re: ConvergenceTest object failed in test

the message says that after 100 iterations it failed to reach the convergence that you specify of 1.0e-5 on the norm of the disp increment, at the 100'th step the norm was 14.4 and the norm of the unbalance was 36.9. as it is failing in the very first analysis step .. your model is probably incorrect.
by fmk
Wed Apr 18, 2018 4:04 pm
Forum: OpenSees.exe Users
Topic: Push and Pull
Replies: 9
Views: 2506

Re: Push and Pull

if i do print node Node: 1 Coordinates : 0 Disps: 0 Velocities : 0 unbalanced Load: 0 reaction: 180000 ID : -1 Node: 2 Coordinates : 1 Disps: -6 Velocities : 0 unbalanced Load: -180000 reaction: 0 ID : 0 Node1 ele1 Node2 i.e. 180000 --> []-------------{] <--180000 sure looks o.k. from an equilibrium...
by fmk
Wed Apr 18, 2018 3:55 pm
Forum: OpenSees.exe Users
Topic: Error while building OpenSees source code by Visual Studio
Replies: 5
Views: 2074

Re: Error while building OpenSees source code by Visual Stud

no .. it is looking for a lib it cannnot find .. look to see in the opensees project settings where tcl86t.lib is being set and try changing to tcl86.lib or whatever the lib you have is.
by fmk
Wed Apr 18, 2018 3:53 pm
Forum: OpenSees.exe Users
Topic: Develop a material/opensees
Replies: 1
Views: 2252

Re: Develop a material/opensees

you could place a link to the dll in the wiki. you need my permission to get wiki page access. it will of course be useless when we update to newer versions.