Skip to content

Commit

Permalink
Merge pull request #19 from ClapeyronThermo/vini/rename
Browse files Browse the repository at this point in the history
corrected isotherm data path
  • Loading branch information
viniviena authored Oct 23, 2024
2 parents 82af34d + dc9d679 commit 9454dbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions docs/src/tutorials/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ In this tutorial, we will go through a typical workflow for processing and analy
5. **Estimating multicomponent adsorption loading** using the Ideal Adsorbed Solution Theory (IAST).


## Workflow

For this tutorial, we will work with a binary system consisting of ethane and ethylene. The goal is to investigate their adsorption properties in DUT-8, a material known for being ethane-selective.

This case study is based on the research presented in the following paper:
Expand All @@ -27,8 +25,8 @@ Let's read and visualize the isotherms at the different temperatures.

```@example fitting
using Plots, DelimitedFiles, Langmuir
ethane_data_path = joinpath(@__DIR__, "sample_data\\ethane_tpl_data.csv")
ethylene_data_path = joinpath(@__DIR__, "sample_data\\ethylene_tpl_data.csv")
ethane_data_path = joinpath(@__DIR__, "sample_data/ethane_tpl_data.csv")
ethylene_data_path = joinpath(@__DIR__, "sample_data/ethylene_tpl_data.csv")
ethane_data = readdlm(ethane_data_path, ',')
P_ethane = ethane_data[:, 2]*1e5
T_ethane = ethane_data[:, 1]
Expand Down
2 changes: 1 addition & 1 deletion src/models/freundlich.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- `K₀::T`: Affinity parameter at T → ∞, `[1/Pa]`
- `f₀::T`: Surface heterogeneity parameter at T → ∞, `[-]`
- `β::T`: Surface heterogeneity coefficient (K)
- `β::T`: Surface heterogeneity coefficient `[K]`
- `E::T`: Adsorption energy, `[J/mol]`
## Description
Expand Down

0 comments on commit 9454dbd

Please sign in to comment.