Skip to content

Commit

Permalink
RemoveRecorder: add RemoveRecorder to Python
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuminjie committed Nov 4, 2020
1 parent 71720c7 commit 46108f9
Show file tree
Hide file tree
Showing 2 changed files with 379 additions and 0 deletions.
5 changes: 5 additions & 0 deletions SRC/interpreter/OpenSeesOutputCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ void* OPS_ElementRecorder();
void* OPS_EnvelopeElementRecorder();
void* OPS_PVDRecorder();
void* OPS_AlgorithmRecorder();
void* OPS_RemoveRecorder();
BackgroundMesh& OPS_getBgMesh();

//void* OPS_DriftRecorder();
Expand All @@ -94,6 +95,10 @@ namespace {
recordersMap.insert(std::make_pair("EnvelopeElement", &OPS_EnvelopeElementRecorder));
recordersMap.insert(std::make_pair("PVD", &OPS_PVDRecorder));
recordersMap.insert(std::make_pair("BgPVD", &OPS_PVDRecorder));
recordersMap.insert(std::make_pair("Remove", &OPS_RemoveRecorder));
recordersMap.insert(std::make_pair("ElementRemoval", &OPS_RemoveRecorder));
recordersMap.insert(std::make_pair("NodeRemoval", &OPS_RemoveRecorder));
recordersMap.insert(std::make_pair("Collapse", &OPS_RemoveRecorder));
//recordersMap.insert(std::make_pair("Drift", &OPS_DriftRecorder));
//recordersMap.insert(std::make_pair("Pattern", &OPS_PatternRecorder));

Expand Down
Loading

0 comments on commit 46108f9

Please sign in to comment.