Calculating Shear Force and Bending Moment

Click For Summary
SUMMARY

This discussion focuses on calculating shear force and bending moment for a beam using Octave, specifically at increments of 0.0005m. The user seeks assistance in coding for both Point Loads and Uniform Distributed Loads, given in a matrix format such as [2000N 5m] or [2000N/m 5m 10m]. The conversation highlights the need for a flow chart to outline the calculation process and decision-making, while also questioning the practicality of the 0.0005m increment for long beams.

PREREQUISITES
  • Understanding of shear force and bending moment concepts
  • Familiarity with Octave programming language
  • Knowledge of flow chart creation for algorithm design
  • Experience with matrix data structures in programming
NEXT STEPS
  • Research how to implement shear force and bending moment calculations in Octave
  • Learn about flow chart design for engineering calculations
  • Study the effects of load types on shear force and bending moment diagrams
  • Explore best practices for numerical methods in structural analysis
USEFUL FOR

Structural engineers, civil engineering students, and programmers working on structural analysis simulations will benefit from this discussion.

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
 
Engineering 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 .
 

Similar threads

  • · Replies 11 ·
Replies
11
Views
3K
Replies
4
Views
5K
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 5 ·
Replies
5
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K