Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into contrib-src
Browse files Browse the repository at this point in the history
  • Loading branch information
claudioperez committed Jul 9, 2021
2 parents 860640f + 0ca4168 commit 5f8949c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions SRC/element/mixedBeamColumn/MixedBeamColumn2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ void * OPS_MixedBeamColumn2d() {
return 0;
}

delete [] sections;
return theElement;
}

Expand Down
1 change: 1 addition & 0 deletions SRC/element/mixedBeamColumn/MixedBeamColumn3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ void * OPS_MixedBeamColumn3d() {
return 0;
}

delete [] sections;
return theElement;
}

Expand Down
4 changes: 4 additions & 0 deletions SRC/interpreter/OpenSeesOutputCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,10 @@ int OPS_nodeEigenvector()

// get eigen vectors
Node* theNode = theDomain->getNode(data[0]);
if (theNode == 0) {
opserr << "nodeEigenvector - node with tag " << data[0] << " not found\n";
return -1;
}
const Matrix &theEigenvectors = theNode->getEigenvectors();

int size = theEigenvectors.noRows();
Expand Down

0 comments on commit 5f8949c

Please sign in to comment.