Adding a new material to opensees

For developers writing C++, Fortran, Java, code who have questions or comments to make.

Moderators: silvia, selimgunay, Moderators

Post Reply
rjaeger
Posts: 102
Joined: Thu Aug 31, 2006 9:57 pm
Location: UC Davis

Adding a new material to opensees

Post by rjaeger »

Hello,

I'm working on adding a material to OpenSees and have a few questions about trialstress, trialstrain, commitstress, and commitstrain.

1)We begin at a given initial state and the loading given to the elements is then converted to some TrialStrain. How is the TrialStrain value determined for load controlled integration?

2)If the material receives a TrialStrainIncr and the test provided is not passed (i.e. the current state is not converged to a satisfactory level), should the TrialStrain be stored as TrialStrain_new = TrialStrainIncr + TrialStrain_old? Does the same go with TrialStress?

3)Is OpenSees using engineering strain or true strain?

4)Should the stiffness tangent be updated prior to the first step?

Sorry for all the questions
-Robbie
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk »

the elements, typically when they have been notified that the nodes have moved in the update() will cause the new strain to be determined at the materials and the setTrialStrain() or setTrial() is invoked.

at the end of each anaylsis step one of either commit(), if analysis was successfull, or revertToLastCommit(), if analysis failed, are invoked.

which strain is used depends on the element.

you need to ensure that getTangent() returns the correct initial tangent. Do wahetever you want to ensure this.
rjaeger
Posts: 102
Joined: Thu Aug 31, 2006 9:57 pm
Location: UC Davis

Post by rjaeger »

Thank you Frank
hellojikir
Posts: 10
Joined: Tue Apr 15, 2008 6:38 am

Post by hellojikir »

:D :D :D :D






ImageImageImageImageImageImageImageImageImageImage
Post Reply