Calculating Shear Force and Bending Moment

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
zaakir
Messages
2
Reaction score
0
hi all

Basically I need to find the shear force and bending moment of a beam using octave. The length of the beam as well as forces and their distances are given. However the SF and BM must be calculated at every o.ooo5m. The forces can be Point Loads or Uniform Distributed Loads and there can be many forces of each type.

The data is given in a matrix eg:[ 2000N 5m] or [2000N/m 5m 10m].

This is what I have so far but it does not seem to be working out:

Positions = 0:0.0005:BeamLength

%Shear force from support reaction
ReactionShearForce = -ReactionForce

%shear force from PointLoads
for y = 1:1:length(Positions)
x = Position(1,y)
if x > PointLoads(:,2)
PointLoadsSection = PointLoads(PointLoads(:,2)>x,1)
end
end
 
Physics news on Phys.org
Do you know how to do shear force and bending moment diagrams for simple loading cases and by hand calculation ?
 
Nidum said:
Do you know how to do shear force and bending moment diagrams for simple loading cases and by hand calculation ?
Yes I do but the problem I am facing is that the code has to be written where there can be any number of Point Loads and/or Distributed Loads and I am not sure how to translate it into code.
 
Forget the actual coding pro tem .

Start by preparing a flow chart for the calculation and decision making processes involved .

If you don't know about flow charts have a quick look here http://www.farshadoo.com/ic/tutorials/flowchart-diagrams.php .
 
Is this a homework problem ?

The 0,0005 metre length increment as given in problem statement is ridiculously small to use for calculations on a beam several metres long . Has there been a typing error somewhere ?

Please come back if you need help with the flow chart .