Model dentin serial sections
Function mds
models tooth dentin microstructures and horizontal sectioning patterns. The changing dentin growth rates, oblique dentin growth layers, and dentin outer shape are modeled with pre-determined parameters and user's manual adjustments.
## Default S3 method: mds(tooth, rt.y = 1, ecj = NULL, section.y, factor.GL = 1, n.GL = 500, thin = FALSE)
tooth |
Character scalar showing the target tooth type. Only |
rt.y |
A positive y-value of dentin root tip in mm. Dentin horn is set on the geometric origin, and the longitudinal central axis of dentin equals the y-axis. |
ecj |
|
section.y |
Vector of y-values for serial sections. Please sandwich by the start and end points for each section, so that the length of |
factor.GL |
Numeric vector to adjust slope of dentin growth layers (GLs). A product of |
n.GL |
Scalar indicating number of GLs. Default is 500. |
thin |
If dentin sample was sliced out into a longitudinal thin plate, put |
The mds
is a function to model tooth dentin microstructures and horizontal serial-sectioning patterns for human permanent incisors, canines, and molars. The changing dentin growth rates, oblique dentin growth layers, and curved dentin outer shape are considered in this model. Users can adjust these parameters for individual tooth dentin samples. The details of this model are described in Tsutaya (in prep).
parea |
Matrix of weighted proportion (volume contribution) for each GL included in each section. The row and column correspond to GLs and sections, respectively. |
included |
List containing the growth line numbers that are included in each section. The crown-most section has the smallest number as a list element. |
ge.x |
Numeric vector of the standardized x-value of cross-section between growth lines and crown dentin outer shape. |
ge.y |
Numeric vector of the standardized y-value of cross-section between growth lines and crown dentin outer shape. |
gd.x |
Numeric vector of the standardized x-value of cross-section between growth lines and root dentin outer shape. |
gd.y |
Numeric vector of the standardized y-value of cross-section between growth lines and root dentin outer shape. |
ecj.x |
Scalar of the standardized x-value of ECJ. |
ecj.y |
Scalar of the standardized y-value of ECJ. |
m.y |
Numeric vector of the standardized y-value of cross-section between growth lines and longitudinal central axis of tooth (i.e., y-axis). |
n.y |
Numeric vector of the standardized y-value of cross-section between sectioning planes and longitudinal central axis of tooth (i.e., y-axis). |
EShape |
Function describing the crown dentin outer shape. |
DShape |
Function describing the root dentin outer shape. |
Gcurve |
Function describing the tooth dentin growth lines. |
call |
The matched call. |
Takumi Tsutaya developed this model.
Tsutaya T. in prep. Blurred time resolution of tooth dentin serial sections.
## 18 sections for 18 mm lateral incisor l18_I2_s18.mds <- mds( tooth = "I", rt.y = 18, section.y = 0:18, n.GL = 100) # Plot tooth dentin anatomy. plot(l18_I2_s18.mds) ## Example of the first molar of ST61 from the Unseiji temple. unseiji_ST61_M1.mds <- mds( tooth = "M1", rt.y = unseiji_ST61_M1$rt.y, ecj = unseiji_ST61_M1$ecj, section.y = unseiji_ST61_M1$section.y, n.GL = 100) # Plot tooth dentin anatomy. plot(unseiji_ST61_M1.mds) ## Irregular sectioning for 20 mm canine. l20_C_irr.mds <- mds( tooth = "C", rt.y = 20, section.y = c(2:14, 15, 17, 19), n.GL = 100) # Plot tooth dentin anatomy. plot(l20_C_irr.mds)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.