read_dual_pam_single_channel_p700_data: Read and Process DualPAM Data Single Chanel Mode P700

View source: R/device_dual_pam_single_channel_p700.R

read_dual_pam_single_channel_p700_dataR Documentation

Read and Process DualPAM Data Single Chanel Mode P700

Description

Reads raw CSV files generated by DualPAM software, calculates electron transport rate (ETR) values for Photosystem I, and returns a universal dataset.

Usage

read_dual_pam_single_channel_p700_data(
  csv_path,
  remove_recovery = TRUE,
  etr_factor = 0.84,
  fraction_photosystem_I = 0.5,
  fraction_photosystem_II = 0.5
)

Arguments

csv_path

File path to the CSV file.

remove_recovery

Logical. Removes recovery measurements if TRUE. Default is TRUE.

etr_factor

Numeric. Factor for ETR calculation. Default is 0.84.

fraction_photosystem_I

Numeric. Relative distribution of absorbed PAR to photosystem I. Default is 0.5.

fraction_photosystem_II

Numeric. Relative distribution of absorbed PAR to photosystem II. Default is 0.5.

Details

Calculates ETR using:

\text{ETR} = \text{PAR} \cdot \text{ETR-Factor} \cdot \text{Fraction of Photosystem (I)} \cdot \text{Yield (I)}

A detailed documentation can be found under https://github.com/biotoolbox/pam?tab=readme-ov-file#read_dual_pam_data

Value

A data.table containing:

  • par: Photosynthetically active radiation.

  • yield_1: Yield for photosystem I

  • yield_2: NA

  • etr_1: Calculated ETR for photosystem I

  • etr_2: NA

References

Heinz Walz GmbH. (2024). DUAL-PAM-100 DUAL-PAM/F MANUAL, 5th Edition, April 2024, Chapter 7 (pp. 162-172). Heinz Walz GmbH, Effeltrich, Germany. Available at: https://www.walz.com/files/downloads/dualpamed05.pdf

Examples

path <- file.path(
  system.file("extdata/dual_pam_single_channel_p700_data", package = "pam"),
  "20260130_01_dual_pam_only_p700.csv"
)
data <- read_dual_pam_single_channel_p700_data(path)

pam documentation built on April 23, 2026, 5:08 p.m.