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

NLSpringBarley class
. More...

#include <NLSpringBarley.h>

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

NLSpringBarley class
.

See NLSpringBarley.h::NLSpringBarleyToDo for a complete list of all possible events triggered codes by the spring barley 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

◆ NLSpringBarley()

NLSpringBarley::NLSpringBarley ( TTypesOfVegetation  a_tov,
TTypesOfCrops  a_toc,
Landscape a_L 
)
inline
81  : Crop(a_tov, a_toc, a_L)
82  {
83  // When we start it off, the first possible date for a farm operation is 5th November
84  // This information is used by other crops when they decide how much post processing of
85  // the management is allowed after harvest before the next crop starts.
86  m_first_date=g_date->DayInYear( 31,10 );
87  m_forcespringpossible = true;
89  }

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

Member Function Documentation

◆ Do()

bool NLSpringBarley::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 spring barley.

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_sb_start:
82  {
83  NL_SB_FUNGII = false;
85 
86  m_last_date = g_date->DayInYear(25, 8); // 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(2 + 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(15, 8); // first possible day of finishing 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(20, 8); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 1) - straw chopping
95  flexdates[2][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 2 (start op 2)
96  flexdates[2][1] = g_date->DayInYear(25, 8); // This date will be moved back as far as necessary and potentially to flexdates 2 (end op 2) - hay bailing
97 
98  // 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
99  int isSpring = 0;
100  if (StartUpCrop(isSpring, flexdates, int(nl_sb_spring_sow))) break;
101 
102  // End single block date checking code. Please see next line comment as well.
103  // Reinit d1 to first possible starting date.
104  d1 = g_date->OldDays() + g_date->DayInYear(1, 9) + isSpring;
105  // OK, let's go.
106  if (m_ev->m_forcespring) {
107  int day_num_shift = 365;
108  if (g_date->DayInYear() < 70) day_num_shift = 0;
109  if (m_field->GetSoilType() == 2 || m_field->GetSoilType() == 6) { // on sandy soils (NL ZAND & LOSS)
110  if (m_farm->IsStockFarmer()) //Stock Farmer
111  {
112  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + day_num_shift, nl_sb_ferti_s1_sandy, false, m_farm, m_field);
113  }
114  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + day_num_shift, nl_sb_ferti_p1_sandy, false, m_farm, m_field);
115  }
116  else {
117  if (m_farm->IsStockFarmer()) //Stock Farmer
118  {
119  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(5, 3) + day_num_shift, nl_sb_ferti_s2_clay, false, m_farm, m_field);
120  }
121  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(5, 3) + day_num_shift, nl_sb_ferti_p2_clay, false, m_farm, m_field);
122  }
123  break;
124  }
125  else {
126  if (m_field->GetSoilType() == 2 || m_field->GetSoilType() == 6) { // on sandy soils (NL ZAND & LOSS)
128  }
130  break;
131  }
132  break;
133  }
134  break;
135 
136  // This is the first real farm operation
138  if (!m_farm->StubbleHarrowing(m_field, 0.0, g_date->DayInYear(31,10) - g_date->DayInYear())) {
140  break;
141  }
142  if (m_farm->IsStockFarmer()) //Stock Farmer
143  {
145  }
146  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + 365, nl_sb_ferti_p1_sandy, false, m_farm, m_field);
147  break;
149  if (m_ev->m_lock || m_farm->DoIt_prob(0.40))
150  {
151  if (!m_farm->FP_Slurry(m_field, 0.0, g_date->DayInYear(25, 3) - g_date->DayInYear())) {
153  break;
154  }
155  }
157  break;
159  if (m_ev->m_lock || m_farm->DoIt_prob(0.40))
160  {
161  if (!m_farm->FA_Slurry(m_field, 0.0, g_date->DayInYear(25, 3) - g_date->DayInYear())) {
163  break;
164  }
165  }
167  break;
169  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
170  {
171  if (!m_farm->SpringPlough(m_field, 0.0, g_date->DayInYear(25, 3) - g_date->DayInYear())) {
173  break;
174  }
175  }
176  if (m_farm->IsStockFarmer()) //Stock Farmer
177  {
179  }
181  break;
183  if (m_ev->m_lock || m_farm->DoIt_prob(0.70))
184  {
185  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 3) - g_date->DayInYear())) {
187  break;
188  }
189  }
190  d1 = g_date->Date() + 1;
191  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 3)) {
192  d1 = g_date->OldDays() + g_date->DayInYear(15, 3);
193  }
194  if (m_farm->IsStockFarmer()) //Stock Farmer
195  {
197  }
198  else SimpleEvent_(d1, nl_sb_ferti_p3, false, m_farm, m_field);
199  break;
201  if (m_ev->m_lock || m_farm->DoIt_prob(0.70))
202  {
203  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 3) - g_date->DayInYear())) {
205  break;
206  }
207  }
208  d1 = g_date->Date() + 1;
209  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 3)) {
210  d1 = g_date->OldDays() + g_date->DayInYear(15, 3);
211  }
212  if (m_farm->IsStockFarmer()) //Stock Farmer
213  {
215  }
216  else SimpleEvent_(d1, nl_sb_ferti_p3, false, m_farm, m_field);
217  break;
219  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
220  {
221  if (!m_farm->StubbleHarrowing(m_field, 0.0, g_date->DayInYear(31, 10) - g_date->DayInYear())) {
223  break;
224  }
225  }
226  d1 = g_date->Date() + 10;
227  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 10)) {
228  d1 = g_date->OldDays() + g_date->DayInYear(15, 10);
229  }
231  break;
233  if (!m_farm->WinterPlough(m_field, 0.0, g_date->DayInYear(1, 12) - g_date->DayInYear())) {
235  break;
236  }
237  if (m_farm->IsStockFarmer()) //Stock Farmer
238  {
240  }
241  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(5, 3) + 365, nl_sb_ferti_p2_clay, false, m_farm, m_field);
242  break;
243  case nl_sb_ferti_p2_clay:
244  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(25, 4) - g_date->DayInYear())) {
246  break;
247  }
248  d1 = g_date->Date() + 1;
249  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 3)) {
250  d1 = g_date->OldDays() + g_date->DayInYear(15, 3);
251  }
252  if (m_farm->IsStockFarmer()) //Stock Farmer
253  {
255  }
256  else SimpleEvent_(d1, nl_sb_ferti_p3, false, m_farm, m_field);
257  break;
258  case nl_sb_ferti_s2_clay:
259  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(25, 4) - g_date->DayInYear())) {
261  break;
262  }
263  d1 = g_date->Date() + 1;
264  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 3)) {
265  d1 = g_date->OldDays() + g_date->DayInYear(15, 3);
266  }
267  if (m_farm->IsStockFarmer()) //Stock Farmer
268  {
270  }
271  else SimpleEvent_(d1, nl_sb_ferti_p3, false, m_farm, m_field);
272  break;
273  case nl_sb_ferti_p3:
274  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
275  {
276  if (!m_farm->FP_NPK(m_field, 0.0, g_date->DayInYear(9, 4) - g_date->DayInYear())) {
278  break;
279  }
280  }
282  break;
283  case nl_sb_ferti_s3:
284  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
285  {
286  if (!m_farm->FA_NPK(m_field, 0.0, g_date->DayInYear(9, 4) - g_date->DayInYear())) {
288  break;
289  }
290  }
292  break;
294  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
295  {
298  break;
299  }
300  else
301  {
303  break;
304  }
305  }
307  break;
308  case nl_sb_spring_sow:
309  if (!m_farm->SpringSow(m_field, 0.0, g_date->DayInYear(10, 4) - g_date->DayInYear())) {
311  break;
312  }
313  // Here is a fork leading to four parallel events
314  SimpleEvent_(g_date->Date() + 3, nl_sb_harrow, false, m_farm, m_field); // Harrowing
315  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 4), nl_sb_herbicide1, false, m_farm, m_field); // Herbidide thread
316  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), nl_sb_fungicide1, false, m_farm, m_field); // Fungicide thread
317  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 5) + m_date_modifier, nl_sb_insecticide1, false, m_farm, m_field); // Insecticide thread = MAIN THREAD
318  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), nl_sb_growth_regulator1, false, m_farm, m_field); // GR thread
319  if (m_farm->IsStockFarmer()) //Stock Farmer // N thread
320  {
322  }
324  break;
328  break;
329  }
330  // Here is a fork leading to four parallel events
331  SimpleEvent_(g_date->Date() + 3, nl_sb_harrow, false, m_farm, m_field); // Harrowing
332  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 4), nl_sb_herbicide1, false, m_farm, m_field); // Herbidide thread
333  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), nl_sb_fungicide1, false, m_farm, m_field); // Fungicide thread
334  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 5) + m_date_modifier, nl_sb_insecticide1, false, m_farm, m_field); // Insecticide thread = MAIN THREAD
335  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), nl_sb_growth_regulator1, false, m_farm, m_field); // GR thread
336  if (m_farm->IsStockFarmer()) //Stock Farmer // N thread
337  {
339  }
341  break;
342  case nl_sb_harrow:
343  if (m_field->GetGreenBiomass() <= 0)
344  {
345  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
346  {
347  if (!m_farm->ShallowHarrow(m_field, 0.0, g_date->DayInYear(20, 4) - g_date->DayInYear())) {
349  break;
350  }
351  }
352  }
353  // end of thread
354  break;
355  case nl_sb_ferti_p4_clay:
356  if (m_ev->m_lock || (m_farm->DoIt_prob(0.50) && (m_field->GetSoilType() != 2 && m_field->GetSoilType() != 6)))
357  {
358  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
360  break;
361  }
362  }
363  // End of thread
364  break;
365  case nl_sb_ferti_s4_clay:
366  if (m_ev->m_lock || (m_farm->DoIt_prob(0.50) && (m_field->GetSoilType() != 2 && m_field->GetSoilType() != 6)))
367  {
368  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
370  break;
371  }
372  }
373  // End of thread
374  break;
375  case nl_sb_herbicide1: // The first of the pesticide managements.
376  // Here comes the herbicide thread
377  if (m_ev->m_lock || m_farm->DoIt_prob(0.90))
378  {
379  if (m_field->GetGreenBiomass() <= 0) {
381  }
382  else
383  {
384  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
386  break;
387  }
388  }
389  }
390  // End of thread
391  break;
392  case nl_sb_fungicide1:
393  // Here comes the fungicide thread
394  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
395  {
396  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
398  break;
399  }
400  NL_SB_FUNGII = true;
401  }
403  break;
404  case nl_sb_fungicide2:
405  if (m_ev->m_lock || (m_farm->DoIt_prob(0.50) && NL_SB_FUNGII == 1)) // 40% of all farmers
406  {
407  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
409  break;
410  }
411  }
412  // End of thread
413  break;
414  case nl_sb_insecticide1:
415  // Here comes the insecticide thread = MAIN THREAD
416  if (m_ev->m_lock || m_farm->DoIt_prob(0.30))
417  {
418  // here we check whether we are using ERA pesticide or not
419  d1 = g_date->DayInYear(30, 6) - g_date->DayInYear();
420  if (!cfg_pest_springbarley_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
421  {
422  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
423  }
424  else {
426  }
427  if (!flag) {
429  break;
430  }
431  }
433  break;
435  // Here comes the GR thread
436  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
437  {
438  if (!m_farm->GrowthRegulator(m_field, 0.0, g_date->DayInYear(15, 5) - g_date->DayInYear())) {
440  break;
441  }
442  }
443  // End of thread
444  break;
445  case nl_sb_harvest:
446  // Here the MAIN thread continues
447  // We don't move harvest days
448  if (!m_farm->Harvest(m_field, 0.0, m_field->GetMDates(1, 0) - g_date->DayInYear())) {
450  break;
451  }
453  break;
455  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
456  {
457  if (!m_farm->StrawChopping(m_field, 0.0, m_field->GetMDates(1, 1) - g_date->DayInYear())) {
459  break;
460  }
461  done = true;
462  break;
463  }
465  break;
466  case nl_sb_hay_bailing:
467  if (!m_farm->HayBailing(m_field, 0.0, m_field->GetMDates(1, 2) - g_date->DayInYear())) {
469  break;
470  }
471  done = true;
472  break;
473  default:
474  g_msg->Warn(WARN_BUG, "PLSpringBarley::Do(): "
475  "Unknown event type! ", "");
476  exit(1);
477  }
478  return done;
479 }

