Changes between Version 1 and Version 2 of DevelopmentActivities/enhanced_weathering


Ignore:
Timestamp:
2018-06-05T17:11:31+02:00 (6 years ago)
Author:
dgoll
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/enhanced_weathering

    v1 v2  
    11= Enhanced weathering = 
    2 Enhanced weathering module based on Strefler et al. (2018).  
    3 Additional forcing data is needed: amount (g/m2/yr) and diameter (10^6^ m) of grains of basalt and forsterite). 
     2Enhanced weathering module based on Strefler et al. (2018) which simulates the phosphorus release and CO,,2,, consumption by weathering of basalt and forsterite mineral grains. Grains are characterized by grain size diameter and mass applied.  
     3 
     4Therefore the following additional forcing is needed: amount (g/m2/yr) and diameter (10^6^ m) of grains of basalt and forsterite). It can be either prescribed via run.def or via spatial explicit maps (See here for details [https://forge.ipsl.jussieu.fr/orchidee/wiki/DevelopmentActivities/inputRoutine]). 
    45 
    56To activate (in PARAM/run.def) 
    67{{{ 
    78ENHANCED_WEAT=y 
     9}}} 
     10 
     11To read in from maps (in PARAM/run.def): 
     12{{{ 
     13NINPUT_UPDATE=1 
     14IMPOSE_NMAP=y 
     15IMPOSE_NINPUT=y 
     16 
    817# where can the input data be found: 
    918EW_BASALT_MASS_FILE=NMIP_agricultural_input.nc 
     
    1120EW_FORSTERITE_MASS_FILE=NMIP_agricultural_input.nc 
    1221EW_FORSTERITE_SIZE_FILE=NMIP_agricultural_input.nc 
     22}}} 
     23 
     24To read in from run.def (in PARAM/run.def): 
     25{{{ 
     26NINPUT_UPDATE=1 
     27IMPOSE_NMAP=n 
     28IMPOSE_NINPUT=y 
     29 
     30# Mass in g m-2 yr-1 
     31EW_BASALT_MASS=15000. 
     32EW_FORSTERITE_MASS=0. 
     33# Grain diameter in 10^6 m 
     34EW_BASALT_SIZE=20 
     35EW_FORSTERITE_SIZE=20 
    1336}}} 
    1437