To find the tension, shear, and moment on a pinned parabolic arch with vertical loading using MATLAB, you can follow these steps:
main.m166 chars4 lines
y = a*x^2
to represent the arch shape, where y
is the height at a given position x
and a
is a constant.main.m234 chars4 lines
load = loading / archHeight
. This represents the amount of loading per unit length along the arch.main.m75 chars2 lines
reactionForce = distributedLoad * spanLength / 2
.main.m86 chars2 lines
main.m204 chars9 lines
main.m289 chars17 lines
By following these steps, you should be able to find the tension, shear, and moment on a pinned parabolic arch with vertical loading using MATLAB.
gistlibby LogSnag