Loading [MathJax]/extensions/ams.js
ALMaSS  1.2 (after EcoStack, March 2024)
The Animal, Landscape and Man Simulation System
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PLFodderLucerne1.h
Go to the documentation of this file.
1 
16 //
17 // PLFodderLucerne1.h
18 //
19 
20 
21 #ifndef PLFODDERLUCERNE1_H
22 #define PLFODDERLUCERNE1_H
23 
24 #define PLFODDERLUCERNE1_BASE 25400
25 
28 #define PL_FL1_FERTI_P1 a_field->m_user[1]
29 #define PL_FL1_FERTI_S1 a_field->m_user[2]
30 #define PL_FL1_STUBBLE_PLOUGH a_field->m_user[3]
31 #define PL_FL1_WINTER_PLOUGH a_field->m_user[4]
32 #define PL_FL1_SPRING_FERTI a_field->m_user[5]
33 #define PL_FL1_HERBICIDE1 a_field->m_user[6]
34 #define PL_FL1_HERBI_DATE a_field->m_user[7]
35 
41 typedef enum {
42  pl_fl1_start = 1, // Compulsory, must always be 1 (one).
70 
71 
80 class PLFodderLucerne1: public Crop
81 {
82  public:
83  virtual bool Do( Farm *a_farm, LE *a_field, FarmEvent *a_ev );
84  PLFodderLucerne1(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape* a_L) : Crop(a_tov, a_toc, a_L)
85  {
86  // When we start it off, the first possible date for a farm operation is 31th October
87  // This information is used by other crops when they decide how much post processing of
88  // the management is allowed after harvest before the next crop starts.
89  m_first_date=g_date->DayInYear( 1,12 );
91  }
93  const int elements = 2 + (pl_fl1_foobar - PLFODDERLUCERNE1_BASE);
95 
96  FarmManagementCategory catlist[elements] =
97  {
98  fmc_Others, // zero element unused but must be here
99  fmc_Others,//pl_fl1_start = 1, // Compulsory, must always be 1 (one).
100  fmc_Others,//pl_fl1_sleep_all_day = PLFODDERLUCERNE1_BASE,
101  fmc_Herbicide,//pl_fl1_herbicide0,
102  fmc_Fertilizer,//pl_fl1_ferti_p1,
103  fmc_Fertilizer,//pl_fl1_ferti_s1,
104  fmc_Cultivation,//pl_fl1_stubble_plough,
105  fmc_Cultivation,//pl_fl1_autumn_harrow1,
106  fmc_Cultivation,//pl_fl1_autumn_harrow2,
107  fmc_Cultivation,//pl_fl1_stubble_harrow,
108  fmc_Fertilizer,//pl_fl1_ferti_p2,
109  fmc_Fertilizer,//pl_fl1_ferti_s2,
110  fmc_Fertilizer,//pl_fl1_ferti_p3,
111  fmc_Fertilizer,//pl_fl1_ferti_s3,
112  fmc_Cultivation,//pl_fl1_winter_plough,
113  fmc_Cultivation,//pl_fl1_winter_stubble_cultivator_heavy,
114  fmc_Cultivation,//pl_fl1_spring_harrow,
115  fmc_Fertilizer,//pl_fl1_ferti_p4,
116  fmc_Fertilizer,//pl_fl1_ferti_s4,
117  fmc_Cultivation,//pl_fl1_heavy_cultivator,
118  fmc_Herbicide,//pl_fl1_herbicide1,
119  fmc_Cultivation,//pl_fl1_preseeding_cultivator,
120  fmc_Others,//pl_fl1_spring_sow,
121  fmc_Herbicide,//pl_fl1_herbicide2,
122  fmc_Herbicide,//pl_fl1_herbicide3,
123  fmc_Cutting,//pl_fl1_cut_to_silage1,
124  fmc_Cutting//pl_fl1_cut_to_silage2,
125  };
126  // Iterate over the catlist elements and copy them to vector
127  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
128 
129  }
130 };
131 
132 #endif // PLFODDERLUCERNE1_H
133 
FarmEvent::m_forcespring
bool m_forcespring
Definition: Farm.h:392
pl_fl1_herbicide3
Definition: PLFodderLucerne1.h:65
Farm::FA_Slurry
virtual bool FA_Slurry(LE *a_field, double a_user, int a_days)
Spready slurry on a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1067
pl_fl1_winter_plough
Definition: PLFodderLucerne1.h:55
Farm::PreseedingCultivator
virtual bool PreseedingCultivator(LE *a_field, double a_user, int a_days)
Carry out preseeding cultivation on a_field (tilling set including cultivator and string roller to co...
Definition: FarmFuncs.cpp:312
Farm::HerbicideTreat
virtual bool HerbicideTreat(LE *a_field, double a_user, int a_days)
Apply herbicide to a_field.
Definition: FarmFuncs.cpp:2025
PLFodderLucerne1::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: PLFodderLucerne1.h:92
Farm::IsStockFarmer
bool IsStockFarmer(void)
Definition: Farm.h:961
PLFODDERLUCERNE1_BASE
#define PLFODDERLUCERNE1_BASE
Definition: PLFodderLucerne1.h:24
pl_fl1_autumn_harrow1
Definition: PLFodderLucerne1.h:48
FarmEvent::m_lock
bool m_lock
Definition: Farm.h:384
Farm::StubbleCultivatorHeavy
virtual bool StubbleCultivatorHeavy(LE *a_field, double a_user, int a_days)
Carry out a stubble cultivation event on a_field. This is non-inversion type of cultivation which can...
Definition: FarmFuncs.cpp:245
FarmEvent
A struct to hold the information required to trigger a farm event.
Definition: Farm.h:372
LE::ClearManagementActionSum
void ClearManagementActionSum()
clears the management action counters
Definition: Elements.h:247
Farm::FP_NPK
virtual bool FP_NPK(LE *a_field, double a_user, int a_days)
Apply NPK fertilizer, on a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:645
Farm::CutToSilage
virtual bool CutToSilage(LE *a_field, double a_user, int a_days)
Cut vegetation for silage on a_field.
Definition: FarmFuncs.cpp:1644
Farm::DoIt
bool DoIt(double a_probability)
Return chance out of 0 to 100.
Definition: Farm.cpp:856
Calendar::GetYearNumber
int GetYearNumber(void)
Definition: Calendar.h:72
pl_fl1_autumn_harrow2
Definition: PLFodderLucerne1.h:49
FarmEvent::m_first_year
bool m_first_year
Definition: Farm.h:386
pl_fl1_spring_harrow
Definition: PLFodderLucerne1.h:57
Farm::StubblePlough
virtual bool StubblePlough(LE *a_field, double a_user, int a_days)
Carry out a stubble ploughing event on a_field. This is similar to normal plough but shallow (normall...
Definition: FarmFuncs.cpp:232
LE::GetPoly
int GetPoly(void)
Returns the polyref number for this polygon.
Definition: Elements.h:238
PL_FL1_FERTI_S1
#define PL_FL1_FERTI_S1
Definition: PLFodderLucerne1.h:29
pl_fl1_herbicide1
Definition: PLFodderLucerne1.h:61
pl_fl1_ferti_s1
Definition: PLFodderLucerne1.h:46
g_date
class Calendar * g_date
Definition: Calendar.cpp:37
fmc_Herbicide
Definition: LandscapeFarmingEnums.h:1006
Farm::GetPreviousTov
TTypesOfVegetation GetPreviousTov(int a_index)
Definition: Farm.h:966
pl_fl1_ferti_s2
Definition: PLFodderLucerne1.h:52
Farm::SpringSow
virtual bool SpringSow(LE *a_field, double a_user, int a_days, double a_seed_coating_amount=-1, PlantProtectionProducts a_ppp=ppp_foobar)
Carry out a sowing event in the spring on a_field.
Definition: FarmFuncs.cpp:501
Farm::GetType
TTypesOfFarm GetType(void)
Definition: Farm.h:956
cfg_seedcoating_product_amounts
CfgArray_Double cfg_seedcoating_product_amounts
Amount of seed coating pesticide applied in grams of active substance per hectare for each of the 10 ...
Crop::m_base_elements_no
int m_base_elements_no
Definition: Farm.h:505
pl_fl1_herbicide0
Definition: PLFodderLucerne1.h:44
Crop::m_first_date
int m_first_date
Definition: Farm.h:501
FarmEvent::m_startday
int m_startday
Definition: Farm.h:385
Farm::FA_NPK
virtual bool FA_NPK(LE *a_field, double a_user, int a_days)
Apply NPK fertilizer to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:982
Crop
The base class for all crops.
Definition: Farm.h:495
Farm::FP_PK
virtual bool FP_PK(LE *a_field, double a_user, int a_days)
Apply PK fertilizer, on a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:673
tov_PLFodderLucerne1
Definition: LandscapeFarmingEnums.h:243
CfgBool::value
bool value() const
Definition: Configurator.h:164
pl_fl1_stubble_harrow
Definition: PLFodderLucerne1.h:50
fmc_Cutting
Definition: LandscapeFarmingEnums.h:1009
Landscape
The landscape class containing all environmental and topographical data.
Definition: Landscape.h:142
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
Calendar::Date
long Date(void)
Definition: Calendar.h:57
PL_FL1_STUBBLE_PLOUGH
#define PL_FL1_STUBBLE_PLOUGH
Definition: PLFodderLucerne1.h:30
fmc_Cultivation
Definition: LandscapeFarmingEnums.h:1008
CfgBool
Bool configurator entry class.
Definition: Configurator.h:155
pl_fl1_start
Definition: PLFodderLucerne1.h:42
fmc_Others
Definition: LandscapeFarmingEnums.h:1003
Calendar::OldDays
long OldDays(void)
Definition: Calendar.h:60
pl_fl1_preseeding_cultivator
Definition: PLFodderLucerne1.h:62
MapErrorMsg::Warn
void Warn(MapErrorState a_level, std::string a_msg1, std::string a_msg2)
Definition: MapErrorMsg.cpp:69
CfgArray_Double
Definition: Configurator.h:208
LE::GetRotIndex
int GetRotIndex(void)
Definition: Elements.h:373
pl_fl1_cut_to_silage1
Definition: PLFodderLucerne1.h:66
pl_fl1_sleep_all_day
Definition: PLFodderLucerne1.h:43
FarmEvent::m_next_tov
TTypesOfVegetation m_next_tov
Definition: Farm.h:390
PL_FL1_WINTER_PLOUGH
#define PL_FL1_WINTER_PLOUGH
Definition: PLFodderLucerne1.h:31
PLFodderLucerne1::Do
virtual bool Do(Farm *a_farm, LE *a_field, FarmEvent *a_ev)
The one and only method for a crop management plan. All farm actions go through here.
Definition: PLFodderLucerne1.cpp:57
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
pl_fl1_heavy_cultivator
Definition: PLFodderLucerne1.h:60
PLFodderLucerne1ToDo
PLFodderLucerne1ToDo
Definition: PLFodderLucerne1.h:41
pl_fl1_ferti_s3
Definition: PLFodderLucerne1.h:54
Crop::m_ManagementCategories
vector< FarmManagementCategory > m_ManagementCategories
Holds the translation between the farm operation enum for each crop and the farm management category ...
Definition: Farm.h:530
CfgArray_Double::value
std::vector< double > value() const
Definition: Configurator.h:219
FarmEvent::m_todo
int m_todo
Definition: Farm.h:388
LE::GetGreenBiomass
virtual double GetGreenBiomass(void)
Definition: Elements.h:160
Farm::FP_Slurry
virtual bool FP_Slurry(LE *a_field, double a_user, int a_days)
Apply slurry to a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:823
pl_fl1_ferti_p1
Definition: PLFodderLucerne1.h:45
TTypesOfCrops
TTypesOfCrops
Definition: LandscapeFarmingEnums.h:781
pl_fl1_stubble_plough
Definition: PLFodderLucerne1.h:47
tof_OptimisingFarm
Definition: LandscapeFarmingEnums.h:696
pl_fl1_cut_to_silage2
Definition: PLFodderLucerne1.h:67
PL_FL1_HERBICIDE1
#define PL_FL1_HERBICIDE1
Definition: PLFodderLucerne1.h:33
PL_FL1_SPRING_FERTI
#define PL_FL1_SPRING_FERTI
Definition: PLFodderLucerne1.h:32
LE
Definition: Elements.h:86
pl_fl1_ferti_p3
Definition: PLFodderLucerne1.h:53
g_msg
MapErrorMsg * g_msg
Definition: MapErrorMsg.cpp:41
Farm::AutumnHarrow
virtual bool AutumnHarrow(LE *a_field, double a_user, int a_days)
Carry out a harrow event in the autumn on a_field.
Definition: FarmFuncs.cpp:285
TTypesOfVegetation
TTypesOfVegetation
Values that represent the types of vegetation that are represented in ALMaSS.
Definition: LandscapeFarmingEnums.h:192
Farm
The base class for all farm types.
Definition: Farm.h:755
pl_fl1_ferti_p4
Definition: PLFodderLucerne1.h:58
PLFodderLucerne1::PLFodderLucerne1
PLFodderLucerne1(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: PLFodderLucerne1.h:84
Farm::WinterPlough
virtual bool WinterPlough(LE *a_field, double a_user, int a_days)
Carry out a ploughing event in the winter on a_field.
Definition: FarmFuncs.cpp:395
PLFodderLucerne1
PLFodderLucerne1 class .
Definition: PLFodderLucerne1.h:80
PL_FL1_HERBI_DATE
#define PL_FL1_HERBI_DATE
Definition: PLFodderLucerne1.h:34
PL_FL1_FERTI_P1
#define PL_FL1_FERTI_P1
A flag used to indicate autumn ploughing status.
Definition: PLFodderLucerne1.h:28
LE::GetOwner
Farm * GetOwner(void)
Definition: Elements.h:256
Calendar::DayInYear
int DayInYear(void)
Definition: Calendar.h:58
pl_fl1_ferti_s4
Definition: PLFodderLucerne1.h:59
cfg_seedcoating_lucerne_on
CfgBool cfg_seedcoating_lucerne_on
Turn on seed coating for lucerne.
Farm::FA_PK
virtual bool FA_PK(LE *a_field, double a_user, int a_days)
Apply PK fertilizer to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1010
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
pl_fl1_ferti_p2
Definition: PLFodderLucerne1.h:51
pl_fl1_spring_sow
Definition: PLFodderLucerne1.h:63
WARN_BUG
Definition: MapErrorMsg.h:34
ppp_1
Definition: LandscapeFarmingEnums.h:1079
Farm::HeavyCultivatorAggregate
virtual bool HeavyCultivatorAggregate(LE *a_field, double a_user, int a_days)
Carry out a heavy cultivation event on a_field. This is non-inversion type of cultivation which can b...
Definition: FarmFuncs.cpp:259
FarmManagementCategory
FarmManagementCategory
Definition: LandscapeFarmingEnums.h:1001
Farm::StubbleHarrowing
virtual bool StubbleHarrowing(LE *a_field, double a_user, int a_days)
Carry out stubble harrowing on a_field.
Definition: FarmFuncs.cpp:1523
Farm::SpringHarrow
virtual bool SpringHarrow(LE *a_field, double a_user, int a_days)
Carry out a harrow event in the spring on a_field.
Definition: FarmFuncs.cpp:459
pl_fl1_winter_stubble_cultivator_heavy
Definition: PLFodderLucerne1.h:56
Crop::SimpleEvent_
void SimpleEvent_(long a_date, int a_todo, bool a_lock, Farm *a_farm, LE *a_field)
Adds an event to this crop management without relying on member variables.
Definition: Farm.cpp:751
pl_fl1_foobar
Definition: PLFodderLucerne1.h:68
pl_fl1_herbicide2
Definition: PLFodderLucerne1.h:64