Beam Problem — Hand Calculation PDF LINK — beam analysis — hand calculations The 5 page calculation in the PDF was done in 1983. The quidiagonal matrix solution was probably done with an HP-41 calculator program. Beam Problem — Plotly Graph LIVE LINK to HTML PAGE — using Plotly The Plotly graph shows deflections, shears, […]
Category: Pythonista
Structural Property Calculator — Improved Dec 2019
# calc> ddet(..w8x31) # not case sensitive 8.0 # # On assignment, now, the calculator # returns __str__(object) # the string representation of the object # # Therefore, # On assignment of an AISC shape the calculator # returns __str__(shape) # the string representation of the shape # calc > a = ..w8x31 # not […]
Structural Property Calculator on iPad/iPhone using Pythonista Oct 2019
# General use as a numerical calculator calc > a = 3 calc > b = 4 calc > c=(a**2+b**2)**0.5 # white space does not matter calc > a 3.0 calc > b 4.0 calc > c 5.0 calc > 5 + (30 * 3 ** 2) – 23/46 274.5 # Use with structural properties […]
AISC Bolt Shear — C Coefficient Jul 2019
ASCE 7-16 Kzt Calculation — with Chart Jul 2019
ESC = 2D Escarpment R2D = 2D Ridge H3D = 3D Hill
Interface — Easier Slider Access Jul 2019
One slider at a time: On the left side of the screen is a column of labels, Precisely under each label is an invisible button, The invisible button responds to a tap by the user, In response, a single slider is activated, Clear and intuitive! See screenshot sequence below Use the GESTURE DOWN swipe to […]
Calculated examples — AISC Bolt Shear Jun 2019
AISC Bolt Shear Capacity — Improved UI Jun 2019
Better UI feedback, for: Last altered slider – label font is red All other altered sliders – label font is blue Unaltered sliders – label font is black Changed text for CHART button Added SCREENSHOT button Added RESET button
AISC Bolt Shear Capacity (with video) Jun 2019
See updated UI. See VIDEO link. Works on iPhone or iPad Added ‘choice lists’ to the custom augmented slider class For example, the AISC hole type selection is based on a ‘choice list’. The charts are live overlays Plots capacity of all plates where 0.25″ <= PL_THK <= 2″ See whats-on-the-pythonista-menu-yep-sliders link. See sliders-in-pythonista link. […]
What’s on the Pythonista menu? Yep, sliders! Side dish of booleans, integers and floats Dec 2018
I built this app and am running this app on my iPad. Credit to: mikaelho / pythonista – gestures tdamdouni / Pythonista Pythonista / slider / SliderWithLabel_danrcook.py The video shows an app with 8 inputs — 2 integer, 4 float, 2 boolean. Numeric input is tedious — at best; slider input is easier and offers positive feedback. In this […]
Recent Comments