Author Topic: CSURf command  (Read 5041 times)

ibry

  • Full Member
  • ***
  • Posts: 52
CSURf command
« on: June 30, 2017, 07:46:42 AM »
Hello everyone,

I am trying to model a 3-D beam subjected to surface loading on top surface of the beam using displacement control.
But I don't know how to write the command udof after csurf, disp, and surface
CSURf
DISP
SURF
...
For everyone who knows the problem, please give me an example.
Thank you in advance.
« Last Edit: June 30, 2017, 07:53:16 AM by ibry »

Prof. S. Govindjee

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 1160
Re: CSURf command
« Reply #1 on: June 30, 2017, 08:08:07 AM »
Here is an example that moves the top of the beam 3.3 units in the 2-direction, when the top of the beam is located at 4 units in the 3-direction.  The extent in the 1- and 2-directions is [0,1] x [0,10].
Code: [Select]
csur
 disp,2
 surface
 1,0,0,4,3.3
 2,1,0,4,3.3
 3,1,10,4,3.3
 4,0,10,4,3.3
 

ibry

  • Full Member
  • ***
  • Posts: 52
Re: CSURf command
« Reply #2 on: June 30, 2017, 08:27:54 AM »
Thank you for your reply, Prof. Govindjee,

I have used the command as you said.
However, I found that all the results are zero.
I have checked it in the output file that the surface displacements are included.
Maybe did I miss something?

Regards.

Prof. S. Govindjee

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 1160
Re: CSURf command
« Reply #3 on: June 30, 2017, 08:38:52 AM »
You probably forgot to also set the boundary codes on the top surface.  Here is a complete input file.

ibry

  • Full Member
  • ***
  • Posts: 52
Re: CSURf command
« Reply #4 on: June 30, 2017, 08:43:24 AM »
Thank you very much, Prof. Govindjee.
Problem is solved.

Regards.