Fertilizer has to be provided as an array, where the entries containing DOY of fertilization alternate with entries containing corresponding fertilizer amount: .
E. g.:
DOY | 50 | 180 | 320 |
Amount | 130.5 | 120 | 127.3 |
has to be provided as array
50 | 130.5 | 180 | 120 | 320 | 127.3 |
This is the way interpolation tables are handled in FST (see also FSTFunctions). Lintul5 uses this mechanism for fertilization.
There are three tables the user can provide: cNitrateTAB, cAmmoniaTAB and cNitrateAndAmmoniaTAB .
Each of the table populates the corresponding output Nitrate, Ammonia or NitrateAndAmmonia.
Notice: Nitrate and Ammonia do not add to NitrateAndAmmonia. This output is related only to cNitrateAndAmmoniaTAB!
Content Type | Name | Description | Data Type | Unit | Min Value | Max Value | Default Value |
---|---|---|---|---|---|---|---|
constant | cAmmoniaTAB | table with effective applications of ammonia as function of day number (DOY) | DOUBLEARRAY | g/(m2 d) | - | - | - |
constant | cNitrateAndAmmoniaTAB | table with effective applications of nitrate and ammonia as function of day number (DOY) | DOUBLEARRAY | g/(m2 d) | - | - | - |
constant | cNitrateTAB | table with effective applications of nitrate as function of day number (DOY) | DOUBLEARRAY | g/(m2 d) | - | - | - |
out | Ammonia | daily applied ammonia | DOUBLE | g/(m2 d) | - | - | 0.0 |
out | Nitrate | daily applied nitrate | DOUBLE | g/(m2 d) | - | - | 0.0 |
out | NitrateAndAmmonia | daily applied nitrate and ammonia | DOUBLE | g/(m2 d) | - | - | 0.0 |