References cfg_pest_product_amounts, cfg_pest_springbarley_on, LE::ClearManagementActionSum(), Calendar::Date(), Calendar::DayInYear(), Farm::DoIt_prob(), Farm::FA_AmmoniumSulphate(), Farm::FA_NPK(), Farm::FA_Slurry(), Farm::FP_AmmoniumSulphate(), Farm::FP_NPK(), Farm::FP_Slurry(), Farm::FungicideTreat(), g_date, g_msg, LE::GetGreenBiomass(), LE::GetMDates(), LE::GetSoilType(), Farm::GrowthRegulator(), Farm::Harvest(), Farm::HayBailing(), 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_sb_ferti_p1_sandy, nl_sb_ferti_p2_clay, nl_sb_ferti_p2_sandy, nl_sb_ferti_p3, nl_sb_ferti_p4_clay, nl_sb_ferti_s1_sandy, nl_sb_ferti_s2_clay, nl_sb_ferti_s2_sandy, nl_sb_ferti_s3, nl_sb_ferti_s4_clay, nl_sb_fungicide1, nl_sb_fungicide2, NL_SB_FUNGII, nl_sb_growth_regulator1, nl_sb_harrow, nl_sb_harvest, nl_sb_hay_bailing, nl_sb_herbicide1, nl_sb_insecticide1, nl_sb_preseeding_cultivator, nl_sb_preseeding_cultivator_sow, nl_sb_spring_plough_sandy, nl_sb_spring_sow, nl_sb_start, nl_sb_straw_chopping, nl_sb_stubble_harrow_clay, nl_sb_stubble_harrow_sandy, nl_sb_winter_plough_clay, Calendar::OldDays(), ppp_1, Farm::PreseedingCultivator(), Farm::PreseedingCultivatorSow(), Farm::ProductApplication(), Farm::ShallowHarrow(), Crop::SimpleEvent_(), Farm::SpringPlough(), Farm::SpringSow(), Crop::StartUpCrop(), Farm::StrawChopping(), Farm::StubbleHarrowing(), tov_NLSpringBarley, CfgBool::value(), CfgArray_Double::value(), MapErrorMsg::Warn(), WARN_BUG, and Farm::WinterPlough().

