Skip to content

Commit

Permalink
Updated method keyword args
Browse files Browse the repository at this point in the history
  • Loading branch information
JWock82 authored and JWock82 committed Nov 21, 2024
1 parent 75754e1 commit 7d0b802
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Examples/Braced Frame - Spring Supported.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,18 @@
# to the full member length. Note also that the direction uses lowercase
# notations to indicate member local coordinate systems. Brace loads have been
# neglected.
braced_frame.add_member_dist_load('Beam', Direction='Fy', w1=-0.024/12,
braced_frame.add_member_dist_load('Beam', direction='Fy', w1=-0.024/12,
w2=-0.024/12, x1=0, x2=15*12, case='D')
braced_frame.add_member_dist_load('Col1', Direction='Fx', w1=-0.033/12,
braced_frame.add_member_dist_load('Col1', direction='Fx', w1=-0.033/12,
w2=-0.033/12, x1=0, x2=12*12, case='D')
braced_frame.add_member_dist_load('Col2', Direction='Fx', w1=-0.033/12,
braced_frame.add_member_dist_load('Col2', direction='Fx', w1=-0.033/12,
w2=-0.033/12, x1=0, x2=12*12, case='D')

# Add nodal wind loads of 25 kips to each side of the frame. Note that the
# direction uses uppercase notation to indicate model global coordinate
# system.
braced_frame.add_node_load('N2', Direction='FX', P=25, case='W')
braced_frame.add_node_load('N3', Direction='FX', P=25, case='W')
braced_frame.add_node_load('N2', direction='FX', P=25, case='W')
braced_frame.add_node_load('N3', direction='FX', P=25, case='W')

# Create load combinations
# Note that the load combination '1.4D' has no lateral load, but does have
Expand Down

0 comments on commit 7d0b802

Please sign in to comment.