METHODS

Vegetation canopy model complexity

Please contact Yujie Wang through Github Issues if you find a mistake in this table or you want to add a new item to the list.

Categories

  • 1C-1BL
    • One canopy layer
    • One single big leaf without sunlit and shaded fractions
  • 1C-1L
    • One canopy layer
    • One leaf without sunlit or shaded fractions (not big leaf!)
  • 1C-2BL
    • One canopy layer
    • Two big leaves are categorized as sunlit and shaded fractions
  • 1C-2L
    • One canopy layer
    • Two leaves for sunlit and shaded fractions (not big leaves!)
  • KC-1L
    • Multilple canopy layer
    • One leaf without sunlit or shaded fractions for each layer (not big leaf!)
  • KC-2L Multilple layer scheme with sunlit and shaded fractions
    • Multilple canopy layer
    • Two leaves for sunlit and shaded fractions per layer (not big leaves!)
  • KC-IJL
    • Multiple canopy layers
    • Sunlit and shaded fractions per layer
    • Leaf angular distribution for sunlit fraction

Models

ModelVerion & OptionComplexityReferenceDocumentation
CliMA Land0.1 DefaultKC-IJLWang et al. (2021)
0.1 1X1C-1LWang et al. (2021)
0.1 2X1C-2LWang et al. (2021)
0.1 KXKC-1LWang et al. (2021)
0.1 2KXKC-2LWang et al. (2021)
CLM4.01C-2LBonan et al. (2011)CLM 4.0 Tech Notes
4.51C-2LLawrence et al. (2019)CLM 4.5 Tech Notes
5.01C-2LLawrence et al. (2019)CLM 5.0 Tech Notes
mlKC-2LBonan et al. (2018)
ISBAA-gsKC-2LCarrer et al. (2013)
MEBKC-2LBoone et al. (2017)
JULES6.1 can_rad_mod 11C-1BLJogireddy et al. (2006)JULES 6.1 User Guide
6.1 can_rad_mod 4KC-IJLClark et al. (2011)JULES 6.1 User Guide
6.1 can_rad_mod 5KC-2LClark et al. (2011)JULES 6.1 User Guide
6.1 can_rad_mod 6KC-2LClark et al. (2011)JULES 6.1 User Guide
ORCHIDEECAN v1KC-1LRyder et al. (2016)
SCOPE1.7KC-IJLvan der Tol et al. (2009)SCOPE Documentation
2.0 lite offKC-IJLYang et al. (2021)SCOPE Documentation
2.0 lite onKC-2LYang et al. (2021)SCOPE Documentation

GriddingMachine.jl v0.1

This tutorial is a bit out of data as the stable version of GriddingMachine is v0.2.

Preparation

  • Julia (version 1.5+)
  • Access to Github
  • Access to ftp://fluo.gps.caltech.edu (to download data)

Install GriddingMachine.jl

  • Start Julia REPL (read-eval-print loop) Start Julia REPL
  • Type ] in the REPL, and goes to pkg environment Go to pkg environment
  • Type add GriddingMachine Install GriddingMachine
  • Type Backspace to go back to Julia REPL Go back to Julia REPL

Use GriddingMachine.jl

  • Type using GriddingMachine in Julia REPL Use GriddingMachine
  • lnc_lut = load_LUT(LNCButler{Float32}());
  • read_LUT(lnc_lut, Float32(30), Float32(-100)) Load dataset
  • Be aware that provided lat and lon need to be the same float type as the dataset, either Float32 or Float64

Upgrade GriddingMachine.jl

  • Start Julia REPL (read-eval-print loop)
  • Type ] in the REPL, and goes to pkg environment
  • Type up to upgrade all Julia packages
  • Type up GriddingMachine to upgrade GriddingMachine only Upgrade GriddingMachine

Relative leaf water content

Equipments and materials required:

  • Plastic zip bags
  • Oven proof envelopes
  • Scissors
  • Paper towel or (toliet) paper roll
  • Balance (0.0001-0.001 g precision)

Steps to measure RLWC (easiest)

  • Prepare zip bags with wet paper inside
  • Abscise leaf from the junction of leaf blade and leaf petiole
  • Put leaf into a zip bag with wet paper and mark the leaf samples
  • Bring leaf samples back to lab
  • Clean leaf blade with dry paper and measure leaf wet weight (WW)
  • Rehydrate leaf samples in water for 3-4 hours at room light and temperature
  • Measure rehydrated leaf weight (RW)
  • Measure pre-marked oven safe envelope weight (EW)
  • Put leaf sample in the envelope and dry the leaf samples at 80 Celcius for 24 hours
  • Measure envelope+leaf weight (TW)
  • Leaf dry weight, DW = TW - EW
  • Relative leaf water content, RLWC = (WW - DW) / (RW - DW)

Steps to measure RLWC (more accurate)

  • Prepare zip bags with wet paper inside
  • Abscise leaf from the junction of leaf blade and leaf petiole
  • Put leaf into a zip bag with wet paper and mark the leaf samples
  • Bring leaf samples back to lab
  • Clean leaf blade with dry paper
  • Abscise leaf into big pieces (avoid major vein) for better rehydration
  • Measure wet weight of leaf pieces (WW)
  • Rehydrate leaf samples in water for 3-4 hours at room light and temperature
  • Measure rehydrated weight of leaf pieces (RW)
  • Measure pre-marked oven safe envelope weight (EW)
  • Put leaf sample in the envelope and dry the leaf samples at 80 Celcius for 24 hours
  • Measure envelope+leaf weight (TW)
  • Leaf dry weight, DW = TW - EW
  • Relative leaf water content, RLWC = (WW - DW) / (RW - DW)