Author Topic: how input uniform distribute force load?  (Read 3912 times)

halleluja

  • Full Member
  • ***
  • Posts: 80
how input uniform distribute force load?
« on: December 02, 2019, 01:39:42 PM »
Hi everyone,

pls first see the picture in attachment where a distributed shearing load, F = 6.25 (per unit length) is applied to the left edge (amounting to a total vertical resultant force of intensity 6.25*16=100).

My question is how can i define this boundary condition? Can i use EFORce, such as
Code: [Select]
EFORce
  1 48.0 0.0 100.0

Best

Prof. S. Govindjee

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 1160
Re: how input uniform distribute force load?
« Reply #1 on: December 02, 2019, 03:20:02 PM »
If you want to use EFORce, then you will need to divide 100.0 by the number of nodes on the edge.  EFORce places the same load on each node that it finds.  Note however that if you use EFORce, then your load will not be "consistent" with a uniformly distributed load.  If you want consistent nodal loads for a uniformly distributed load, then you should use the CSURface command:
Code: [Select]
CSURface
  TANGential
  LINEar
  1 48.0 44.0  p
  2 48.0 60.0  p
where p is the load per unit length value.  If you want a parabolic end shear then use QUADratic instead of linear; see the manual for details.
« Last Edit: December 02, 2019, 03:22:52 PM by Prof. S. Govindjee »

halleluja

  • Full Member
  • ***
  • Posts: 80
Re: how input uniform distribute force load?
« Reply #2 on: December 03, 2019, 08:15:59 AM »
Thanks for your reply.

But still got problem, that the displacement of top right corner (node number 25) is negative in y-directoin which should be positive because the traction of the left edge is positive in y-direction.

In attachment you will find the input file.

Best

p.s. i use version feap 8.4
« Last Edit: December 03, 2019, 11:57:09 AM by halleluja »

Prof. S. Govindjee

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 1160
Re: how input uniform distribute force load?
« Reply #3 on: December 03, 2019, 09:31:45 PM »
Have you checked the loads in the output file to see if they are correct?  How about in the plot window using plot,boun and plot,load?
« Last Edit: December 04, 2019, 11:31:42 AM by Prof. S. Govindjee »

halleluja

  • Full Member
  • ***
  • Posts: 80
Re: how input uniform distribute force load?
« Reply #4 on: January 09, 2020, 05:55:40 AM »
Found where is the problem. If i add
Code: [Select]
BATCh
DT,,0.001
PROP
END
and do one more loop for solution
Code: [Select]
BATCh
LOOP,last,1000
TIME
LOOP,equi,99
TANG,,1
NEXT,equi
NEXT,last
END
then i got the right result. That means load should increase gently.