freundlich_model: Freundlich Isotherm Model

View source: R/Isotherms.R

freundlich_modelR Documentation

Freundlich Isotherm Model

Description

Freundlich isotherm describes adsorption on heterogeneous surfaces and assumes that the stronger binding sites are occupied first (Freundlich, 1907). It is represented by: Q = Kf * Ce^(1/n) where Kf is the Freundlich constant related to adsorption capacity and n indicates adsorption intensity. https://doi.org/10.1002/ange.19070201805

Usage

freundlich_model(Ce, Qe)

Arguments

Ce

Numeric vector of equilibrium concentrations.

Qe

Numeric vector of amount adsorbed.

Value

A named list of Freundlich parameters and model details.

See Also

Other linear: bet_model(), langmuir_model(), temkin_model()

Examples

Ce <- c(1, 2, 3, 4, 5)
Qe <- c(0.8, 1.5, 2.1, 2.6, 2.9)
result <- freundlich_model(Ce, Qe)
print(result[1:2])
print(result$`Model Summary`)
print(result$Plot)

AdsorpR documentation built on Sept. 2, 2026, 5:06 p.m.