File failed to load: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/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
NLCabbageSpring Class Reference

NLCabbageSpring class
. More...

#include <NLCabbageSpring.h>

Inheritance diagram for NLCabbageSpring:
Crop

Public Member Functions

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. More...
 
 NLCabbageSpring (TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
 
void SetUpFarmCategoryInformation ()
 
- Public Member Functions inherited from Crop
virtual ~Crop ()
 
 Crop (TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
 
int GetFirstDate (void)
 
void ChooseNextCrop (int a_no_dates)
 Chooses the next crop to grow in a field. More...
 
int GetCropClassification ()
 
void SetCropClassification (int a_classification)
 
void GetCropType (TTypesOfCrops a_toc)
 
TTypesOfCrops GetCropType ()
 
FarmManagementCategory LookUpManagementCategory (int a_todo)
 
bool GetForceSpringOK ()
 

Additional Inherited Members

- Public Attributes inherited from Crop
TTypesOfVegetation m_tov
 
- Protected Member Functions inherited from Crop
void SimpleEvent (long a_date, int a_todo, bool a_lock)
 Adds an event to this crop management. More...
 
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. More...
 
bool StartUpCrop (int a_spring, std::vector< std::vector< int >> a_flexdates, int a_todo)
 
Holds the translation between the farm operation enum for each cropand the farm management category associated with it More...
 
bool AphidDamage (LE *a_field)
 Compares aphid numbers per m2 with a threshold to return true if threshold is exceeded. More...
 
- Protected Attributes inherited from Crop
Farmm_farm
 
LEm_field
 
FarmEventm_ev
 
int m_first_date
 
int m_count
 
int m_last_date
 
int m_ddegstoharvest
 
int m_base_elements_no
 
Landscapem_OurLandscape
 
bool m_forcespringpossible = false
 Used to signal that the crop can be forced to start in spring. More...
 
TTypesOfCrops m_toc
 The Crop type in terms of the TTypesOfCrops list (smaller list than tov, no country designation) More...
 
int m_CropClassification
 Contains information on whether this is a winter crop, spring crop, or catch crop that straddles the year boundary (0,1,2) More...
 
vector< FarmManagementCategorym_ManagementCategories
 Holds the translation between the farm operation enum for each crop and the farm management category associated with it. More...
 
- Static Protected Attributes inherited from Crop
static int m_date_modifier = 0
 Holds a value that shifts test pesticide use by this many days in crops modified to use it. More...
 

Detailed Description

NLCabbageSpring class
.

See NLCabbageSpring.h::NLCabbageSpringToDo for a complete list of all possible events triggered codes by the cabbage management plan. When triggered these events are handled by Farm and are available as information for other objects such as animal and bird models.

Constructor & Destructor Documentation

◆ NLCabbageSpring()

NLCabbageSpring::NLCabbageSpring ( TTypesOfVegetation  a_tov,
TTypesOfCrops  a_toc,
Landscape a_L 
)
inline
76  : Crop(a_tov, a_toc, a_L)
77  {
78  // When we start it off, the first possible date for a farm operation is 20th October
79  // This information is used by other crops when they decide how much post processing of
80  // the management is allowed after harvest before the next crop starts.
81  m_first_date=g_date->DayInYear( 15,4 );
83  }

References Calendar::DayInYear(), g_date, Crop::m_first_date, and SetUpFarmCategoryInformation().

Member Function Documentation

◆ Do()

bool NLCabbageSpring::Do ( Farm a_farm,
LE a_field,
FarmEvent a_ev 
)
virtual

The one and only method for a crop management plan. All farm actions go through here.

Called every time something is done to the crop by the farmer in the first instance it is always called with m_ev->todo set to start, but susequently will be called whenever the farmer wants to carry out a new operation.
This method details all the management and relationships between operations necessary to grow and ALMaSS crop - in this case conventional cabbage.

Reimplemented from Crop.

65 {
66  /******************** This block can be added to the top of all Crop::Do methods ***********************************************/
67  m_farm = a_farm;
68  m_field = a_field;
69  m_ev = a_ev;
70  bool done = false; // The boolean value done indicates when we are totally finished with this plan (i.e. it is set to true, m_farm, m_field).
71  bool flag = false;
72  int d1 = 0;
73  int noDates = 1;
75  int l_nextcropstartdate;
76  /**********************************************To Here *************************************************************************/
77 
78  // Depending what event has occured jump to the correct bit of code
79  switch (m_ev->m_todo)
80  {
81  case nl_cabs_start:
82  {
83  NL_CABS_WINTER_PLOUGH = false;
85 
86  m_last_date = g_date->DayInYear(30, 10); // Should match the last flexdate below
87  //Create a 2d array of 1 plus the number of operations you use. Change only 4+1 to what you need in the line below
88  std::vector<std::vector<int>> flexdates(1 + 1, std::vector<int>(2, 0));
89  // Set up the date management stuff
90  // Start and stop dates for all events after harvest
91  flexdates[0][1] = g_date->DayInYear(30, 10); // last possible day of harvest - this is in effect day before the earliest date that a following crop can use
92 
93  flexdates[1][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 1 (start op 1)
94  flexdates[1][1] = g_date->DayInYear(30, 10); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 1) - straw chopping
95 
96  // Below if this is a spring crop use 365, otherwise set this to 0, second parameter is fixed, and the third is the start up operation in the first year
97  int isSpring = 365;
98  if (StartUpCrop(isSpring, flexdates, int(nl_cabs_spring_planting))) break;
99 
100  // End single block date checking code. Please see next line comment as well.
101  // Reinit d1 to first possible starting date.
102  d1 = g_date->OldDays() + g_date->DayInYear(15, 3) + isSpring;
103  // OK, let's go.
104  // Here we queue up the first event - this differs depending on whether we have field on snady or clay soils
105  if (m_field->GetSoilType() == 2 || m_field->GetSoilType() == 6) { // on sandy soils (NL ZAND & LOSS)
107  }
108  else
109  {
110  if (m_farm->IsStockFarmer()) //Stock Farmer
111  {
113  }
114  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(10, 4) + 365, nl_cabs_ferti_p1, false, m_farm, m_field);
115  }
116  break;
117  }
118  break;
119 
120  // This is the first real farm operation
121 
123  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
124  {
125  if (!m_farm->SpringPlough(m_field, 0.0, g_date->DayInYear(15, 4) - g_date->DayInYear())) {
127  break;
128  }
129  }
130  d1 = g_date->Date() + 7;
131  if (d1 < g_date->OldDays() + g_date->DayInYear(10, 4)) {
132  d1 = g_date->OldDays() + g_date->DayInYear(10, 4);
133  }
134  if (m_farm->IsStockFarmer()) //Stock Farmer
135  {
137  }
138  else SimpleEvent_(d1, nl_cabs_ferti_p1, false, m_farm, m_field);
139  break;
140  case nl_cabs_ferti_s1:
141  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
142  {
143  if (!m_farm->FA_NPK(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
145  break;
146  }
147  }
148  d1 = g_date->Date() + 1;
149  if (d1 < g_date->OldDays() + g_date->DayInYear(25, 4)) {
150  d1 = g_date->OldDays() + g_date->DayInYear(25, 4);
151  }
153  break;
154  case nl_cabs_ferti_p1:
155  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
156  {
157  if (!m_farm->FP_NPK(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
159  break;
160  }
161  }
162  d1 = g_date->Date() + 1;
163  if (d1 < g_date->OldDays() + g_date->DayInYear(25, 4)) {
164  d1 = g_date->OldDays() + g_date->DayInYear(25, 4);
165  }
167  break;
169  if (!m_farm->PreseedingCultivator(m_field, 0.0, g_date->DayInYear(14, 5) - g_date->DayInYear())) {
171  break;
172  }
174  break;
175 
177  if (!m_farm->SpringSow(m_field, 0.0, g_date->DayInYear(15, 5) - g_date->DayInYear())) {
179  break;
180  }
181  // Here is a fork leading to four parallel events
182  SimpleEvent_(g_date->Date() + 5, nl_cabs_weeding1, false, m_farm, m_field); // Weeding + Herbicide thread
183  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(5, 7), nl_cabs_fungicide1, false, m_farm, m_field); // Fungicide thread
184  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 7) + m_date_modifier, nl_cabs_insecticide1, false, m_farm, m_field); // Insecticide thread = MAIN THREAD
185  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 7), nl_cabs_watering, false, m_farm, m_field); // Watering thread
186  if (m_farm->IsStockFarmer()) //Stock Farmer
187  {
188  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(5, 5), nl_cabs_ferti_s2, false, m_farm, m_field); // N thread
189  }
191  if (m_farm->IsStockFarmer()) //Stock Farmer
192  {
193  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(5, 5), nl_cabs_ferti_s4, false, m_farm, m_field); // microelements thread
194  }
196  break;
197  case nl_cabs_ferti_s2:
198  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(25, 5) - g_date->DayInYear())) {
200  break;
201  }
202  if (m_farm->IsStockFarmer()) //Stock Farmer
203  {
205  }
207  break;
208  case nl_cabs_ferti_p2:
209  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(25, 5) - g_date->DayInYear())) {
211  break;
212  }
213  if (m_farm->IsStockFarmer()) //Stock Farmer
214  {
216  }
218  break;
219  case nl_cabs_ferti_s3:
220  if (m_ev->m_lock || m_farm->DoIt_prob(0.60))
221  {
222  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 6) - g_date->DayInYear())) {
224  break;
225  }
226  }
227  // End of thread
228  break;
229  case nl_cabs_ferti_p3:
230  if (m_ev->m_lock || m_farm->DoIt_prob(0.60))
231  {
232  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 6) - g_date->DayInYear())) {
234  break;
235  }
236  }
237  // End of thread
238  break;
239  case nl_cabs_ferti_s4:
240  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
241  {
242  if (!m_farm->FA_ManganeseSulphate(m_field, 0.0, g_date->DayInYear(30, 6) - g_date->DayInYear())) {
244  break;
245  }
246  }
247  // End of thread
248  break;
249  case nl_cabs_ferti_p4:
250  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
251  {
252  if (!m_farm->FP_ManganeseSulphate(m_field, 0.0, g_date->DayInYear(30, 6) - g_date->DayInYear())) {
254  break;
255  }
256  }
257  // End of thread
258  break;
259  case nl_cabs_watering:
260  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
261  {
262  if (!m_farm->Water(m_field, 0.0, g_date->DayInYear(15, 8) - g_date->DayInYear())) {
264  break;
265  }
266  }
267  // End of thread
268  break;
269  case nl_cabs_weeding1:
270  if (m_field->GetGreenBiomass() <= 0) {
272  }
273  else
274  {
275  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
276  {
277  if (!m_farm->ShallowHarrow(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
279  break;
280  }
281  // end of thread
282  break;
283  }
285  break;
286  }
287  break;
288  case nl_cabs_herbicide1:
289  if (m_field->GetGreenBiomass() <= 0) {
291  }
292  else
293  {
294  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(25, 5) - g_date->DayInYear())) {
296  break;
297  }
299  break;
300  }
301  break;
302  case nl_cabs_weeding2:
303  if (!m_farm->ShallowHarrow(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
305  break;
306  }
307  // end of thread
308  break;
309  case nl_cabs_fungicide1:
310  // Here comes the fungicide thread
311  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(25, 7) - g_date->DayInYear())) {
313  break;
314  }
316  break;
317  case nl_cabs_fungicide2:
318  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(20, 8) - g_date->DayInYear())) {
320  break;
321  }
323  break;
324  case nl_cabs_fungicide3:
325  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
326  {
327  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(5, 9) - g_date->DayInYear())) {
329  break;
330  }
331  }
332  // End of thread
333  break;
335  // Here comes the insecticide thread
336  // here we check whether we are using ERA pesticide or not
337  d1 = g_date->DayInYear(10, 9) - g_date->DayInYear();
338  if (!cfg_pest_cabbage_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
339  {
340  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
341  }
342  else {
343  flag = m_farm->ProductApplication(m_field, 0.0, d1, cfg_pest_product_amounts.value(0), ppp_1, false, 3);
344  }
345  if (!flag) {
347  break;
348  }
350  break;
352  // here we check whether we are using ERA pesticide or not
353  d1 = g_date->DayInYear(25, 9) - g_date->DayInYear();
354  if (!cfg_pest_cabbage_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
355  {
356  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
357  }
358  else {
359  flag = m_farm->ProductApplication(m_field, 0.0, d1, cfg_pest_product_amounts.value(0), ppp_1, false, 3);
360  }
361  if (!flag) {
363  break;
364  }
366  break;
368  // here we check whether we are using ERA pesticide or not
369  d1 = g_date->DayInYear(5, 10) - g_date->DayInYear();
370  if (!cfg_pest_cabbage_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
371  {
372  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
373  }
374  else {
375  flag = m_farm->ProductApplication(m_field, 0.0, d1, cfg_pest_product_amounts.value(0), ppp_1, false, 3);
376  }
377  if (!flag) {
379  break;
380  }
382  break;
383  case nl_cabs_harvest:
384  // Here the MAIN thread continues
385  // We don't move harvest days
386  if (!m_farm->Harvest(m_field, 0.0, m_field->GetMDates(1, 0) - g_date->DayInYear())) {
388  break;
389  }
390  done = true;
391  // So we are done, and somwhere else the farmer will queue up the start event of the next crop
392  // END of MAIN THREAD
393  break;
394  default:
395  g_msg->Warn(WARN_BUG, "NLCabbageSpring::Do(): "
396  "Unknown event type! ", "");
397  exit(1);
398  }
399  if (done) m_ev->m_forcespring = true; // Here we need to force the next crop to spring operation, so set the ev->forcespring to true
400  return done;
401 }

References cfg_pest_cabbage_on, cfg_pest_product_amounts, LE::ClearManagementActionSum(), Calendar::Date(), Calendar::DayInYear(), Farm::DoIt_prob(), Farm::FA_AmmoniumSulphate(), Farm::FA_ManganeseSulphate(), Farm::FA_NPK(), Farm::FP_AmmoniumSulphate(), Farm::FP_ManganeseSulphate(), Farm::FP_NPK(), Farm::FungicideTreat(), g_date, g_msg, LE::GetGreenBiomass(), LE::GetMDates(), LE::GetSoilType(), Farm::Harvest(), Farm::HerbicideTreat(), Farm::InsecticideTreat(), Farm::IsStockFarmer(), Crop::m_date_modifier, Crop::m_ev, Crop::m_farm, Crop::m_field, FarmEvent::m_forcespring, Crop::m_last_date, FarmEvent::m_lock, FarmEvent::m_todo, nl_cabs_ferti_p1, nl_cabs_ferti_p2, nl_cabs_ferti_p3, nl_cabs_ferti_p4, nl_cabs_ferti_s1, nl_cabs_ferti_s2, nl_cabs_ferti_s3, nl_cabs_ferti_s4, nl_cabs_fungicide1, nl_cabs_fungicide2, nl_cabs_fungicide3, nl_cabs_harvest, nl_cabs_herbicide1, nl_cabs_insecticide1, nl_cabs_insecticide2, nl_cabs_insecticide3, nl_cabs_preseeding_cultivator, nl_cabs_spring_planting, nl_cabs_spring_plough_sandy, nl_cabs_start, nl_cabs_watering, nl_cabs_weeding1, nl_cabs_weeding2, NL_CABS_WINTER_PLOUGH, Calendar::OldDays(), ppp_1, Farm::PreseedingCultivator(), Farm::ProductApplication(), Farm::ShallowHarrow(), Crop::SimpleEvent_(), Farm::SpringPlough(), Farm::SpringSow(), Crop::StartUpCrop(), tov_NLCabbageSpring, CfgBool::value(), CfgArray_Double::value(), MapErrorMsg::Warn(), WARN_BUG, and Farm::Water().

◆ SetUpFarmCategoryInformation()

void NLCabbageSpring::SetUpFarmCategoryInformation ( )
inline
84  {
85  const int elements = 2 + (nl_cabs_foobar - NLCABBAGESPRING_BASE);
87 
88  FarmManagementCategory catlist[elements] =
89  {
90  fmc_Others, // zero element unused but must be here
91  fmc_Others,//nl_cabs_start = 1, // Compulsory, must always be 1 (one).
92  fmc_Others,//nl_cabs_sleep_all_day = NLCABBAGESPRING_BASE,
93  fmc_Cultivation,//nl_cabs_spring_plough_sandy,
94  fmc_Fertilizer,//nl_cabs_ferti_p1,
95  fmc_Fertilizer,//nl_cabs_ferti_s1,
96  fmc_Cultivation,//nl_cabs_preseeding_cultivator,
97  fmc_Others,//nl_cabs_spring_planting,
98  fmc_Cutting,//nl_cabs_weeding1,
99  fmc_Herbicide,//nl_cabs_herbicide1,
100  fmc_Cutting,//nl_cabs_weeding2,
101  fmc_Fungicide,//nl_cabs_fungicide1,
102  fmc_Fungicide,//nl_cabs_fungicide2,
103  fmc_Fungicide,//nl_cabs_fungicide3,
104  fmc_Insecticide,//nl_cabs_insecticide1,
105  fmc_Insecticide,//nl_cabs_insecticide2,
106  fmc_Insecticide,//nl_cabs_insecticide3,
107  fmc_Fertilizer,//nl_cabs_ferti_p2,
108  fmc_Fertilizer,//nl_cabs_ferti_s2,
109  fmc_Fertilizer,//nl_cabs_ferti_p3,
110  fmc_Fertilizer,//nl_cabs_ferti_s3,
111  fmc_Fertilizer,//nl_cabs_ferti_p4,
112  fmc_Fertilizer,//nl_cabs_ferti_s4,
113  fmc_Watering,//nl_cabs_watering,
114  fmc_Harvest//nl_cabs_harvest,
115  };
116  // Iterate over the catlist elements and copy them to vector
117  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
118 
119  }

References fmc_Cultivation, fmc_Cutting, fmc_Fertilizer, fmc_Fungicide, fmc_Harvest, fmc_Herbicide, fmc_Insecticide, fmc_Others, fmc_Watering, Crop::m_base_elements_no, Crop::m_ManagementCategories, nl_cabs_foobar, and NLCABBAGESPRING_BASE.

Referenced by NLCabbageSpring().


The documentation for this class was generated from the following files:
LE::GetMDates
int GetMDates(int a, int b)
Definition: Elements.h:405
nl_cabs_spring_planting
Definition: NLCabbageSpring.h:42
FarmEvent::m_forcespring
bool m_forcespring
Definition: Farm.h:392
fmc_Insecticide
Definition: LandscapeFarmingEnums.h:1005
nl_cabs_insecticide2
Definition: NLCabbageSpring.h:50
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::SpringPlough
virtual bool SpringPlough(LE *a_field, double a_user, int a_days)
Carry out a ploughing event in the spring on a_field.
Definition: FarmFuncs.cpp:421
Farm::HerbicideTreat
virtual bool HerbicideTreat(LE *a_field, double a_user, int a_days)
Apply herbicide to a_field.
Definition: FarmFuncs.cpp:2025
Farm::IsStockFarmer
bool IsStockFarmer(void)
Definition: Farm.h:961
NLCabbageSpring::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: NLCabbageSpring.h:84
Farm::Harvest
virtual bool Harvest(LE *a_field, double a_user, int a_days)
Carry out a harvest on a_field.
Definition: FarmFuncs.cpp:1364
FarmEvent::m_lock
bool m_lock
Definition: Farm.h:384
Farm::FP_ManganeseSulphate
virtual bool FP_ManganeseSulphate(LE *a_field, double a_user, int a_days)
Apply Manganse Sulphate to a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:840
Farm::ProductApplication
virtual bool ProductApplication(LE *a_field, double a_user, int a_days, double a_applicationrate, PlantProtectionProducts a_ppp, bool a_isgranularpesticide=false, int a_orcharddrifttype=0)
Apply test pesticide to a_field.
Definition: FarmFuncs.cpp:2267
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
nl_cabs_ferti_s4
Definition: NLCabbageSpring.h:57
nl_cabs_fungicide3
Definition: NLCabbageSpring.h:48
tov_NLCabbageSpring
Definition: LandscapeFarmingEnums.h:267
Farm::DoIt_prob
bool DoIt_prob(double a_probability)
Return chance out of 0 to 1.
Definition: Farm.cpp:864
g_date
class Calendar * g_date
Definition: Calendar.cpp:37
nl_cabs_weeding1
Definition: NLCabbageSpring.h:43
fmc_Herbicide
Definition: LandscapeFarmingEnums.h:1006
nl_cabs_fungicide1
Definition: NLCabbageSpring.h:46
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
Crop::m_base_elements_no
int m_base_elements_no
Definition: Farm.h:505
Crop::m_first_date
int m_first_date
Definition: Farm.h:501
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
Farm::FungicideTreat
virtual bool FungicideTreat(LE *a_field, double a_user, int a_days)
Apply fungicide to a_field.
Definition: FarmFuncs.cpp:2101
nl_cabs_preseeding_cultivator
Definition: NLCabbageSpring.h:41
nl_cabs_ferti_p3
Definition: NLCabbageSpring.h:54
cfg_pest_product_amounts
CfgArray_Double cfg_pest_product_amounts
Amount of pesticide applied in grams of active substance per hectare for each of the 10 pesticides.
CfgBool::value
bool value() const
Definition: Configurator.h:164
nl_cabs_weeding2
Definition: NLCabbageSpring.h:45
fmc_Cutting
Definition: LandscapeFarmingEnums.h:1009
nl_cabs_watering
Definition: NLCabbageSpring.h:58
nl_cabs_harvest
Definition: NLCabbageSpring.h:59
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
cfg_pest_cabbage_on
CfgBool cfg_pest_cabbage_on
Turn on pesticides for cabbage.
Calendar::Date
long Date(void)
Definition: Calendar.h:57
NLCABBAGESPRING_BASE
#define NLCABBAGESPRING_BASE
Definition: NLCabbageSpring.h:24
Farm::FP_AmmoniumSulphate
virtual bool FP_AmmoniumSulphate(LE *a_field, double a_user, int a_days)
Apply Ammonium Sulphate to a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:882
fmc_Cultivation
Definition: LandscapeFarmingEnums.h:1008
LE::GetSoilType
int GetSoilType()
Definition: Elements.h:302
NL_CABS_WINTER_PLOUGH
#define NL_CABS_WINTER_PLOUGH
A flag used to indicate autumn ploughing status.
Definition: NLCabbageSpring.h:28
nl_cabs_spring_plough_sandy
Definition: NLCabbageSpring.h:38
fmc_Others
Definition: LandscapeFarmingEnums.h:1003
fmc_Watering
Definition: LandscapeFarmingEnums.h:1011
Farm::FA_ManganeseSulphate
virtual bool FA_ManganeseSulphate(LE *a_field, double a_user, int a_days)
Apply manganese sulphate to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1095
Calendar::OldDays
long OldDays(void)
Definition: Calendar.h:60
MapErrorMsg::Warn
void Warn(MapErrorState a_level, std::string a_msg1, std::string a_msg2)
Definition: MapErrorMsg.cpp:69
nl_cabs_insecticide3
Definition: NLCabbageSpring.h:51
Crop::StartUpCrop
bool StartUpCrop(int a_spring, std::vector< std::vector< int >> a_flexdates, int a_todo)
Holds the translation between the farm operation enum for each cropand the farm management category a...
Definition: Farm.cpp:652
nl_cabs_herbicide1
Definition: NLCabbageSpring.h:44
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
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
Farm::InsecticideTreat
virtual bool InsecticideTreat(LE *a_field, double a_user, int a_days)
Apply insecticide to a_field.
Definition: FarmFuncs.cpp:2135
nl_cabs_ferti_s2
Definition: NLCabbageSpring.h:53
nl_cabs_start
Definition: NLCabbageSpring.h:36
LE::GetGreenBiomass
virtual double GetGreenBiomass(void)
Definition: Elements.h:160
Farm::ShallowHarrow
virtual bool ShallowHarrow(LE *a_field, double a_user, int a_days)
Carry out a shallow harrow event on a_field, e.g., after grass cutting event.
Definition: FarmFuncs.cpp:473
nl_cabs_foobar
Definition: NLCabbageSpring.h:60
Farm::Water
virtual bool Water(LE *a_field, double a_user, int a_days)
Carry out a watering on a_field.
Definition: FarmFuncs.cpp:1330
Crop::m_last_date
int m_last_date
Definition: Farm.h:503
g_msg
MapErrorMsg * g_msg
Definition: MapErrorMsg.cpp:41
nl_cabs_fungicide2
Definition: NLCabbageSpring.h:47
nl_cabs_ferti_p4
Definition: NLCabbageSpring.h:56
Farm::FA_AmmoniumSulphate
virtual bool FA_AmmoniumSulphate(LE *a_field, double a_user, int a_days)
Apply ammonium sulphate to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1081
TTypesOfVegetation
TTypesOfVegetation
Values that represent the types of vegetation that are represented in ALMaSS.
Definition: LandscapeFarmingEnums.h:192
nl_cabs_insecticide1
Definition: NLCabbageSpring.h:49
Crop::m_date_modifier
static int m_date_modifier
Holds a value that shifts test pesticide use by this many days in crops modified to use it.
Definition: Farm.h:514
nl_cabs_ferti_s1
Definition: NLCabbageSpring.h:40
fmc_Harvest
Definition: LandscapeFarmingEnums.h:1012
Calendar::DayInYear
int DayInYear(void)
Definition: Calendar.h:58
nl_cabs_ferti_p2
Definition: NLCabbageSpring.h:52
Crop::Crop
Crop(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: Farm.cpp:733
nl_cabs_ferti_s3
Definition: NLCabbageSpring.h:55
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
WARN_BUG
Definition: MapErrorMsg.h:34
ppp_1
Definition: LandscapeFarmingEnums.h:1079
fmc_Fungicide
Definition: LandscapeFarmingEnums.h:1007
FarmManagementCategory
FarmManagementCategory
Definition: LandscapeFarmingEnums.h:1001
nl_cabs_ferti_p1
Definition: NLCabbageSpring.h:39
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