Skip to contents

tag: fracture_model

Usage

prj_fracture_model(
  type,
  normal_stiffness,
  shear_stiffness,
  penalty_aperture_cutoff,
  tension_cutoff,
  fracture_toughness = NULL,
  peak_normal_traction = NULL,
  friction_angle = NULL,
  dilatancy_angle = NULL,
  cohesion = NULL,
  nonlinear_solver = NULL
)

Arguments

type

string:

normal_stiffness

string:

shear_stiffness

string:

penalty_aperture_cutoff

string | double:

tension_cutoff

string | double:

fracture_toughness

Optional: string:

peak_normal_traction

Optional: string:

friction_angle

Optional: string:

dilatancy_angle

Optional: string:

cohesion

Optional: string:

nonlinear_solver

Optional: list:

Examples

prj_fracture_model(type = "LinearElasticIsotropic",
                      normal_stiffness = "Kn",
                      shear_stiffness = "Ks",
                      penalty_aperture_cutoff = 1e-05,
                      tension_cutoff = 1)
#> $type
#> [1] "LinearElasticIsotropic"
#> 
#> $normal_stiffness
#> [1] "Kn"
#> 
#> $shear_stiffness
#> [1] "Ks"
#> 
#> $penalty_aperture_cutoff
#> [1] 1e-05
#> 
#> $tension_cutoff
#> [1] 1
#> 
#> $fracture_toughness
#> NULL
#> 
#> $peak_normal_traction
#> NULL
#> 
#> $friction_angle
#> NULL
#> 
#> $dilatancy_angle
#> NULL
#> 
#> $cohesion
#> NULL
#> 
#> $nonlinear_solver
#> NULL
#> 
#> $xpath
#> [1] "processes/process/fracture_model"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_fracture_model"