Search found 6 matches

by nspk
Wed Feb 27, 2013 5:40 am
Forum: OpenSees.exe Users
Topic: Confusion over Load/Disp Control in Transient Analysis
Replies: 1
Views: 570

Confusion over Load/Disp Control in Transient Analysis

Hello As per Opensees way of working, I am provided Load Control or Displacement Control Integrators only for Static Problems. For Dynamic Ones I need to use something like Newmark. However if I'm not mistaken Newmark is kind of an integration scheme to build up response at t+dt from the current res...
by nspk
Sat Feb 16, 2013 2:59 am
Forum: Framework
Topic: Lapack Solver Input A
Replies: 1
Views: 1437

Lapack Solver Input A

The band storage process as per lapack documentation points to storing of the A matrix(of AX=B) as another compacted matrix. Quoting from the lapack documentation - "An m-by-n band matrix with kl subdiagonals and ku superdiagonals may be stored compactly in a two-dimensional array with kl+ku+1 ...
by nspk
Tue Feb 05, 2013 8:07 am
Forum: Framework
Topic: element by element solution strategies
Replies: 0
Views: 1054

element by element solution strategies

I see that a section of member functions of FE_Element Class - the ones pasted below are expected to be used for element by element solution strategies. I want to know where(in which class) is the element by element strategy implemented since integrators seem to implement the standard full matrix K*...
by nspk
Thu Jan 24, 2013 9:47 am
Forum: Documentation
Topic: Documentation for FE formulation.
Replies: 1
Views: 2508

Documentation for FE formulation.

It seems most of the Opensees FE formulation for getting the matrices and vectors is following from Frank Mckenna's Thesis Section 3.2 of thesis-Object-Oriented Finite Element Programming: Frameworks for Analysis, Algorithms and Parallel. But is there any further reference on this way of doing thing...
by nspk
Tue Jan 22, 2013 5:36 pm
Forum: Framework
Topic: Integrator:formEleTangent() versus formTangent method..
Replies: 3
Views: 3441

Re: Integrator:formEleTangent() versus formTangent method..

Could appreciate the OOP but was exasperated finding out from where the call to getEleTang() is going through. Your explanation cleared it up.

Thanks frank!!
by nspk
Tue Jan 22, 2013 11:19 am
Forum: Framework
Topic: Integrator:formEleTangent() versus formTangent method..
Replies: 3
Views: 3441

Integrator:formEleTangent() versus formTangent method..

Am trying to trace the sequence of events happening during a linear/nonlinear analysis. In the Integrator subclasses, there is a method formEleTangent() which forms the tangent matrix after iterating all over the elements(similar method for nodes). However all solution algorithm methods in EquisolnA...