-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some queries #6
Comments
Hey Alex! Thanks for your comment, glad it's been useful. Yes you can - you can use Mmax and Vmax to return the values. See example below. Agreed about the labels, it would be great to have local peak information on the plot. I'll see what I can do there. The scale parameter is used to scale the "y" values of the plot - basically the vertical scale. I may need to document this better. beam = ps.EulerBeam()
beam.addVerticalLoad(0, -5)
analysis = ps.OpenSeesAnalyzer2D(beam)
analysis.runAnalysis()
#max Moment/Shear values
beam.Mmax
beam.Vmax
# different size plots
fig, ax, _ = ps.plotMoment(beam, scale = -1/kN, yunit = 'kNm')
fig.set_size_inches(8.5, 5.5) |
@AlexGriffiths526 I believe this is closed, but let me know if this solution worked for you or is still ongoing. |
Hey @akkypat I'm going to move this conversation to the discussion page to keep things more focused here! |
Hello,
Firstly I really like your library. The simplicity of doing simple hand calculations is perfect. I am relatively new to python so I apologise if the queries are simple.
The text was updated successfully, but these errors were encountered: