-
Notifications
You must be signed in to change notification settings - Fork 6
Organic and Synthetic fertilizer events
Sulay Shah edited this page Aug 27, 2020
·
2 revisions
Organic and Synthetic fertilizer events are implemented based on Equation 11.1 of the IPCC document.
- The configuration file contains the
EF_1variable structure based on Table 11.1 of the IPCC document. The emission factor has 4 values depending on the weather and type of fertilizer:
- Wet Climate
- Dry Climate
- Wet Climate and Synthetic fertilizer
- Default (if climate data is not available)
- For the point example, the events are mentioned inside the
eventqueuevariable undereventswith the following example template:
{
"date": {
"$date": "2000/01/01" //Includes the date at which fertilizer is applied
},
"id": 1, (eventId)
"type": "agri.NFertEvent", //Type of event. agri.NFertEvent for synthetic and organic events
"name": "Synthetic fertilizer", //Type of fertilizer: 1) Synthetic fertlizer, 2) Organic fertilizer
"quantity": 100, //Quantity of fertilizer applied (kgN)
"runtime": 5 //Days over which emissions occur
}
- For the spatial example, the
eventqueuevariable is kept empty and events are built for each land-unit using theBuildLandUnitModule
- Based on the runtime of the event, an
EmissionEventis created for each of the days and the total emission is uniformly distributed over the runtime.EmissionEventis created when thePreTimingSequenceoccurs because once the simulation (TimingInit) has begun FLINT is looping over theeventqueueand adding more events into theeventqueuewill result in a runtime error. - The operation of emission occurs from
soilpool toatmospherepool.