◆ SetUpFarmCategoryInformation()

void NLSpringBarley::SetUpFarmCategoryInformation ( )
inline
90  {
91  const int elements = 2 + (nl_sb_foobar - NLSPRINGBARLEY_BASE);
93 
94  FarmManagementCategory catlist[elements] =
95  {
96  fmc_Others, // zero element unused but must be here
97  fmc_Others, // nl_sb_start = 1, // Compulsory, must always be 1 (one).
98  fmc_Others, // nl_sb_sleep_all_day = NLSPRINGBARLEY_BASE,
99  fmc_Cultivation, // nl_sb_stubble_harrow_sandy,
100  fmc_Fertilizer, // nl_sb_ferti_p1_sandy,
101  fmc_Fertilizer, // nl_sb_ferti_s1_sandy,
102  fmc_Fertilizer, // nl_sb_ferti_p2_sandy,
103  fmc_Fertilizer, // nl_sb_ferti_s2_sandy,
104  fmc_Cultivation, // nl_sb_spring_plough_sandy,
105  fmc_Cultivation, // nl_sb_stubble_harrow_clay,
106  fmc_Cultivation, // nl_sb_winter_plough_clay,
107  fmc_Fertilizer, // nl_sb_ferti_p2_clay,
108  fmc_Fertilizer, // nl_sb_ferti_s2_clay,
109  fmc_Fertilizer, // nl_sb_ferti_p3,
110  fmc_Fertilizer, // nl_sb_ferti_s3,
111  fmc_Cultivation, // nl_sb_preseeding_cultivator,
112  fmc_Cultivation, // nl_sb_preseeding_cultivator_sow,
113  fmc_Others, // nl_sb_spring_sow,
114  fmc_Cultivation, // nl_sb_harrow,
115  fmc_Fertilizer, // nl_sb_ferti_p4_clay,
116  fmc_Fertilizer, // nl_sb_ferti_s4_clay,
117  fmc_Herbicide, // nl_sb_herbicide1,
118  fmc_Fungicide, // nl_sb_fungicide1,
119  fmc_Fungicide, // nl_sb_fungicide2,
120  fmc_Insecticide, // nl_sb_insecticide1,
121  fmc_Others, // nl_sb_growth_regulator1,
122  fmc_Harvest, // nl_sb_harvest,
123  fmc_Others, // nl_sb_straw_chopping,
124  fmc_Others // nl_sb_hay_bailing,
125 
126  // no foobar entry
127 
128  };
129  // Iterate over the catlist elements and copy them to vector
130  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
131 
132  }

