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
FR_WinterWheat Class Reference

FR_WinterWheat class
. More...

#include <FR_WinterWheat.h>

Inheritance diagram for FR_WinterWheat:
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...
 
 FR_WinterWheat (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

FR_WinterWheat class
.

See FR_WinterWheat.h::FR_WinterWheatToDo for a complete list of all possible events triggered codes by the winter wheat 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

◆ FR_WinterWheat()

FR_WinterWheat::FR_WinterWheat ( TTypesOfVegetation  a_tov,
TTypesOfCrops  a_toc,
Landscape a_L 
)
inline
112  : Crop(a_tov, a_toc, a_L)
113  {
114  // When we start it off, the first possible date for a farm operation is 1st October
115  // This information is used by other crops when they decide how much post processing of
116  // the management is allowed after harvest before the next crop starts.
117  m_first_date=g_date->DayInYear( 15,11 );
119  }

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

Member Function Documentation

◆ Do()

bool FR_WinterWheat::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 a_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 winter wheat.

Reimplemented from Crop.

101 {
102  m_field = a_field; // this is needed because of possible calls to other methods and currently we do not pass parameters.
103  m_farm = a_farm; // this is needed because of possible calls to other methods and currently we do not pass parameters.
104  bool done = false; // The boolean value done indicates when we are totally finished with this plan (i.e. it is set to true).
105  bool flag = false;
106  int d1;
107  m_ev = a_ev; // Depending what event has occured jump to the correct bit of code e.g. for ww_start jump to line 67 below
108  switch (a_ev->m_todo)
109  {
110  case fr_ww_start:
111  {
112  // This is just to hold a local variable in scope and prevent compiler errors
113  // ww_start just sets up all the starting conditions and reference dates that are needed to start a ww
114  // crop off
115  FR_WW_EVERY_4_YEAR = 0;
116 
117  a_field->ClearManagementActionSum();
118 
119  m_last_date = g_date->DayInYear(28, 7); // Should match the last flexdate below
120  //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
121  std::vector<std::vector<int>> flexdates(2 + 1, std::vector<int>(2, 0));
122  // Set up the date management stuff
123  // Start and stop dates for all events after harvest
124  flexdates[0][1] = g_date->DayInYear(20, 7); // last possible day
125  // Now these are done in pairs, start & end for each operation. If its not used then -1
126  flexdates[1][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 1 (start op 1)
127  flexdates[1][1] = g_date->DayInYear(24, 7); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 1)
128  flexdates[2][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 2 (start op 2)
129  flexdates[2][1] = g_date->DayInYear(28, 7); // This date will be moved back as far as necessary and potentially to flexdates 2 (end op 2)
130 
131  // Below if this is a spring crop use 365, otherwise first parameter is always 0, second parameter is fixed, and the third is the start up operation in the first year
132  int isSpring = 0;
133  if (StartUpCrop(isSpring, flexdates, int(fr_ww_fertilizer2))) break;
134 
135  // End single block date checking code. Please see next line comment as well.
136  // Reinit d1 to first possible starting date.
137  if ((FR_WW_EVERY_4_YEAR + g_date->GetYearNumber()) % 4 == 0)
138  {
139  d1 = g_date->OldDays() + g_date->DayInYear(22, 6);
140  SimpleEvent(d1, fr_ww_fertilizer1_y4, false);
141  }
142  else
143  {
144  d1 = g_date->OldDays() + g_date->DayInYear(22, 6);
145  SimpleEvent(d1, fr_ww_fertilizer1, false);
146  }
147  break;
148  }
149  break;
150 
151  case fr_ww_fertilizer1:
152  if (a_ev->m_lock || a_farm->DoIt(30)) {
153  if (!a_farm->FP_NPK(a_field, 0.0, g_date->DayInYear(27, 10) - g_date->DayInYear())) {
154  SimpleEvent(g_date->Date() + 1, fr_ww_fertilizer1, true);
155  break;
156  }
157  }
159  break;
160 
162  if (a_ev->m_lock || a_farm->DoIt(30)) {
163  if (!a_farm->StubbleCultivatorHeavy(a_field, 0.0, g_date->DayInYear(31, 10) - g_date->DayInYear())) {
165  break;
166  }
167  }
168  d1 = g_date->Date();
169  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 9)) {
170  SimpleEvent(g_date->OldDays() + g_date->DayInYear(15, 9), fr_ww_plough, false);
171  break;
172  }
173  else
174  SimpleEvent(g_date->Date() + 1, fr_ww_plough, false);
175  break;
176 
177  case fr_ww_plough:
178  if (a_ev->m_lock || a_farm->DoIt_prob(.65)) {
179  if (!a_farm->AutumnPlough(a_field, 0.0, g_date->DayInYear(1, 11) - g_date->DayInYear())) {
180  SimpleEvent(g_date->Date() + 1, fr_ww_plough, true);
181  break;
182  }
184  break;
185  }
186  else if (a_ev->m_lock || a_farm->DoIt_prob(.25 / .35)) {
188  break;
189  }
191  break;
192 
194  if (!a_farm->AutumnHarrow(a_field, 0.0,
195  g_date->DayInYear(1, 11) - g_date->DayInYear())) {
197  break;
198  }
200  break;
201 
203  if (a_ev->m_lock || a_farm->DoIt_prob(.10)) {
204  if (!a_farm->PreseedingCultivator(a_field, 0.0,
205  g_date->DayInYear(15, 11) - g_date->DayInYear())) {
207  break;
208  }
209  }
210  SimpleEvent(g_date->Date() <10, fr_ww_sow, false);
211  break;
212 
213  case fr_ww_sow:
214  if (!a_farm->AutumnSow(m_field, 0.0, g_date->DayInYear(15, 11) - g_date->DayInYear())) {
215  SimpleEvent(g_date->Date() + 1, fr_ww_sow, true);
216  break;
217  }
220  break;
221  case fr_ww_herbicide1:
222  if (a_ev->m_lock || a_farm->DoIt_prob(.10)) {
223  if (!a_farm->HerbicideTreat(a_field, 0.0,
224  g_date->DayInYear(30, 11) - g_date->DayInYear())) {
225  SimpleEvent(g_date->Date() + 1, fr_ww_herbicide1, true);
226  break;
227  }
228  }
229  break;
230 
231  case fr_ww_autumn_harrow:
232  if (a_ev->m_lock || a_farm->DoIt_prob(.10)) {
233  if (!a_farm->AutumnHarrow(a_field, 0.0,
234  g_date->DayInYear(20, 11) - g_date->DayInYear())) {
236  break;
237  }
238  }
239  SimpleEvent(g_date->OldDays() + g_date->DayInYear(1, 2) + 365, fr_ww_fertilizer2, false);
240  break;
241 
242  case fr_ww_fertilizer2:
243  if (a_ev->m_lock || a_farm->DoIt_prob(.90)) {
244  if (!a_farm->FP_PK(a_field, 0.0,
245  g_date->DayInYear(28, 2) - g_date->DayInYear())) {
246  SimpleEvent(g_date->Date() + 1, fr_ww_fertilizer2, true);
247  break;
248  }
249  }
251  break;
253  if (a_ev->m_lock || a_farm->DoIt_prob(1.00)) {
254  if (!a_farm->FP_AmmoniumSulphate(a_field, 0.0,
255  g_date->DayInYear(28, 2) - g_date->DayInYear())) {
257  break;
258  }
259  }
260  SimpleEvent(g_date->OldDays() + g_date->DayInYear(1, 3), fr_ww_spring_harrow, false); // cultivation thread - main thread
261  SimpleEvent(g_date->OldDays() + g_date->DayInYear(1, 3), fr_ww_herbicide2, false); // herbicide thread
262  SimpleEvent(g_date->OldDays() + g_date->DayInYear(20, 3), fr_ww_growth_regulator, false); // GR thread
263  SimpleEvent(g_date->OldDays() + g_date->DayInYear(1, 4), fr_ww_fungicide1, false); // fungicide thread
264  SimpleEvent(g_date->OldDays() + g_date->DayInYear(1, 5) + m_date_modifier, fr_ww_insecticide, false); // insecticide thread
265  break;
266 
267  case fr_ww_herbicide2:
268  if (a_ev->m_lock || a_farm->DoIt_prob(.70)) {
269  if (!a_farm->HerbicideTreat(a_field, 0.0,
270  g_date->DayInYear(15, 3) - g_date->DayInYear())) {
271  SimpleEvent(g_date->Date() + 1, fr_ww_herbicide2, true);
272  break;
273  }
275  break;
276  }
277  break;
278 
279  case fr_ww_herbicide3: // rarely done, suggests 10% of once who already applied herbicide2
280  if (a_ev->m_lock || a_farm->DoIt_prob(.10)) {
281  if (!a_farm->HerbicideTreat(a_field, 0.0,
282  g_date->DayInYear(30, 4) - g_date->DayInYear())) {
283  SimpleEvent(g_date->Date() + 1, fr_ww_herbicide3, true);
284  break;
285  }
286  }
287  break;
288 
290  if (a_ev->m_lock || a_farm->DoIt_prob(.08)) {
291  if (!a_farm->GrowthRegulator(a_field, 0.0,
292  g_date->DayInYear(20, 4) - g_date->DayInYear())) {
294  break;
295  }
296  }
297  break;
298 
299  case fr_ww_fungicide1:
300  if (a_ev->m_lock || a_farm->DoIt_prob(.75)) {
301  if (!a_farm->FungicideTreat(a_field, 0.0,
302  g_date->DayInYear(30, 4) - g_date->DayInYear())) {
303  SimpleEvent(g_date->Date() + 1, fr_ww_fungicide1, true);
304  break;
305  }
306  SimpleEvent(g_date->Date()+30, fr_ww_fungicide2, false);
307  break;
308  }
309  break;
310 
311  case fr_ww_fungicide2: //60% of the farmers doing fungi1 (75%)
312  if (a_ev->m_lock || a_farm->DoIt_prob(.60)) {
313  if (!a_farm->FungicideTreat(a_field, 0.0,
314  g_date->DayInYear(30, 5) - g_date->DayInYear())) {
315  SimpleEvent(g_date->Date() + 1, fr_ww_fungicide2, true);
316  break;
317  }
318  }
319  break;
320 
321  case fr_ww_insecticide:
322 #ifdef ECOSTACK_BIOPESTICIDE
323  if (a_ev->m_lock || a_farm->DoIt_prob(.20)) {
324 #else
325  if (a_ev->m_lock || a_farm->DoIt_prob(.10)) {
326 #endif
327  // here we check whether we are using ERA pesticide or not
328  d1 = g_date->DayInYear(30, 5) - g_date->DayInYear();
329  if (!cfg_pest_winterwheat_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
330  {
331 #ifdef ECOSTACK_BIOPESTICIDE
332  flag = m_farm->BiocideTreat(m_field, 0.0, d1);
333 #else
334  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
335 #endif
336  }
337  else {
339  }
340  if (!flag) {
342  break;
343  }
344  }
345  break;
346 
347  case fr_ww_spring_harrow:
348  if (a_ev->m_lock || a_farm->DoIt_prob(.05)) {
349  if (!a_farm->SpringHarrow(a_field, 0.0,
350  g_date->DayInYear(31, 3) - g_date->DayInYear())) {
352  break;
353  }
354  }
356  break;
358  if (a_ev->m_lock || a_farm->DoIt_prob(1.00)) {
359  if (!a_farm->FP_AmmoniumSulphate(a_field, 0.0,
360  g_date->DayInYear(15, 4) - g_date->DayInYear())) {
362  break;
363  }
364  }
366  break;
368  if (a_ev->m_lock || a_farm->DoIt_prob(1.00)) {
369  if (!a_farm->FP_AmmoniumSulphate(a_field, 0.0,
370  g_date->DayInYear(15, 5) - g_date->DayInYear())) {
372  break;
373  }
374  }
375  SimpleEvent(g_date->OldDays() + g_date->DayInYear(20, 6), fr_ww_harvest, false);
376  break;
377  case fr_ww_harvest:
378  // We don't move harvest days
379  if (!a_farm->Harvest(a_field, 0.0, a_field->GetMDates(1, 0) - g_date->DayInYear())) {
380  SimpleEvent(g_date->Date() + 1, fr_ww_harvest, true);
381  break;
382  }
384  break;
386  if (a_field->GetMConstants(0) == 0) {
387  if (!a_farm->StrawChopping(a_field, 0.0, -1)) { // raise an error
388  g_msg->Warn(WARN_BUG, "FR_WinterWheat::Do(): failure in 'StrawChopping' execution", "");
389  exit(1);
390  }
391  }
392  else {
393  if (!a_farm->StrawChopping(a_field, 0.0, a_field->GetMDates(1, 1) - g_date->DayInYear())) {
395  break;
396  }
397  }
399  break;
400  case fr_ww_hay_bailing:
401  if (a_ev->m_lock || a_farm->DoIt_prob(.80)) {
402  if (a_field->GetMConstants(1) == 0) {
403  if (!a_farm->HayBailing(a_field, 0.0, -1)) { // raise an error
404  g_msg->Warn(WARN_BUG, "FR_WinterWheat::Do(): failure in 'HayBailing' execution", "");
405  exit(1);
406  }
407  }
408  else {
409  if (!a_farm->HayBailing(a_field, 0.0, a_field->GetMDates(1, 2) - g_date->DayInYear())) {
410  SimpleEvent(g_date->Date() + 1, fr_ww_hay_bailing, true);
411  break;
412  }
413  }
414  }
415 
416  d1 = g_date->Date();
417  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 7)) {
418  SimpleEvent(g_date->OldDays() + g_date->DayInYear(1, 7), fr_ww_wait, false);
419  // Because we are ending harvest before 1.7 so we need to wait until the 1.7
420  break;
421  }
422  else {
423  done = true; // end of plan
424  }
425  case fr_ww_wait:
426  done = true;
427  break;
428 
429  done = true;
430  // So we are done, and somewhere else the farmer will queue up the start event of the next crop
431  // END OF MAIN THREAD
432  break;
433 
435  if (a_ev->m_lock || a_farm->DoIt(30)) {
436  if (!a_farm->FP_NPK(a_field, 0.0, g_date->DayInYear(22, 7) - g_date->DayInYear())) {
438  break;
439  }
440 
441  }
443  break;
445  if (a_ev->m_lock || a_farm->DoIt(30)) {
446  if (!a_farm->StubbleCultivatorHeavy(a_field, 0.0, g_date->DayInYear(6, 8) - g_date->DayInYear())) {
448  break;
449  }
450  }
452  break;
453 
455  if (a_ev->m_lock || a_farm->DoIt(30)) {
456  if (!a_farm->FP_NPK(a_field, 0.0, g_date->DayInYear(25, 10) - g_date->DayInYear())) {
457  // If we don't suceed on the first try, then try and try again (until 1/10 when we will suceed)
459  break;
460  }
461 
462  }
463  SimpleEvent(g_date->Date() + 5, fr_ww_plough_y4, false);
464  break;
465 
466  case fr_ww_plough_y4:
467  if (a_ev->m_lock || a_farm->DoIt_prob(.65)) {
468  if (!a_farm->AutumnPlough(a_field, 0.0, g_date->DayInYear(1, 11) - g_date->DayInYear())) {
469  SimpleEvent(g_date->Date() + 1, fr_ww_plough_y4, true);
470  break;
471  }
473  break;
474  }
475  else if (a_ev->m_lock || a_farm->DoIt_prob(.25 / .35)) {
477  break;
478  }
480  break;
481 
483  if (!a_farm->AutumnHarrow(a_field, 0.0,
484  g_date->DayInYear(1, 11) - g_date->DayInYear())) {
486  break;
487  }
489  break;
490 
491 
492  default:
493  g_msg->Warn(WARN_BUG, "FR_WinterWheat::Do(): "
494  "Unknown event type! ", "");
495  exit(1);
496  }
497  return done;
498 }

