Search found 4 matches
- Mon Feb 08, 2016 7:49 pm
- Forum: Parallel Processing
- Topic: Using database command in OpenSeesSP
- Replies: 2
- Views: 4634
Re: Using database command in OpenSeesSP
So digging into the problem, I found that the domain sendSelf function [Domain::sendSelf()] uses "theElements" member to get the number of elements in the domain (Domain.cpp:L2594), which is fine as long as you use OpenSees and the domain is not partitioned. However this variable is not up...
- Fri Feb 05, 2016 12:15 pm
- Forum: Parallel Processing
- Topic: Using database command in OpenSeesSP
- Replies: 2
- Views: 4634
Re: Using database command in OpenSeesSP
If it makes any help, looking at the database files generated, I can see that running the script with OpenSees generates one extra file (compared to OpenSeesSP): "modelData.IDs.3000.2" Also the files "modelData.IDs.8.0" and "modelData.Vecs.751.0" have different sizes wh...
- Fri Feb 05, 2016 11:10 am
- Forum: Parallel Processing
- Topic: Using database command in OpenSeesSP
- Replies: 2
- Views: 4634
Using database command in OpenSeesSP
Hi all, I have an issue using 'database' command in OpenSeesSP which is probably of interest to Frank. I'm trying to take advantage of database command to save the state of my model in one script and restore it in another script, so that whenever my process is killed for any reason, I would be able ...
- Thu Jul 16, 2015 12:00 pm
- Forum: OpenSees.exe Users
- Topic: linear load pattern for self-weight
- Replies: 5
- Views: 5554
Re: linear load pattern for self-weight
Here's how I did it: ################################################## # Wipe everything wipe # Create the model model BasicBuilder -ndm 3 -ndf 3; # Define nodes node 1 0.0 0.0 0.0 node 2 1.0 0.0 0.0 node 3 1.0 1.0 0.0 node 4 0.0 1.0 0.0 node 5 0.0 0.0 1.0 node 6 1.0 0.0 1.0 node 7 1.0 1.0 1.0 node...