Added KPI G1 ammonia emissions (only on test servers)

- Ammonia emissions from fertilizers not yet fully functional
This commit is contained in:
2024-07-04 13:35:33 +02:00
parent da82c232e3
commit 67e5cb6bb4
4 changed files with 94 additions and 37 deletions

View File

@@ -20,13 +20,15 @@ namespace FarmmapsKPI.Models
public List<string> A1elements; //TtD
public List<string> B1elements;
public List<string> B2elements;
public List<string> C1elements;
public List<string> C1elements;
public List<string> G1elements; //TtD
public KPIOutput()
{
this.A1elements = new List<string>() { "yield", "strawYield" }; //TtD
this.B1elements = new List<string>() { "nHarvestedKgHa", "nHarvestedStrawKgHa", "nFixationNKgHa", "nDepositionNKgHa","nFertilizerNKgHa","sowPlantingNKgHa" }; //TtD
this.B2elements = new List<string>() { "pHarvestedKgHa", "pHarvestedStrawKgHa", "pFertillizerPKgHa", "sowPlantingPKgHa" }; //TtD
this.C1elements = new List<string>() { "fertilizerEom", "greenManureEom", "cropLeftoversEom" }; //TtD to do rename
this.G1elements = new List<string>() { "Manure", "GreenManure", "CropResidues", "ArtificialFertilize" }; //TtD
}
}
public class KPIOutputData
@@ -69,5 +71,9 @@ namespace FarmmapsKPI.Models
public string fertilizerEom { get; set; } //TtD
public string greenManureEom { get; set; } //TtD
public string cropLeftoversEom { get; set; } //TtD tamara: rename
public string Manure { get; set; } //TtD
public string GreenManure { get; set; } //TtD
public string CropResidues { get; set; } //TtD
public string ArtificialFertilize { get; set; } //TtD
}
}