Nothing
#' Potential energy functions used as examples in *MOSAIC Calculus*.
#'
#' These appear in the "Optimization & constraint" chapter.
#'
#' @param x1,y1,x2,y2,x3,y3 coordinates of the masses.
#'
#' @export
PE_fun1 <- function(x1, y1) {
abs(x1)^2.7 + abs(y1)^2.7 - 1 + # spring 1
abs(x1 - 2)^1.5 + abs(y1)^1.5 - 1 + #spring 2
9.8 *y1 + # gravity
abs(x1-3)^3 + abs(y1)^3 - 1 # spring 3
}
#' @rdname PE_fun1
#' @export
PE_fun2 <- function(x1,y1,x2,y2,x3,y3) {
L01sq <- x1^2 + y1^2 - 0.5
L12sq <- (x2-x1)^2 + (y2-y1)^2 - 0.5
L23sq <- (x3-x2)^2 + (y3-y2)^2 - 0.5
L34sq <- (x3 - 3.2)^2 + (y3 + 1.1)^2 - 0.5
gravity <- (y1 + y2 + y3)
0.8*(L01sq + L12sq + L23sq + L34sq) + 2*gravity
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.