Skip to content

Commit dd7f8d5

Browse files
committed
Fix the header and add all new materials
1 parent e6eeb68 commit dd7f8d5

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

docs/src/dev_materials.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Materials
22

3-
!!! warning "Work in progress"
4-
This page is currently worked on.
3+
!!! warning "Draft & Work in Progress"
4+
This documentation is a draft and work in progress. It will be extended and improved in the future.
55

66
The selected material specifies, which peridynamic formulation is employed in calculations.
77

@@ -11,7 +11,9 @@ The selected material specifies, which peridynamic formulation is employed in ca
1111
- [`DHBBMaterial`](@ref): Dual-horizon bond-based peridynamics.
1212
- [`OSBMaterial`](@ref): Ordinary state-based peridynamics, also called linear peridynamic solid (LPS).
1313
- [`CMaterial`](@ref): Correspondence formulation.
14-
- [`CRMaterial`](@ref): Correspondence formulation stress rotation for objectivity enforcement.
14+
- [`CRMaterial`](@ref): Correspondence formulation with stress rotation for objectivity enforcement.
15+
- [`RKCMaterial`](@ref): Reproducing kernel peridynamics with bond-associated higher-order integration.
16+
- [`RKCRMaterial`](@ref): Reproducing kernel peridynamics with bond-associated higher-order integration with stress rotation for objectivity enforcement.
1517
- [`BACMaterial`](@ref): Bond-associated correspondence formulation of Chen and Spencer.
1618
- [`CKIMaterial`](@ref): Continuum-kinematics-inspired peridynamics.
1719

docs/src/dev_multithreading_mpi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Multithreading & MPI
22

3-
!!! warning "Work in progress"
4-
This page is currently worked on.
3+
!!! warning "Draft & Work in Progress"
4+
This documentation is a draft and work in progress. It will be extended and improved in the future.
55

66
Multithreading and MPI are implemented based on a similar approach. The body is split into several chunks, that each have their own process.
77
```@raw html

docs/src/dev_solvers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Time solvers
22

3-
!!! warning "Work in progress"
4-
This page is currently worked on.
3+
!!! warning "Draft & Work in Progress"
4+
This documentation is a draft and work in progress. It will be extended and improved in the future.
55

66
## VelocityVerlet
77

docs/src/dev_systems.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Systems
22

3-
!!! warning "Work in progress"
4-
This page is currently worked on.
3+
!!! warning "Draft & Work in Progress"
4+
This documentation is a draft and work in progress. It will be extended and improved in the future.
55

66
Systems are the backbone of the simulations.
77
They contain all the required pre-defined data structures (e.g. bonds, point-families, interactions, ...).

src/discretization/body.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ Construct a `Body` for a peridynamics simulation.
1212
- [`OSBMaterial`](@ref): Ordinary state-based peridynamics, also called linear
1313
peridynamic solid (LPS).
1414
- [`CMaterial`](@ref): Correspondence formulation.
15-
- [`CRMaterial`](@ref): Correspondence formulation stress rotation for objectivity
15+
- [`CRMaterial`](@ref): Correspondence formulation with stress rotation for objectivity
1616
enforcement.
17+
- [`RKCMaterial`](@ref): Reproducing kernel peridynamics with bond-associated
18+
higher-order integration.
19+
- [`RKCRMaterial`](@ref): Reproducing kernel peridynamics with bond-associated
20+
higher-order integration with stress rotation for objectivity enforcement.
1721
- [`BACMaterial`](@ref): Bond-associated correspondence formulation of Chen and Spencer.
1822
- [`CKIMaterial`](@ref): Continuum-kinematics-inspired peridynamics.
1923
- `position::AbstractMatrix`: A `3×n` matrix with the point position of the `n` points.

0 commit comments

Comments
 (0)