Search found 15 matches

by denavit
Thu Feb 09, 2012 8:02 am
Forum: Framework
Topic: Seg Fault
Replies: 1
Views: 2306

Seg Fault

I would like to report a segmentation fault. It occurs when not putting enough arguments when defining mass inline with the node

For example, this causes the fault:
model basic -ndm 2 -ndf 3
node 1 0.0 0.0 -mass 1.0 1.0

This does not:
model basic -ndm 2 -ndf 3
node 1 0.0 0.0 -mass 1.0 1.0 1.0
by denavit
Thu May 26, 2011 1:56 pm
Forum: Framework
Topic: Matrix::Solve for windows dll
Replies: 3
Views: 5515

Matrix::Solve for windows dll

I notice that Matrix::Solve is not implemented for windows dlls.

Are there any other options for inverting a matrix for an element formulation that is in module on windows?

Thanks,
Mark
by denavit
Fri Apr 29, 2011 7:22 am
Forum: Framework
Topic: Return Code in Exit Command
Replies: 2
Views: 3376

Return Code in Exit Command

The current implementation of the "exit" command in OpenSees depreciates the standard Tcl "exit" command (http://www.tcl.tk/man/tcl/TclCmd/exit.htm) in that it does not allow the option for a return code. The following code in OpenSeesExit within command.cpp should do the trick: At the beginning: in...
by denavit
Thu Mar 10, 2011 9:11 am
Forum: Feature Requests/Future Directions
Topic: Return Code in Exit Command
Replies: 5
Views: 15227

Return Code in Exit Command

I would like the OpenSees exit command to have the option for a return code the same as the Tcl exit command (http://www.tcl.tk/man/tcl/TclCmd/exit.htm) The following code in OpenSeesExit within command.cpp should do the trick: At the beginning: int returnCode = 0; if (argc > 1) { if (Tcl_GetInt(int...
by denavit
Wed Feb 23, 2011 6:01 pm
Forum: Framework
Topic: Compiling OpenSees on NCSA ABE
Replies: 5
Views: 5104

Re: Compiling OpenSees on NCSA ABE

I found a workable solution by deleting " $(FE)/system_of_eqn/linearSOE/sparseGEN/SparseGenColLinSolver.o \ " (Line 349) from PARALLEL_LIB in Makefile.def
by denavit
Tue Feb 22, 2011 1:33 pm
Forum: Framework
Topic: Compiling OpenSees on NCSA ABE
Replies: 5
Views: 5104

Compiling OpenSees on NCSA ABE

I am trying to compile OpenSees on NCSA ABE and running into trouble. I copied over Makefile.def.ABE from the Makes directory and made the following changes: 1. PROGRAMMING_MODE = SEQUENTIAL 2. Home Directory 3. HAVEMUMPS = NO It works fine until linking where I get error "multiple definition of" er...
by denavit
Tue Nov 02, 2010 1:26 pm
Forum: Framework
Topic: Seg fault when parsing input for a uniaxialMaterial
Replies: 1
Views: 2340

Seg fault when parsing input for a uniaxialMaterial

Frank, I am running into some unexpected behavior when parsing the input for a uniaxialMaterial that I am developing. If I try to get more arguments than there are, for example by calling OPS_GetString(…) to check if there is any optional input, it results in a segmentation fault. In "elementAPI.c...
by denavit
Mon Oct 11, 2010 2:46 pm
Forum: Documentation
Topic: OpenSeesWiki Registration
Replies: 2
Views: 4321

I received the email. Thank you.
by denavit
Fri Oct 08, 2010 11:28 am
Forum: Documentation
Topic: OpenSeesWiki Registration
Replies: 2
Views: 4321

OpenSeesWiki Registration

I created an account for the OpenSeesWiki a couple days ago with the username: Denavit I was expecting an confirmation email so that I could make edits on the wiki but never received one. Perhaps I typed my email address wrong or it got caught in a spam filter. Could you resend the email for confirm...
by denavit
Mon Mar 08, 2010 12:49 pm
Forum: Framework
Topic: Placement of element and material dynamic libraries in Linux
Replies: 1
Views: 2352

Placement of element and material dynamic libraries in Linux

Could you comment on the permissible locations for element and material dynamic libraries in Linux. In the source code, it appears that two functions search for the .so file. The first, stat, appears to only look in the current directory. The second, dlopen, appears to look in LD_LIBRARY_PATH then a...
by denavit
Thu Mar 04, 2010 9:44 pm
Forum: Framework
Topic: OPS_GetCrdTransfXd in elementAPI
Replies: 5
Views: 4627

Thanks
by denavit
Thu Mar 04, 2010 5:06 pm
Forum: Framework
Topic: OPS_GetCrdTransfXd in elementAPI
Replies: 5
Views: 4627

I think I might have been unclear (I apologize if I wasn't and am asking again).

I meant the elementAPI located "OpenSees/SRC/api/elementAPI". I was asking for functions similar to "OPS_GetSectionForceDeformation" to be used in the function which defines the tcl commands in a element in a dll.
by denavit
Thu Mar 04, 2010 3:04 pm
Forum: Framework
Topic: OPS_GetCrdTransfXd in elementAPI
Replies: 5
Views: 4627

OPS_GetCrdTransfXd in elementAPI

Could you add OPS_GetCrdTransf3d and OPS_GetCrdTransf2d functions to elementAPI?

Thanks,
Mark
by denavit
Wed Jul 16, 2008 12:06 pm
Forum: Framework
Topic: PenaltyMP_FE::getResidual
Replies: 1
Views: 4322

PenaltyMP_FE::getResidual

Why does the multiple point penalty not return a redisual like the single point penalty does? It seems to cause problems when I use the NormUnbalance test, like in the script below. wipe model BasicBuilder -ndm 1 -ndf 1 node 1 0.0 node 2 1.0 node 3 2.0 fix 1 1 uniaxialMaterial Elastic 1 1000 element...