Materials
Soil materials
Soil material properties are specified using a dictionary, with the variable name used by Plaxis to designate the property as the dictionary key. The key recognition is case insensitive and disregards both spaces and hyphens. The properties that can be set depend on the material and drainage type. The supported material types are: 'linear elastic’, 'mohr coulomb', ‘hardening strain’ and 'hs small'.
Linear elastic
Linear elastic soil materials are specified by a dictionary whit the following fields:
[1]:
material = {}
material['SoilModel'] = 'linear elastic'
material["DrainageType"] = 'Drained'
material['Eref'] = 728e3 # kPa
material['nu'] = 0.4 # Poisson
material['gammaSat'] = 20 # kN/m3
material['gammaUnsat'] = 17 # kN/m3
Mohr-Coulomb
Mohr-Coulomb soil materials are specified by a dictionary whit the following fields:
[2]:
# Mohr-Coulomb soil material
material = {}
material['SoilModel'] = 'mohr-coulomb'
material["DrainageType"] = 'Drained'
material['gammaSat'] = 20 # kN/m3
material['gammaUnsat'] = 17 # kN/m3
material['e0'] = 0.2
material['Eref'] = 4e4 # kN
material['nu'] = 0.2
material['cref'] = 0 # kPa
material['phi'] = 35 # deg
material['psi'] = 0 # deg
Hardening soil
Hardening soil materials are specified by a dictionary whit the following fields:
[3]:
material = {}
material['SoilModel'] = 'hardening soil'
material["DrainageType"] = 'Drained'
material['gammaSat'] = 17 # kN/m3
material['gammaUnsat'] = 20 # kN/m3
material['e0'] = 0.2
material['E50ref'] = 4e4 #kPa
material['Eoedref'] = 4e4 #kPa
material['Euref'] = 1.2e5 #kPa
material['powerm'] = 0.5
material['c'] = 0 #kPa
material['phi'] = 32 #deg
material['psi'] = 2 #deg
material['nu'] = 0.2
HS-small
Hardening soil materials are specified by a dictionary whit the following fields:
[4]:
material = {}
material['SoilModel'] = 'hs-small'
material["DrainageType"] = 'Drained'
material['gammaSat'] = 17 # kN/m3
material['gammaUnsat'] = 20 # kN/m3
material['e0'] = 0.2
material['E50ref'] = 4e4 # Kpa
material['Eoedref'] = 4e4 # Kpa
material['Euref'] = 1.2e5 # Kpa
material['powerm'] = 0.5
material['c'] = 0 # Kpa
material['phi'] = 32 # deg
material['psi'] = 2 # deg
material['nu'] = 0.2
Dynamic properties
Dynamic material properties can be set under an ultimate Plaxis license, otherwise an error will be raised. The input method for the dynamic properties is controlled through the 'RayleighDampingInputMethod' flag. By default the flag is set to 'SDOF equivalent'. The alternatives are:
[5]:
material['RayleighDampingInputMethod'] = 'Direct'
material['RayleighAlpha'] = 0.57
material['RayleighBeta'] = 0.20
[6]:
material['RayleighDampingInputMethod'] = 'SDOF equivalent'
material['xi1'] = 0.05
material['xi2'] = 0.08
material['f1'] = 0.1 # Hz
material['f2'] = 1.2 # Hz
Interface properties
The interface stiffness is set with the 'InterfaceStiffnessDetermination', 'knInter' and 'ksInter' properties. The interface strength is controlled through the 'InterfaceStrengthDetermination', 'Rinter', 'RinterResidual' and 'GapClosure' properties. Not all of these properties are available at the same time, depending on values of 'InterfaceStiffnessDetermination' and 'InterfaceStrengthDetermination'.
Initial stress conditions
Initial stress conditions are controlled through the 'K0Determination', 'K0PrimaryIsK0Secondary', 'K0Primary' and 'K0Secondary'. For some maateirlas 'OCR' and 'POP' are also available.
Plate materials
Plate material properties are specified using a dictionary, with the variable name used by Plaxis to designate the property as the dictionary key. The key recognition is case insensitive and disregards both spaces and hyphens. The properties that can be set depend on the material type. The supported material types are: 'Elastic', "Elastoplastic' and "Elastoplastic (M-kappa)'.
[7]:
plate_material = {}
plate_material['MaterialType'] = 'Elastic'
plate_material['EA'] = 7.73e6 # KPa m
plate_material['EI'] = 0.3**2 / 12 * 7.73e6 # KPa m
plate_material['d'] = 0.3 # m
plate_material['nu'] = 0.4
Dynamic properties
Dynamic material properties can be set under an ultimate Plaxis license, otherwise an error will be raised. The input method for the dynamic properties is controlled through the 'RayleighDampingInputMethod' flag. By default the flag is set to 'SDOF equivalent'. The alternatives are:
[8]:
plate_material['RayleighDampingInputMethod'] = 'Direct'
plate_material['RayleighAlpha'] = 0.57
plate_material['RayleighBeta'] = 0.20
[9]:
plate_material['RayleighDampingInputMethod'] = 'SDOF equivalent'
plate_material['xi1'] = 0.05
plate_material['xi2'] = 0.08
plate_material['f1'] = 0.1 # Hz
plate_material['f2'] = 1.2 # Hz
Plate stiffness calculation
Plates material are specified per m of cross-section width. Therefore, the stiffness parameters must comply with the following relations. The equivalent thickness \(d\) is related to the axial and flexural stiffness by:
The reference shear modulus:
An alternative way to define a plate material is using the concrete function, where the properties of the plate are computed form the compressive strength of concrete as:
The padtest.concrete method computes the plate material stiffness properties from the tihckness and compressive strength:
[10]:
import padtest
fc = 30 # MPa
gamma = 24 #kN/m3
d = 0.4
padtest.concrete(gamma, d, fc=30, poisson=0.3)
[10]:
{'MaterialType': 'Elastic',
'Isotropic': True,
'nu': 0.3,
'EA1': 10297184.081097124,
'EI': 137295.78774796167,
'w': 9.600000000000001}
Or from the plate thickness and Young’s modulus:
[11]:
padtest.concrete(gamma, d, young_modulus=30e5)
[11]:
{'MaterialType': 'Elastic',
'Isotropic': True,
'nu': 0.4,
'EA1': 1200000.0,
'EI': 16000.000000000005,
'w': 9.600000000000001}