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
Search found 15 matches
- Thu May 26, 2011 1:56 pm
- Forum: Framework
- Topic: Matrix::Solve for windows dll
- Replies: 3
- Views: 5952
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
Are there any other options for inverting a matrix for an element formulation that is in module on windows?
Thanks,
Mark
- Fri Apr 29, 2011 7:22 am
- Forum: Framework
- Topic: Return Code in Exit Command
- Replies: 2
- Views: 3598
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: ...
- Thu Mar 10, 2011 9:11 am
- Forum: Feature Requests/Future Directions
- Topic: Return Code in Exit Command
- Replies: 5
- Views: 19851
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...
- Wed Feb 23, 2011 6:22 pm
- Forum: Framework
- Topic: Compiling OpenSees on NCSA ABE
- Replies: 5
- Views: 5282
- Wed Feb 23, 2011 6:01 pm
- Forum: Framework
- Topic: Compiling OpenSees on NCSA ABE
- Replies: 5
- Views: 5282
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
- Tue Feb 22, 2011 1:33 pm
- Forum: Framework
- Topic: Compiling OpenSees on NCSA ABE
- Replies: 5
- Views: 5282
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 o...
- Tue Nov 02, 2010 1:26 pm
- Forum: Framework
- Topic: Seg fault when parsing input for a uniaxialMaterial
- Replies: 1
- Views: 2425
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 "element...
- Mon Oct 11, 2010 2:46 pm
- Forum: Documentation
- Topic: OpenSeesWiki Registration
- Replies: 2
- Views: 4672
- Fri Oct 08, 2010 11:28 am
- Forum: Documentation
- Topic: OpenSeesWiki Registration
- Replies: 2
- Views: 4672
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...
- Mon Mar 08, 2010 12:49 pm
- Forum: Framework
- Topic: Placement of element and material dynamic libraries in Linux
- Replies: 1
- Views: 2436
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...
- Thu Mar 04, 2010 9:44 pm
- Forum: Framework
- Topic: OPS_GetCrdTransfXd in elementAPI
- Replies: 5
- Views: 4803
- Thu Mar 04, 2010 5:06 pm
- Forum: Framework
- Topic: OPS_GetCrdTransfXd in elementAPI
- Replies: 5
- Views: 4803
- Thu Mar 04, 2010 3:04 pm
- Forum: Framework
- Topic: OPS_GetCrdTransfXd in elementAPI
- Replies: 5
- Views: 4803
OPS_GetCrdTransfXd in elementAPI
Could you add OPS_GetCrdTransf3d and OPS_GetCrdTransf2d functions to elementAPI?
Thanks,
Mark
Thanks,
Mark
- Wed Jul 16, 2008 12:06 pm
- Forum: Framework
- Topic: PenaltyMP_FE::getResidual
- Replies: 1
- Views: 4425
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...