R Under development (unstable) (2025-07-25 r88451 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(chapensk) Loading required package: Bessel > > # graphics parameters > width <- 10 > height <- 5 > mar <- c(5.1, 4.6, 0.2, 0.6) > mai <- c(1.02, 0.82, 0.04, 0.04) > family <- "Helvetica" > pointsize <- 12 > lwd <- 1 > > if (interactive()) { + if (exists("outputDevice")) { + if (outputDevice == "pdf") pdf(file = "man/figures/critical_data.pdf", width = width, height = height, family = family, pointsize = pointsize) + if (outputDevice == "svg") svg(file = "man/figures/critical_data.svg", width = width, height = height, family = family, pointsize = pointsize) + } + split.screen(figs = c(1, 2)) + } > > if (interactive()) { + screen(1) + } > par(mai = mai, mar = mar) > np <- subset(gas, dipole_moment == 0) > plot(np$epsk, np$Tc, + xlim = c(0, 600), ylim = c(0, 700), + xlab = expression(epsilon / italic(k) ~ "[K]"), + ylab = "Critical temperature / [K]", + ) > text(np$epsk, np$Tc, np$name, pos = 4, cex = 0.7, col = "blue") > abline(a = 0, b = 1.321) > if (interactive()) { + legend("top", bty = "n", legend = "(a)") + screen(2) + } > x <- 0.001 / pkg.env$Na * ((1e-10 * np$sigma)^(-3)) > y <- np$rhoc > par(mai = mai, mar = mar) > plot(x, np$rhoc, + xlim = c(0, 60), + ylim = c(0, 16), + xlab = expression(1 / (sigma^3) / Na ~ "[mol/l]"), + ylab = "Critical density / [mol/l]", + ) > text(x, np$rhoc, np$name, pos = 4, cex = 0.7, col = "blue") > abline(a = 0, 0.316) > > if (interactive()) { + legend("top", bty = "n", legend = "(b)") + close.screen() + dev.off() + } > > proc.time() user system elapsed 0.79 0.06 0.84