References Farm::AutumnHarrow(), Farm::AutumnPlough(), Farm::AutumnSow(), Farm::BiocideTreat(), cfg_pest_product_amounts, cfg_pest_winterwheat_on, LE::ClearManagementActionSum(), Calendar::Date(), Calendar::DayInYear(), Farm::DoIt(), Farm::DoIt_prob(), Farm::FP_AmmoniumSulphate(), Farm::FP_NPK(), Farm::FP_PK(), fr_ww_ammonium_sulphate1, fr_ww_ammonium_sulphate2, fr_ww_ammonium_sulphate3, fr_ww_autumn_harrow, FR_WW_EVERY_4_YEAR, fr_ww_fertilizer1, fr_ww_fertilizer1_y4, fr_ww_fertilizer2, fr_ww_fertilizer2_y4, fr_ww_fungicide1, fr_ww_fungicide2, fr_ww_growth_regulator, fr_ww_harvest, fr_ww_hay_bailing, fr_ww_herbicide1, fr_ww_herbicide2, fr_ww_herbicide3, fr_ww_insecticide, fr_ww_plough, fr_ww_plough_y4, fr_ww_preseed_cultivation, fr_ww_sow, fr_ww_spring_harrow, fr_ww_start, fr_ww_straw_chopping, fr_ww_stubble_cultivation, fr_ww_stubble_cultivation_y4, fr_ww_stubble_harrow, fr_ww_stubble_harrow_y4, fr_ww_wait, Farm::FungicideTreat(), g_date, g_msg, LE::GetMConstants(), LE::GetMDates(), Calendar::GetYearNumber(), Farm::GrowthRegulator(), Farm::Harvest(), Farm::HayBailing(), Farm::HerbicideTreat(), Farm::InsecticideTreat(), Crop::m_date_modifier, Crop::m_ev, Crop::m_farm, Crop::m_field, Crop::m_last_date, FarmEvent::m_lock, FarmEvent::m_todo, Calendar::OldDays(), ppp_1, Farm::PreseedingCultivator(), Farm::ProductApplication(), Crop::SimpleEvent(), Crop::SimpleEvent_(), Farm::SpringHarrow(), Crop::StartUpCrop(), Farm::StrawChopping(), Farm::StubbleCultivatorHeavy(), CfgBool::value(), CfgArray_Double::value(), MapErrorMsg::Warn(), and WARN_BUG.

