XPalm is a process-based model for simulating oil palm (Elaeis guineensis) growth and development. The model simulates key physiological processes including:
- Phenology and development
- Carbon assimilation and allocation
- Water balance
- Reproductive organ development
- Yield components
XPalm implements a multiscale approach, modeling processes at different organizational levels:
Scene: Environment and canopy-level processes Plant: Whole palm processes Phytomer: Individual growth unit processes Organ: Leaf, internode and reproductive organ processes
The model uses a daily time step and requires standard meteorological inputs (temperature, radiation, rainfall...).
The model is implemented in the Julia programming language, which is a high-level, high-performance dynamic programming language for technical computing.
The package can be installed using the Julia package manager. From the Julia REPL, type ]
to enter the Pkg REPL mode and run:
pkg> add https://github.com/PalmStudio/XPalm.jl
To use the package, type the following in the Julia REPL:
using XPalm
From the Julia REPL, load the package:
using XPalm
The easiest way to run the model is to use the template notebook provided by the package. To run the notebook, you need to install the Pluto package first by running ] add Pluto
. Then, you can run the notebook using the following commands in the Julia REPL:
using Pluto, XPalm
Pluto.run(joinpath(dirname(pathof(XPalm)), "..", "notebooks", "XPalm.jl")
XPalm.notebook("xpalm_notebook.jl")
This command will create a new Pluto notebook (named "xpalm_notebook.jl") in the current directory, and open it automatically for you.
Once closed, you can re-open this notebook by running the same command again. If the file already exists, it will be opened automatically.
Run a simple simulation using default parameters and meteorological data:
using XPalm, CSV, DataFrames
# Load example meteorological data
meteo = CSV.read(joinpath(dirname(dirname(pathof(XPalm))), "0-data/meteo.csv"), DataFrame)
# Run simulation
df = xpalm(meteo;
vars = Dict("Scene" => (:lai,)), # Request LAI as output
sink = DataFrame
)
!!! note
You need to install the CSV
and DataFrames
packages to run the example above. You can install them by running ] add CSV DataFrames
.
Customize palm parameters and request multiple outputs:
# Read the parameters from a YAML file (provided in the example folder of the package):
using YAML
parameters = YAML.load_file(joinpath(dirname(dirname(pathof(XPalm))), "examples/xpalm_parameters.yml"))
# Create palm with custom parameters
p = Palm(parameters=parameters)
# Run simulation with multiple outputs
results = xpalm(
meteo,
DataFrame,
vars = Dict(
"Scene" => (:lai, :et0),
"Plant" => (:leaf_area, :biomass_bunch_harvested),
"Soil" => (:ftsw,)
),
palm = p,
)
You can also import the parameters from a JSON file using the JSON
package:
using JSON # You first need to install the JSON package by running `] add JSON`
params = open("examples/xpalm_parameters.json", "r") do io
JSON.parse(io; dicttype=Dict{Symbol,Any}, inttype=Int64)
end
!!! note
The configuration file must contain all the parameters required by the model. Template files are available from the examples
folder.
The models are available from the Models
submodule. To import all models, you can use the following command:
using XPalm
using XPalm.Models
The package provides an example script in the examples
folder. To run it, you first have to place your working directory inside the folder, and then activate its environement by running ] activate .
.
You can also find example applications in the Xpalm applications Github repository.
This work is supported by the PalmStudio research project, funded by the SMART Research Institute and CIRAD.