FEAP User Forum
FEAP => Input File Issues => Topic started by: halleluja 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
EFORce
1 48.0 0.0 100.0
Best
-
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:
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.
-
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
-
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?
-
Found where is the problem. If i add
BATCh
DT,,0.001
PROP
END
and do one more loop for solution
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.