◆ SetUpFarmCategoryInformation()

void FR_WinterWheat::SetUpFarmCategoryInformation ( )
inline
120  {
121  const int elements = 2 + (fr_ww_foobar - FR_WW_BASE);
123 
124  FarmManagementCategory catlist[elements] =
125  {
126  fmc_Others, // zero element unused but must be here
127  fmc_Others, // fr_ww_start = 1, // Compulsory, must always be 1 (one).
128  fmc_Others, // fr_ww_sleep_all_day = FR_WW_BASE,
129  fmc_Fertilizer, // fr_ww_fertilizer1,
130  fmc_Cultivation, // fr_ww_autumn_plough,
131  fmc_Cultivation, // fr_ww_stubble_cultivation,
132  fmc_Cultivation, // fr_ww_plough,
133  fmc_Cultivation, // fr_ww_stubble_cultivation,
134  fmc_Cultivation, // fr_ww_preseed_cultivation,
135  fmc_Others, // fr_ww_sow,
136  fmc_Cultivation, // fr_ww_autumn_harrow,
137  fmc_Herbicide, // fr_ww_herbicide1,
138  fmc_Cultivation, // fr_ww_spring_harrow,
139  fmc_Fertilizer, // fr_ww_fertilizer2,
140  fmc_Fertilizer, // fr_ww_ammonium_sulphate1,
141  fmc_Fertilizer, // fr_ww_ammonium_sulphate2,
142  fmc_Fertilizer, // fr_ww_ammonium_sulphate3,
143  fmc_Herbicide, // fr_ww_herbicide2,
144  fmc_Herbicide, // fr_ww_herbicide3,
145  fmc_Fungicide, // fr_ww_fungicide1,
146  fmc_Fungicide, // fr_ww_funigicide2
147  fmc_Insecticide, // fr_ww_insecticide,
148  fmc_Others, // fr_ww_growth_regulator,
149  fmc_Harvest, // fr_ww_harvest,
150  fmc_Cutting, // fr_ww_straw_chopping,
151  fmc_Others, // fr_ww_hay_bailing,
152  fmc_Fertilizer, // fr_ww_fertilizer1,
153  fmc_Cultivation, // fr_ww_autumn_plough,
154  fmc_Cultivation, // fr_ww_stubble_cultivation,
155  fmc_Fertilizer, // fr_ww_fertilizer2,
156  fmc_Cultivation, // fr_ww_plough,
157  fmc_Cultivation, // fr_ww_stubble_cultivation,
158  fmc_Others, // fr_ww_wait
159 
160  // no foobar entry
161 
162  };
163  // Iterate over the catlist elements and copy them to vector
164  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
165 
166  }

