Plaxis 2D
Plaxis 2D
Plaxis 2D
14.1 INTRODUCTION
PLAXIS has a facility for user-defined (UD) soil models. This facility allows users to
implement a wide range of constitutive soil models (stress-strain-time relationship) in
PLAXIS. Such models must be programmed in FORTRAN (or another programming
language), then compiled as a Dynamic Link Library (DLL) and then added to the UDSM
sub-folder of the PLAXIS program directory.
In principle the user provides information about the current stresses and state variables
and PLAXIS provides information about the previous ones and also the strain and time
increments. In the material data base of the PLAXIS input program, the required model
parameters can be entered in the material data sets.
Hint: Please note that the PLAXIS organization cannot be held responsible for any
malfunctioning or wrong results due to the implementation and/or use of
user-defined soil models.
The PLAXIS calculations program has been designed to allow for User-defined soil
models. There are mainly four tasks (functionalities) to be performed in the calculations
program:
• Initialisation of state variables
• Calculation of constitutive stresses (stresses computed from the material model at
certain step)
• Creation of effective material stiffness matrix
• Creation of elastic material stiffness matrix
These main tasks (and other tasks) have to be defined by the user in a subroutine called
'User_Mod'. In this subroutine more than one user-defined soil model can be defined. If a
UD soil model is used in an application, the calculation program calls the corresponding
task from the subroutine User_Mod. To create a UD soil model, the User_Mod subroutine
must have the following structure:
iMod = User-defined soil model number (This option allows for more
than one UD model, up to 10.)
Int = Current local stress point number (1..3 for 6-noded elements, or
1..12 for 15-noded elements)
Bulk_W = Bulk modulus of water for the current stress point (for undrained
calculations and consolidation)
In the terminology of the above parameters it is assumed that the standard type of
parameters is used, i.e. parameters beginning with the characters A-H and O-Z are
double (8-byte) floating point values and the remaining parameters are 4-byte integer
values.
The parameters IDTask to dEps and iPrjDir and iPrjLen are input parameters; The
values of these parameters are provided by PLAXIS and can be used within the
subroutine. These input parameters should not be modified (except for StVar0 in case
IDTask = 1). The parameters D to iTang and iAbort are output parameters. The values of
these parameters are to be determined by the user. In case IDTask = 1, StVar0 becomes
output parameter.
The user subroutine should contain program code for listing the tasks and output
parameters (IDTask = 1 to 6). After the declaration of variables, the User_Mod subroutine
must have the following structure (here specified in pseudo code):
Case IDTask of
1 Begin
{ Initialise state variables StVar0 }
End
2 Begin
{ Calculate constitutive stresses Sig (and Swp) }
End
3 Begin
{ Create effective material stiffness matrix D }
End
4 Begin
{ Return the number of state variables nStat }
End
5 Begin
{ Return matrix attributes NonSym, iStrsDep,
iTimeDep }
End
6 Begin
{ Create elastic material stiffness matrix De }
End
End Case
If more than one UD model is considered, distinction should be made between different
models, indicated by the UD model number iMod.
value of the state variables is read from the output file of the previous calculation step and
put in the StVar0 array. In this case it is not necessary to modify the StVar0 array.
However, if the previous calculation step does not contain information on the state
variables (for example in the very first calculation step), the StVar0 array would contain
zeros. For this case the initial value has to be calculated based on the actual conditions
(actual stress state) at the beginning of the step. Consider, for example, the situation
where the first state variable is the minimum mean effective stress, p' (considering that
compression is negative). If the initial stresses have been generated using the
K0 -procedure, then the initial effective stresses are non-zero, but the initial value of the
state variable is zero, because the initialization of this user-defined variable is not
considered in the K0 -procedure. In this case, part 1 of the user subroutine may look like:
1 Begin
{ Initialise state variables StVar0}
p = (Sig0[1] + Sig0[2] + Sig0[3] ) / 3.0
StVar0[1] = Min(StVar0[1] ,p)
End
G = 0.5*E/(1.0+v)
Fac = 2*G/(1.0-2*v) { make sure that v < 0.5 !! }
Term1 = Fac*(1-v)
Term2 = Fac*v
D[1,1] = Term1
D[1,2] = Term2
D[1,3] = Term2
D[2,1] = Term2
D[2,2] = Term1
D[2,3] = Term2
D[3,1] = Term2
D[3,2] = Term2
D[3,3] = Term1
D[4,4] = G
D[5,5] = G
D[6,6] = G
End
(By default, D will be initialized to zero, so the remaining terms are still zero; however, it is
a good habit to explicitly define zero terms as well.)
If undrained behaviour is considered (IsUndr = 1), then a bulk stiffness for water
(Bulk_W) must be specified at the end of part 3. After calling the user subroutine with
IDTask = 3 and IsUndr = 1, PLAXIS will automatically add the stiffness of the water to the
material stiffness matrix D such that: D[i =1..3, j =1..3] = D[i ,j ]+ Bulk_W. If Bulk_W is
not specified, PLAXIS will give it a default value of 100*Avg(D[i =1..3, j =1..3]).
iStrsDep = 0
iTimeDep = 0
iTang = 0
End
For NonSym = 0 only half of the global stiffness matrix is stored using a profile structure,
whereas for Nonsym = 1 the full matrix profile is stored.
For iStrsDep = 1 the global stiffness matrix is created and decomposed at the beginning
of each calculation step based on the actual stress state (modified Newton-Raphson
procedure).
For iTimeDep = 1 the global stiffness matrix is created and decomposed every time when
the time step changes.
For iTang = 1 the global stiffness matrix is created and decomposed at the beginning of
each iteration based on the actual stress state (full Newton-Raphson procedure; to be
used in combination with iStrsDep=1).
Total work
CSP =
Total elastic work
The elastic material stiffness matrix is required to calculate the total elastic work in the
definition of the CSP. The CSP equals unity if all the material is elastic whereas it
gradually reduces to zero when failure is approached.
The CSP parameter is used in the calculation of the global error. The global error is
defined as:
|unbalance force|
Global error =
|currently activated load|+ CSP ·|previously activated load|
The unbalance force is the difference between the external forces and the internal
reactions. The currently activated load is the load that is being activated in the current
calculation phase, whereas the previously activated load is the load that has been
activated in previous calculation phases and that is still active in the current phase.
Using the above definition for the global error in combination with a fixed tolerated error
results in an improved equilibrium situation when plasticity increases or failure is
approached. The idea is that a small out-of-balance is not a problem when a situation is
mostly elastic, but in order to accurately calculate failure state, safety factor or bearing
capacity, a stricter equilibrium condition must be adopted.
Part 6 of the user subroutine looks very similar to part 3, except that only elastic
components are considered here. It should be noted that the same variable D is used to
store the elastic material stiffness matrix, whereas in Part 3 this variable is used to store
the effective material stiffness matrix.
6 Begin
{ Create elastic material stiffness matrix D }
D[1,1] =
D[1,2] =
D[1,3] =
.....
D[6,6] =
End
iModel = User-defined soil model number to retrieve the name for (input
parameter)
• For GCC compiler, the following statement has to be included in the subroutine just
after the declaration of variables: NONE
In all cases USRMOD.DLL file will be created. It can be renamed to 'any' .dll. This file
should be placed in the udsm folder under the PLAXIS program directory, thereafter it
can be used together with the existing PLAXIS calculations program (PLASW.EXE in
PLAXIS 2D or PLASW3DF.EXE in PLAXIS 3D). Once the UD model is used, PLAXIS will
execute the commands as listed in the USRMOD.DLL file.
In order to compile as 64-bit, you need both a 32-bit compiled 'USRMOD.DLL' and a
64-bit compiled ' USRMOD64.DLL' file in the udsm folder under the PLAXIS program
directory. The last one only needs to contain the 'User_Mod' subroutine.
Debugging possibilities
When making computer programs, usually some time is spent to 'debug' earlier written
source code. In order to be able to effectively debug the user subroutine, there should be
a possibility for the user to write any kind of data to a file. Such a 'debug-file' is not
automatically available and has to be created in the user subroutine.
After the debug-file is created, data can be written to this file from within the user
subroutine. This can be done by using, for example, the availably written subroutines
(Section C).
Input of the model parameters for user-defined soil models can be done using the
PLAXIS material data base. In fact, the procedure is very similar to the input of
parameters for the existing PLAXIS models.
When creating a new material data set for soil and interfaces in the material data base, a
window appears with six tabsheets: General, Parameters, Groundwater, Thermal,
Interfaces, Initial Figure 14.1. A user-defined model can be selected from the Material
model combo box in the General tabsheet.
After inputting general properties, the appropriate UD model can be chosen from the
available models that have been found by PLAXIS Input.
The Parameters tabsheet shows two combo boxes; the top combo box lists all the DLLs
that contain valid UD models and the next combo box shows the models defined in the
selected DLL. Each UD model has its own set of model parameters, defined in the same
DLL that contains the model definition.
When an available model is chosen PLAXIS will automatically read its parameter names
and units from the DLL and fill the parameter table below.
Interfaces
The Interfaces tabsheet, Figure 14.2, contains the material data for interfaces.
Normally, this tabsheet contains the Rinter parameter. For user-defined soil models the
interface tabsheet is slightly different and contains the interface oedometer modulus,
ref
Eoed , and the interface strength parameters cinter ,ϕinter and ψinter . Hence, the interface
shear strength is directly given in strength parameters instead of using a factor relating
b. Input of parameters
Figure 14.1 Selection window
the interface shear strength to the soil shear strength, as it is the case in PLAXIS models.
In addition, two parameters are included to enable stress-dependency of the interface
stiffness according to a power law formulation:
ref σ 'n UD-Power
Eoed (σ 'n ) = Eoed (14.1)
UD-Pref
where UD-Power, is the rate of stress dependency of the interface stiffness, UD-Pref is
the reference stress level (usually 100 kN/m2 ) and σ 'n is the effective normal stress in the
interface stress point.
After having entered values for all parameters, the data sets can be assigned to the
corresponding soil clusters, in a similar way as for the existing material models in
PLAXIS. The user-defined parameters are transmitted to the calculation program and
appear for the appropriate stress points as Props(1..50) in the User_Mod subroutine.