Search found 4 matches
- Tue May 08, 2012 11:54 pm
- Forum: OpenSees.exe Users
- Topic: Reg. 3D nDMaterial suitable for prestress concrete
- Replies: 10
- Views: 7773
Re: Reg. 3D nDMaterial suitable for prestress concrete
The DruckerPrager material model implemented in opensees is explained in the openseeswiki webpage: http://opensees.berkeley.edu/wiki/index.php/Drucker_Prager The elastic paramters are: k,G bulk modulus: k=E/(3*(1-2*ni)) Shear modulus: G=E/(2*(1+ni)) The yield surface parameters are: sigmaY,rho sigma...
- Mon Feb 27, 2012 2:23 pm
- Forum: OpenSees.exe Users
- Topic: Reg. 3D nDMaterial suitable for prestress concrete
- Replies: 10
- Views: 7773
Re: Reg. 3D nDMaterial suitable for prestress concrete
I can suggest you to use the Drucker Prager material model. You can have fair estimations in case of monotonic analysis, whereas it is not suitable for cyclic analysis. Here you have the link to opensees wiki: http://opensees.berkeley.edu/wiki/index.php/Drucker_Prager With some colleagues, I have im...
- Mon Feb 27, 2012 1:48 pm
- Forum: OpenSees.exe Users
- Topic: How to model a nonlinear shell element in OS
- Replies: 10
- Views: 8601
Re: How to model a nonlinear shell element in OS
The ShellNL is a Nine-node Lagrangian element. It does not include geometrical nonlinearity. It can be used with nonlinear material. I checked few lines of the code posted by jkbgbr and I found problems with node numbering that are sufficient to produce errors and need to be addressed. As an example...
- Fri Mar 05, 2010 3:16 pm
- Forum: Framework
- Topic: Error in MembranePlateFiberSection.cpp
- Replies: 0
- Views: 1719
Error in MembranePlateFiberSection.cpp
I found an error in MembranePlateFiberSection.cpp
At line 372 it is written:
tangent(0,3) += -z*dd(0,1) ;
It sould be
tangent(0,4) += -z*dd(0,1) ;
This can lead to problems in executing opensees.exe due to the unassignment of the "tangent(0,4)".
At line 372 it is written:
tangent(0,3) += -z*dd(0,1) ;
It sould be
tangent(0,4) += -z*dd(0,1) ;
This can lead to problems in executing opensees.exe due to the unassignment of the "tangent(0,4)".