P-Y Curves

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

Post Reply
billu
Posts: 25
Joined: Tue Feb 16, 2016 10:13 pm
Location: Hanyang University

P-Y Curves

Post by billu »

Hi everyone..I hope you all will be fine.
I am studying example on opensees website "Laterally Loaded Pile Foundation".
I am stuck in generating p-y curves from output of opensees..Can anyone guide me that how can i extract p-y curves from opensees?? I am pasting the link of the example problem.
http://opensees.berkeley.edu/wiki/index ... Foundation
In this example (API sand) is coded in the program.I know my questions are quite basic.But i am new to opensees..Please answer about this issue.Thanks in advance.
emjac
Posts: 41
Joined: Sun Oct 05, 2014 2:23 pm
Location: École polytechnique de Montréal

Re: P-Y Curves

Post by emjac »

Take a look at your recorders:

Around line 220 in staticBNWFpile.tcl you will see the following lines:
# record displacements at pile nodes
recorder Node -file pileDisp.out -time -nodeRange 201 [expr 200+$nNodePile] -dof 1 2 3 -dT $timeStep disp
# record reaction force in the p-y springs
recorder Node -file reaction.out -time -nodeRange 1 $nNodePile -dof 1 -dT $timeStep reaction
# record element forces in pile elements
recorder Element -file pileForce.out -time -eleRange 201 [expr 200+$nElePile] -dT $timeStep globalForce

So OpenSees is outputting node displacements to a file called pileDisp.out and the forces in the pile elements to a file called pileForce.out. Take a look here to figure out which column applies to which DOF etc. http://opensees.berkeley.edu/wiki/index ... e_Recorder and http://opensees.berkeley.edu/wiki/index ... t_Recorder

You ought to be able to construct your graphs from these files.
Post Reply