3.1.7.20. OrthotropicRAConcrete Material
This command is used to construct an OrthotropicRotatingAngleConcrete material object. It is the abstract representation of an orthotropic concrete layer (plane stress) 2D material with a rotating angle and tangent formulation for cycling or reversed loading with damage. In this formulation, the constitutive model of concrete in each of the principal strain directions (\(\theta_{pd}\)) can be represented by a uniaxial concrete model (based on the work of Rojas et al., 2016).
Command
nDMaterial OrthotropicRAConcrete $matTag $conc $ecr $ec $rho <-damageCte1 $DamageCte1> <-damageCte2 $DamageCte2>
Parameter |
Type |
Description |
---|---|---|
$matTag |
integer |
unique tag identifyieng this material |
$conc |
integer |
tag of unixial simulating concrete |
$ecr |
float |
strain at tension cracking of the concrete |
$ec |
float |
strain at the compression strength of the concrete |
$rho |
float |
density |
$DamageCte1 |
float |
damage constant (optional: default = 0.14) |
$DamageCte2 |
float |
damage constant (optional: default = 0.6) |
The following recorders are available with the OrthotropicRAConcrete material.
Recorder |
Description |
---|---|
concrete_layer_stress |
in-plane panel concrete stresses \(\sigma^{c}_{xx}\), \(\sigma^{c}_{yy}\), \(\tau^{c}_{xy}\) |
strain_stress_concrete1 |
Uniaxial strain and stress of concrete strut 1 \(\bar{\varepsilon}_{11}\), \(\sigma^{c}_{11}\) |
strain_stress_concrete2 |
Uniaxial strain and stress of concrete strut 2 \(\bar{\varepsilon}_{22}\), \(\sigma^{c}_{22}\) |
Notes
where \(\epsilon_{c_{0}}\) is the strain at the peak resistant stress of the concrete in compression, \(\alpha_{1}\) represents the parameter $DamageCte1
, \(\alpha_{2}\) represents the parameter $DamageCte2
and \(\epsilon_{rec}\) is defined as
where \(\epsilon_{max}\) is the maximum strain recorded during cyclic loading and \(\epsilon_{min}\) is the minimum strain.
Examples
The following example constructs an OrthotropicRotatingAngleConcrete material with tag 2, composed of a uniaxial concrete material (e.g. Concrete02, Concrete06) of tag 1, a strain at tension cracking of 0.00008 and a strain at the compression strength of -0.002 for a density of 0.0.
Tcl Code
nDMaterial OrthotropicRAConcrete 2 1 0.00008 -0.002 0.0
Python Code
nDMaterial('OrthotropicRAConcrete', 2, 1, 0.00008, -0.002, 0.0)
REFERENCES:
Rojas, F., Anderson, J. C., Massone, L. M. (2016). A nonlinear quadrilateral layered membrane element with drilling degrees of freedom for the modeling of reinforced concrete walls. Engineering Structures, 124, 521-538. (link).
Palermo, D., Vecchio, F.J. (2003). Compression field modeling of reinforced concrete subjected to reversed loading: formulation. ACI Structural Journal, 100(5), 616–625. (link)
Code Developed by: F. Rojas (University of Chile), M.J. Núñez (University of Chile).