Skip to content

Commit

Permalink
Merge branch 'hssSection' of https://github.com/mhscott/OpenSees into…
Browse files Browse the repository at this point in the history
… hssSection
  • Loading branch information
mhscott committed Oct 17, 2021
2 parents 6e31840 + 26a1d58 commit 3523b23
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions SRC/material/section/integration/HSSSectionIntegration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ HSSSectionIntegration::setParameter(const char **argv, int argc,
if (argc < 1)
return -1;

if (strcmp(argv[0],"b") == 0) {
if (strcmp(argv[0],"h") == 0) {
param.setValue(h);
return param.addObject(1, this);
}
Expand Down Expand Up @@ -458,10 +458,11 @@ void
HSSSectionIntegration::Print(OPS_Stream &s, int flag)
{
s << "HSS" << endln;
s << " h = " << h;
s << " b = " << b;
s << " Nfh = " << Nfh;
s << " Nfb = " << Nfb;
s << " h = " << h << endln;
s << " b = " << b << endln;
s << " t = " << t << endln;
s << " Nfh = " << Nfh << endln;
s << " Nfb = " << Nfb << endln;
s << " Nft = " << Nft << endln;

return;
Expand Down

0 comments on commit 3523b23

Please sign in to comment.