# simply supported beam

**URL:** https://community.freefem.org/t/simply-supported-beam/3380
**Category:** General Discussion
**Created:** [July 4, 2024, 4:59am UTC](https://community.freefem.org/t/simply-supported-beam/3380 "2024-07-04T04:59:24Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Kevin](https://avatars.discourse-cdn.com/v4/letter/k/2acd7d/32.png) [@Kevin](https://community.freefem.org/u/Kevin)
#### Post date: [July 4, 2024, 4:59am UTC](https://community.freefem.org/t/simply-supported-beam/3380/1 "2024-07-04T04:59:24Z")

</div>

Good day, I am trying to make a simulation of the elastic analysis of a steel beam simply supported with a point load in the program, to make the review with my teachers we observed that the data are fine, but not having experience in programming to run the program the beam is not deflected, we do not see that react to which it is subjected, I would like to support me or explain my mistake to understand more of the program.

 ![Captura de pantalla 2024-07-03 214329](https://canada1.discourse-cdn.com/flex030/uploads/freefem/original/2X/0/06f9c8a4cdd1fde714d4626c768a48afa117518a.png)

---

<div class="post-metadata">

### Author: ![fb77](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.freefem.org/fb77/32/3796_2.png) [@fb77](https://community.freefem.org/u/fb77)
#### Post date: [July 9, 2024, 12:36pm UTC](https://community.freefem.org/t/simply-supported-beam/3380/2 "2024-07-09T12:36:51Z")

</div>

Your integral `-int2d(Th)(P*(x==L/2)*vv)` is not seen during the computation since the set where x==L/2 has zero area.  
Instead you can define a line  
`border gammaload(t=0.,1.){x=0.5*L;y=t*H;label=5;};`  
and integrate on it as `int1d`  
`-int1d(Th,5)(P*vv)`  
This gives  
[beam.edp](https://community.freefem.org/uploads/short-url/sd7clF8Ru3TYvs7EEHYDQaOKpOh.edp) (1.1 KB)  
I have put zero displacement on the left and right boundaries.