References fmc_Cultivation, fmc_Fertilizer, fmc_Fungicide, fmc_Harvest, fmc_Herbicide, fmc_Insecticide, fmc_Others, Crop::m_base_elements_no, Crop::m_ManagementCategories, nl_sb_foobar, and NLSPRINGBARLEY_BASE.

Referenced by NLSpringBarley().


The documentation for this class was generated from the following files:
LE::GetMDates
int GetMDates(int a, int b)
Definition: Elements.h:405
FarmEvent::m_forcespring
bool m_forcespring
Definition: Farm.h:392
nl_sb_ferti_s2_sandy
Definition: NLSpringBarley.h:43
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
fmc_Insecticide
Definition: LandscapeFarmingEnums.h:1005
nl_sb_winter_plough_clay
Definition: NLSpringBarley.h:46
nl_sb_ferti_p4_clay
Definition: NLSpringBarley.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::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
NLSpringBarley::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: NLSpringBarley.h:90
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::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
nl_sb_preseeding_cultivator_sow
Definition: NLSpringBarley.h:52
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_sb_preseeding_cultivator
Definition: NLSpringBarley.h:51
tov_NLSpringBarley
Definition: LandscapeFarmingEnums.h:255
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
nl_sb_ferti_s1_sandy
Definition: NLSpringBarley.h:41
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
nl_sb_spring_plough_sandy
Definition: NLSpringBarley.h:44
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
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.
nl_sb_harvest
Definition: NLSpringBarley.h:62
CfgBool::value
bool value() const
Definition: Configurator.h:164
nl_sb_stubble_harrow_sandy
Definition: NLSpringBarley.h:39
nl_sb_start
Definition: NLSpringBarley.h:37
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
nl_sb_fungicide1
Definition: NLSpringBarley.h:58
nl_sb_harrow
Definition: NLSpringBarley.h:54
Calendar::Date
long Date(void)
Definition: Calendar.h:57
nl_sb_ferti_s2_clay
Definition: NLSpringBarley.h:48
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
nl_sb_foobar
Definition: NLSpringBarley.h:65
fmc_Cultivation
Definition: LandscapeFarmingEnums.h:1008
LE::GetSoilType
int GetSoilType()
Definition: Elements.h:302
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
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
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_sb_ferti_p2_clay
Definition: NLSpringBarley.h:47
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
cfg_pest_springbarley_on
CfgBool cfg_pest_springbarley_on
Turn on pesticides for spring barley.
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
nl_sb_spring_sow
Definition: NLSpringBarley.h:53
Farm::PreseedingCultivatorSow
virtual bool PreseedingCultivatorSow(LE *a_field, double a_user, int a_days, double a_seed_coating_amount=-1, PlantProtectionProducts a_ppp=ppp_foobar)
Carry out preseeding cultivation together with sow on a_field (tilling and sowing set including culti...
Definition: FarmFuncs.cpp:325
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_sb_insecticide1
Definition: NLSpringBarley.h:60
nl_sb_stubble_harrow_clay
Definition: NLSpringBarley.h:45
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
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
nl_sb_hay_bailing
Definition: NLSpringBarley.h:64
nl_sb_straw_chopping
Definition: NLSpringBarley.h:63
Crop::m_last_date
int m_last_date
Definition: Farm.h:503
g_msg
MapErrorMsg * g_msg
Definition: MapErrorMsg.cpp:41
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
nl_sb_ferti_p3
Definition: NLSpringBarley.h:49
TTypesOfVegetation
TTypesOfVegetation
Values that represent the types of vegetation that are represented in ALMaSS.
Definition: LandscapeFarmingEnums.h:192
nl_sb_ferti_p1_sandy
Definition: NLSpringBarley.h:40
nl_sb_herbicide1
Definition: NLSpringBarley.h:57
nl_sb_fungicide2
Definition: NLSpringBarley.h:59
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
fmc_Harvest
Definition: LandscapeFarmingEnums.h:1012
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
nl_sb_ferti_s3
Definition: NLSpringBarley.h:50
NL_SB_FUNGII
#define NL_SB_FUNGII
A flag used to indicate autumn ploughing status.
Definition: NLSpringBarley.h:28
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
Crop::Crop
Crop(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: Farm.cpp:733
NLSPRINGBARLEY_BASE
#define NLSPRINGBARLEY_BASE
Definition: NLSpringBarley.h:24
Crop::m_forcespringpossible
bool m_forcespringpossible
Used to signal that the crop can be forced to start in spring.
Definition: Farm.h:508
nl_sb_ferti_p2_sandy
Definition: NLSpringBarley.h:42
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
nl_sb_growth_regulator1
Definition: NLSpringBarley.h:61
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_sb_ferti_s4_clay
Definition: NLSpringBarley.h:56
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
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