References fmc_Cultivation, fmc_Cutting, fmc_Fertilizer, fmc_Fungicide, fmc_Harvest, fmc_Herbicide, fmc_Insecticide, fmc_Others, FR_WW_BASE, fr_ww_foobar, Crop::m_base_elements_no, and Crop::m_ManagementCategories.

Referenced by FR_WinterWheat().


The documentation for this class was generated from the following files:
LE::GetMDates
int GetMDates(int a, int b)
Definition: Elements.h:405
fmc_Insecticide
Definition: LandscapeFarmingEnums.h:1005
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
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
fr_ww_ammonium_sulphate2
Definition: FR_WinterWheat.h:78
FarmEvent::m_lock
bool m_lock
Definition: Farm.h:384
fr_ww_insecticide
Definition: FR_WinterWheat.h:84
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
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
LE::GetMConstants
int GetMConstants(int a)
Definition: Elements.h:407
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::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
fr_ww_stubble_harrow_y4
Definition: FR_WinterWheat.h:94
fr_ww_herbicide1
Definition: FR_WinterWheat.h:74
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
fmc_Herbicide
Definition: LandscapeFarmingEnums.h:1006
fr_ww_stubble_cultivation
Definition: FR_WinterWheat.h:68
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.
Crop::m_base_elements_no
int m_base_elements_no
Definition: Farm.h:505
fr_ww_wait
Definition: FR_WinterWheat.h:95
Crop::m_first_date
int m_first_date
Definition: Farm.h:501
Farm::FungicideTreat
virtual bool FungicideTreat(LE *a_field, double a_user, int a_days)
Apply fungicide to a_field.
Definition: FarmFuncs.cpp:2101
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
Crop::SimpleEvent
void SimpleEvent(long a_date, int a_todo, bool a_lock)
Adds an event to this crop management.
Definition: Farm.cpp:747
CfgBool::value
bool value() const
Definition: Configurator.h:164
fr_ww_foobar
Definition: FR_WinterWheat.h:96
fmc_Cutting
Definition: LandscapeFarmingEnums.h:1009
FR_WinterWheat::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: FR_WinterWheat.h:120
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
fr_ww_sow
Definition: FR_WinterWheat.h:72
fr_ww_autumn_harrow
Definition: FR_WinterWheat.h:73
Calendar::Date
long Date(void)
Definition: Calendar.h:57
fr_ww_fertilizer1_y4
Definition: FR_WinterWheat.h:89
fr_ww_fertilizer2
Definition: FR_WinterWheat.h:76
fr_ww_herbicide2
Definition: FR_WinterWheat.h:80
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
fr_ww_growth_regulator
Definition: FR_WinterWheat.h:85
Farm::HayBailing
virtual bool HayBailing(LE *a_field, double a_user, int a_days)
Carry out hay bailing on a_field.
Definition: FarmFuncs.cpp:1507
cfg_pest_winterwheat_on
CfgBool cfg_pest_winterwheat_on
Turn on pesticides for winter wheat.
fmc_Others
Definition: LandscapeFarmingEnums.h:1003
Farm::StrawChopping
virtual bool StrawChopping(LE *a_field, double a_user, int a_days)
Carry out straw chopping on a_field.
Definition: FarmFuncs.cpp:1475
fr_ww_stubble_harrow
Definition: FR_WinterWheat.h:70
fr_ww_herbicide3
Definition: FR_WinterWheat.h:81
Calendar::OldDays
long OldDays(void)
Definition: Calendar.h:60
fr_ww_plough_y4
Definition: FR_WinterWheat.h:93
fr_ww_harvest
Definition: FR_WinterWheat.h:86
MapErrorMsg::Warn
void Warn(MapErrorState a_level, std::string a_msg1, std::string a_msg2)
Definition: MapErrorMsg.cpp:69
fr_ww_fertilizer2_y4
Definition: FR_WinterWheat.h:92
fr_ww_hay_bailing
Definition: FR_WinterWheat.h:88
fr_ww_spring_harrow
Definition: FR_WinterWheat.h:75
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
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
fr_ww_ammonium_sulphate3
Definition: FR_WinterWheat.h:79
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
fr_ww_straw_chopping
Definition: FR_WinterWheat.h:87
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
fr_ww_fertilizer1
Definition: FR_WinterWheat.h:66
fr_ww_stubble_cultivation_y4
Definition: FR_WinterWheat.h:91
Farm::BiocideTreat
virtual bool BiocideTreat(LE *a_field, double a_user, int a_days)
Apply Biocide to a_field.
Definition: FarmFuncs.cpp:2175
Crop::m_last_date
int m_last_date
Definition: Farm.h:503
Farm::AutumnPlough
virtual bool AutumnPlough(LE *a_field, double a_user, int a_days)
Carry out a ploughing event in the autumn on a_field.
Definition: FarmFuncs.cpp:212
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
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
Farm::AutumnSow
virtual bool AutumnSow(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 autumn on a_field.
Definition: FarmFuncs.cpp:360
fmc_Harvest
Definition: LandscapeFarmingEnums.h:1012
Farm::GrowthRegulator
virtual bool GrowthRegulator(LE *a_field, double a_user, int a_days)
Apply growth regulator to a_field.
Definition: FarmFuncs.cpp:2070
Calendar::DayInYear
int DayInYear(void)
Definition: Calendar.h:58
fr_ww_start
Definition: FR_WinterWheat.h:64
FR_WW_EVERY_4_YEAR
#define FR_WW_EVERY_4_YEAR
Definition: FR_WinterWheat.h:53
fr_ww_plough
Definition: FR_WinterWheat.h:69
Crop::Crop
Crop(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: Farm.cpp:733
fr_ww_ammonium_sulphate1
Definition: FR_WinterWheat.h:77
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
fr_ww_fungicide1
Definition: FR_WinterWheat.h:82
fr_ww_preseed_cultivation
Definition: FR_WinterWheat.h:71
WARN_BUG
Definition: MapErrorMsg.h:34
ppp_1
Definition: LandscapeFarmingEnums.h:1079
FR_WW_BASE
#define FR_WW_BASE
Definition: FR_WinterWheat.h:55
fmc_Fungicide
Definition: LandscapeFarmingEnums.h:1007
fr_ww_fungicide2
Definition: FR_WinterWheat.h:83
FarmManagementCategory
FarmManagementCategory
Definition: LandscapeFarmingEnums.h:1001
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
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