FileDataStore command: Difference between revisions
Jump to navigation
Jump to search
(Created page with '{{CommandManualMenu}} This command is used to construct the FE_Datastore object. {| | style="background:yellow; color:black; width:800px" | '''database $type $dbName''' |} --...') |
No edit summary |
||
Line 10: | Line 10: | ||
{| | {| | ||
| style="width:150px" | | | style="width:150px" | '''$type ''' || database type: | ||
|- | |- | ||
| || '''File''' - outputs database into a file | | || '''File''' - outputs database into a file | ||
Line 21: | Line 17: | ||
|- | |- | ||
| || '''BerkeleyDB''' - creates a BerkeleyDB database | | || '''BerkeleyDB''' - creates a BerkeleyDB database | ||
|- | |||
| '''$dbName ''' || database name. | |||
|} | |} | ||
---- | |||
Note 1: If the database type is File, the command will save the data into a number of files, e.g. $dbName.id11 for all ID objects of size 11 that sendSelf() is invoked upon. | |||
Note 2:The invocation of this command will add the additional commands save and restore to the OpenSees interpreter to allow users to save and restore model states. |
Latest revision as of 19:09, 2 March 2011
- Command_Manual
- Tcl Commands
- Modeling_Commands
- model
- uniaxialMaterial
- ndMaterial
- frictionModel
- section
- geometricTransf
- element
- node
- sp commands
- mp commands
- timeSeries
- pattern
- mass
- block commands
- region
- rayleigh
- Analysis Commands
- Output Commands
- Misc Commands
- DataBase Commands
This command is used to construct the FE_Datastore object.
database $type $dbName |
$type | database type: |
File - outputs database into a file | |
MySQL - creates a SQL database | |
BerkeleyDB - creates a BerkeleyDB database | |
$dbName | database name. |
Note 1: If the database type is File, the command will save the data into a number of files, e.g. $dbName.id11 for all ID objects of size 11 that sendSelf() is invoked upon.
Note 2:The invocation of this command will add the additional commands save and restore to the OpenSees interpreter to allow users to save and restore model states.