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

DE_Oats class
. More...

#include <DE_Oats.h>

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

DE_Oats class
.

See DE_Oats.h::DE_OatsToDo for a complete list of all possible events triggered codes by the Oats 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

◆ DE_Oats()

DE_Oats::DE_Oats ( TTypesOfVegetation  a_tov,
TTypesOfCrops  a_toc,
Landscape a_L 
)
inline

When we start it off, the first possible date for a farm operation is 15th September This information is used by other crops when they decide how much post processing of the management is allowed after harvest before the next crop starts.

106  : Crop(a_tov, a_toc, a_L)
107  {
113  m_first_date=g_date->DayInYear( 31,10 );
114  m_forcespringpossible = true;
116  }

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

Member Function Documentation

◆ Do()

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

Reimplemented from Crop.

63 {
64  /******************** This block can be added to the top of all Crop::Do methods ***********************************************/
65  m_farm = a_farm; // These assignments are necessary, not for this method but for related event calls
66  m_field = a_field;
67  m_ev = a_ev;
68  bool done = false; // The boolean value done indicates when we are totally finished with this plan (i.e. it is set to true).
69  bool flag = false;
70  int d1 = 0;
71  TTypesOfVegetation l_tov = tov_DEOats; // The current type - change to match the crop you have
72 /**********************************************To Here *************************************************************************/
73  // Depending what event has occured jump to the correct bit of code
74  switch (m_ev->m_todo)
75  {
76  case de_o_start:
77  {
78  DE_O_FUNGII = false;
79 
81 
82  m_last_date = g_date->DayInYear(15, 8); // Should match the last flexdate below
83  //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
84  std::vector<std::vector<int>> flexdates(2 + 1, std::vector<int>(2, 0));
85  // Set up the date management stuff
86  // Start and stop dates for all events after harvest
87  flexdates[0][1] = g_date->DayInYear(10, 8); // last possible day of harvest - this is in effect day before the earliest date that a following crop can use
88  // Now these are done in pairs, start & end for each operation. If its not used then -1
89  flexdates[1][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 1 (start op 1)
90  flexdates[1][1] = g_date->DayInYear(15, 8); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 1)
91  flexdates[2][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 1 (start op 1)
92  flexdates[2][1] = g_date->DayInYear(15, 8); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 2)
93 
94  // 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
95  int isSpring = 0;
96  if (StartUpCrop(isSpring, flexdates, int(de_o_spring_sow))) break;
97 
98  // End single block date checking code. Please see next line comment as well.
99  // Reinit d1 to first possible starting date.
100  d1 = g_date->OldDays() + g_date->DayInYear(1, 9) + isSpring;
101  // OK, let's go.
102  // Here we queue up the first event which changes dependent on whether it is a forced spring sow or not
103  if (m_ev->m_forcespring) {
104  int day_num_shift = 365;
105  if (g_date->DayInYear() < 70) day_num_shift = 0;
106  if (m_field->GetSoilType() == 1 || m_field->GetSoilType() == 2 || m_field->GetSoilType() == 3 || m_field->GetSoilType() == 4) { // on sandy soils
107  if (m_farm->IsStockFarmer()) //Stock Farmer
108  {
109  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + day_num_shift, de_o_ferti_s1_sandy, false, m_farm, m_field);
110  }
111  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + day_num_shift, de_o_ferti_p1_sandy, false, m_farm, m_field);
112  break;
113  }
114  else {
115  SimpleEvent(g_date->OldDays() + g_date->DayInYear(15, 3) + day_num_shift, de_o_preseeding_cultivator, false);
116  break;
117  }
118  }
119  else {
120  // This differs depending on whether we have field on sandy (1-4) or clay soils
121  if (m_field->GetSoilType() == 1 || m_field->GetSoilType() == 2 || m_field->GetSoilType() == 3 || m_field->GetSoilType() == 4) { // on sandy soils
123  }
125  break;
126  }
127  }
128  break;
129 
130  // This is the first real farm operation
132  if (!m_farm->StubbleHarrowing(m_field, 0.0, g_date->DayInYear(31, 10) - g_date->DayInYear())) {
134  break;
135  }
136  if (m_farm->IsStockFarmer()) //Stock Farmer
137  {
139  }
140  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + 365, de_o_ferti_p1_sandy, false, m_farm, m_field);
141  break;
142  case de_o_ferti_p1_sandy:
143  if (m_ev->m_lock || m_farm->DoIt_prob(0.40))
144  {
145  if (!m_farm->FP_Slurry(m_field, 0.0, g_date->DayInYear(25, 3) - g_date->DayInYear())) {
147  break;
148  }
149  }
151  break;
152  case de_o_ferti_s1_sandy:
153  if (m_ev->m_lock || m_farm->DoIt_prob(0.40))
154  {
155  if (!m_farm->FA_Slurry(m_field, 0.0, g_date->DayInYear(25, 3) - g_date->DayInYear())) {
157  break;
158  }
159  }
161  break;
163  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
164  {
165  if (!m_farm->SpringPlough(m_field, 0.0, g_date->DayInYear(25, 3) - g_date->DayInYear())) {
167  break;
168  }
169  }
171  break;
173  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
174  {
175  if (!m_farm->StubbleHarrowing(m_field, 0.0, g_date->DayInYear(31, 10) - g_date->DayInYear())) {
177  break;
178  }
179  }
180  d1 = g_date->Date() + 10;
181  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 10)) {
182  d1 = g_date->OldDays() + g_date->DayInYear(15, 10);
183  }
185  break;
187  if (!m_farm->WinterPlough(m_field, 0.0, g_date->DayInYear(1, 12) - g_date->DayInYear())) {
189  break;
190  }
192  break;
194  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
195  {
196  if (!m_farm->PreseedingCultivator(m_field, 0.0, g_date->DayInYear(14, 4) - g_date->DayInYear())) {
198  break;
199  }
200  else
201  {
203  break;
204  }
205  }
207  break;
208  case de_o_spring_sow:
209  if (!m_farm->SpringSow(m_field, 0.0, g_date->DayInYear(15, 4) - g_date->DayInYear())) {
211  break;
212  }
213  // Here is a fork leading to four parallel events
214  SimpleEvent_(g_date->Date() + 3, de_o_harrow, false, m_farm, m_field); // Harrowing
215  d1 = g_date->Date();
216  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 4)) {
217  d1 = g_date->OldDays() + g_date->DayInYear(15, 4);
218  }
219  SimpleEvent_(d1, de_o_herbicide1, false, m_farm, m_field); // Herbidide thread
220  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), de_o_fungicide1, false, m_farm, m_field); // Fungicide thread
221  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 5) + m_date_modifier, de_o_insecticide1, false, m_farm, m_field); // Insecticide thread = MAIN THREAD
222  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), de_o_growth_regulator1, false, m_farm, m_field); // GR thread
223  if (m_farm->IsStockFarmer()) //Stock Farmer // N thread
224  {
226  }
227  else SimpleEvent_(g_date->Date() + 1, de_o_ferti_p2, false, m_farm, m_field);
228  break;
232  break;
233  }
234  // Here is a fork leading to four parallel events
235  SimpleEvent_(g_date->Date() + 3, de_o_harrow, false, m_farm, m_field); // Harrowing
236  d1 = g_date->Date();
237  if (d1 < g_date->OldDays() + g_date->DayInYear(15, 4)) {
238  d1 = g_date->OldDays() + g_date->DayInYear(15, 4);
239  }
240  SimpleEvent_(d1, de_o_herbicide1, false, m_farm, m_field); // Herbidide thread
241  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), de_o_fungicide1, false, m_farm, m_field); // Fungicide thread
242  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 5) + m_date_modifier, de_o_insecticide1, false, m_farm, m_field); // Insecticide thread = MAIN THREAD
243  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), de_o_growth_regulator1, false, m_farm, m_field); // GR thread
244  if (m_farm->IsStockFarmer()) //Stock Farmer // N thread
245  {
247  }
248  else SimpleEvent_(g_date->Date() + 1, de_o_ferti_p2, false, m_farm, m_field);
249  break;
250  case de_o_ferti_p2:
251  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
253  break;
254  }
255  d1 = g_date->Date() + 7;
256  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 4)) {
257  d1 = g_date->OldDays() + g_date->DayInYear(1, 4);
258  }
259  if (m_farm->IsStockFarmer()) //Stock Farmer
260  {
262  }
263  else SimpleEvent_(d1, de_o_ferti_p3, false, m_farm, m_field);
264  break;
265  case de_o_ferti_s2:
266  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
268  break;
269  }
270  d1 = g_date->Date() + 7;
271  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 4)) {
272  d1 = g_date->OldDays() + g_date->DayInYear(1, 4);
273  }
274  if (m_farm->IsStockFarmer()) //Stock Farmer
275  {
277  }
278  else SimpleEvent_(d1, de_o_ferti_p3, false, m_farm, m_field);
279  break;
280  case de_o_ferti_p3:
281  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
282  {
283  if (!m_farm->FP_NPK(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
285  break;
286  }
287  }
288  d1 = g_date->Date() + 7;
289  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 5)) {
290  d1 = g_date->OldDays() + g_date->DayInYear(1, 5);
291  }
292  if (m_farm->IsStockFarmer()) //Stock Farmer
293  {
295  }
296  else SimpleEvent_(d1, de_o_ferti_p4_clay, false, m_farm, m_field);
297  break;
298  case de_o_ferti_s3:
299  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
300  {
301  if (!m_farm->FA_NPK(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
303  break;
304  }
305  }
306  d1 = g_date->Date() + 7;
307  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 5)) {
308  d1 = g_date->OldDays() + g_date->DayInYear(1, 5);
309  }
310  if (m_farm->IsStockFarmer()) //Stock Farmer
311  {
313  }
314  else SimpleEvent_(d1, de_o_ferti_p4_clay, false, m_farm, m_field);
315  break;
316  case de_o_ferti_p4_clay: // not on sandy soils
317  if (m_ev->m_lock || (m_farm->DoIt_prob(0.50) && (m_field->GetSoilType() != 1 && m_field->GetSoilType() != 2 && m_field->GetSoilType() != 3 && m_field->GetSoilType() != 4))) {
318  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
320  break;
321  }
322  }
323  // End of thread
324  break;
325  case de_o_ferti_s4_clay: // not on sandy soils
326  if (m_ev->m_lock || (m_farm->DoIt_prob(0.50) && (m_field->GetSoilType() != 1 && m_field->GetSoilType() != 2 && m_field->GetSoilType() != 3 && m_field->GetSoilType() != 4)))
327  {
328  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
330  break;
331  }
332  }
333  // End of thread
334  break;
335  case de_o_harrow:
336  if (m_field->GetGreenBiomass() <= 0)
337  {
338  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
339  {
340  if (!m_farm->ShallowHarrow(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
342  break;
343  }
344  }
345  }
346  // end of thread
347  break;
348  case de_o_herbicide1: // The first of the pesticide managements.
349  // Here comes the herbicide thread
350  if (m_ev->m_lock || m_farm->DoIt_prob(0.90))
351  {
352  if (m_field->GetGreenBiomass() <= 0) {
354  }
355  else
356  {
357  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
359  break;
360  }
361  }
362  }
363  // End of thread
364  break;
365  case de_o_fungicide1:
366  // Here comes the fungicide thread
367  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
368  {
369  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
371  break;
372  }
373  DE_O_FUNGII = true;
374  }
376  break;
377  case de_o_fungicide2:
378  if (m_ev->m_lock || (m_farm->DoIt_prob(0.50) && DE_O_FUNGII == 1)) // 40% of all farmers
379  {
380  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
382  break;
383  }
384  }
385  // End of thread
386  break;
387  case de_o_insecticide1:
388  // Here comes the insecticide thread = MAIN THREAD
389  // here we check whether we are using ERA pesticide or not
390  d1 = g_date->DayInYear(30, 6) - g_date->DayInYear();
392  {
393  if (!cfg_pest_oats_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
394  {
395  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
396  }
397  else {
399  }
400  if (!flag) {
402  break;
403  }
404  }
406  break;
408  // Here comes the GR thread
409  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
410  {
411  if (!m_farm->GrowthRegulator(m_field, 0.0, g_date->DayInYear(15, 5) - g_date->DayInYear())) {
413  break;
414  }
415  }
416  // End of thread
417  break;
418  case de_o_harvest:
419  // Here the MAIN thread continues
420  // We don't move harvest days
421  if (!m_farm->Harvest(m_field, 0.0, m_field->GetMDates(1, 0) - g_date->DayInYear())) {
423  break;
424  }
426  break;
427  case de_o_straw_chopping:
428  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
429  {
430  if (!m_farm->StrawChopping(m_field, 0.0, m_field->GetMDates(1, 1) - g_date->DayInYear())) {
432  break;
433  }
434  done = true;
435  break;
436  }
438  break;
439  case de_o_hay_bailing:
440  if (!m_farm->HayBailing(m_field, 0.0, m_field->GetMDates(1, 2) - g_date->DayInYear())) {
442  break;
443  }
444  done = true;
445  break;
446  default:
447  g_msg->Warn(WARN_BUG, "DE_Oats::Do(): "
448  "Unknown event type! ", "");
449  exit(1);
450  }
451  return done;
452 }

References cfg_pest_oats_on, cfg_pest_product_amounts, LE::ClearManagementActionSum(), Calendar::Date(), Calendar::DayInYear(), de_o_ferti_p1_sandy, de_o_ferti_p2, de_o_ferti_p3, de_o_ferti_p4_clay, de_o_ferti_s1_sandy, de_o_ferti_s2, de_o_ferti_s3, de_o_ferti_s4_clay, de_o_fungicide1, de_o_fungicide2, DE_O_FUNGII, de_o_growth_regulator1, de_o_harrow, de_o_harvest, de_o_hay_bailing, de_o_herbicide1, de_o_insecticide1, de_o_preseeding_cultivator, de_o_preseeding_cultivator_sow, de_o_spring_plough_sandy, de_o_spring_sow, de_o_start, de_o_straw_chopping, de_o_stubble_harrow_clay, de_o_stubble_harrow_sandy, de_o_winter_plough_clay, 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_landscape_ptr, 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, Calendar::OldDays(), ppp_1, Farm::PreseedingCultivator(), Farm::PreseedingCultivatorSow(), Farm::ProductApplication(), Farm::ShallowHarrow(), Crop::SimpleEvent(), Crop::SimpleEvent_(), Farm::SpringPlough(), Farm::SpringSow(), Crop::StartUpCrop(), Farm::StrawChopping(), Farm::StubbleHarrowing(), Landscape::SupplyPestIncidenceFactor(), tov_DEOats, CfgBool::value(), CfgArray_Double::value(), MapErrorMsg::Warn(), WARN_BUG, and Farm::WinterPlough().

◆ SetUpFarmCategoryInformation()

void DE_Oats::SetUpFarmCategoryInformation ( )
inline
117  {
118  const int elements = 2 + (de_o_foobar - DE_OATS_BASE);
120 
121  FarmManagementCategory catlist[elements] =
122  {
123  fmc_Others, // zero element unused but must be here
124  // ALL THE NECESSARY ENTRIES HERE
125  fmc_Others, // de_o_start = 1, // Compulsory, must always be 1 (one).
126  fmc_Others, // de_o_sleep_all_day
127  fmc_Cultivation, // de_o_stubble_harrow_sandy,
128  fmc_Fertilizer, // de_o_ferti_p1_sandy,
129  fmc_Fertilizer, // de_o_ferti_s1_sandy,
130  fmc_Cultivation, // de_o_spring_plough_sandy,
131  fmc_Cultivation, // de_o_stubble_harrow_clay,
132  fmc_Cultivation, // de_o_winter_plough_clay,
133  fmc_Fertilizer, // de_o_ferti_p2,
134  fmc_Fertilizer, // de_o_ferti_s2,
135  fmc_Fertilizer, // de_o_ferti_p3,
136  fmc_Fertilizer, // de_o_ferti_s3,
137  fmc_Cultivation, // de_o_preseeding_cultivator,
138  fmc_Cultivation, // de_o_preseeding_cultivator_sow,
139  fmc_Others, // de_o_spring_sow,
140  fmc_Cultivation, // de_o_harrow,
141  fmc_Fertilizer, // de_o_ferti_p4_clay,
142  fmc_Fertilizer, // de_o_ferti_s4_clay,
143  fmc_Herbicide, // de_o_herbicide1,
144  fmc_Fungicide, // de_o_fungicide1,
145  fmc_Fungicide, // de_o_fungicide2,
146  fmc_Insecticide, // de_o_insecticide1,
147  fmc_Others, // de_o_growth_regulator1,
148  fmc_Harvest, // de_o_harvest,
149  fmc_Others, // de_o_straw_chopping,
150  fmc_Others, // de_o_hay_bailing,
151 
152  // no foobar entry
153 
154  };
155  // Iterate over the catlist elements and copy them to vector
156  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
157 
158  }

References de_o_foobar, DE_OATS_BASE, fmc_Cultivation, fmc_Fertilizer, fmc_Fungicide, fmc_Harvest, fmc_Herbicide, fmc_Insecticide, fmc_Others, Crop::m_base_elements_no, and Crop::m_ManagementCategories.

Referenced by DE_Oats().


The documentation for this class was generated from the following files:
LE::GetMDates
int GetMDates(int a, int b)
Definition: Elements.h:405
de_o_stubble_harrow_sandy
Definition: DE_Oats.h:66
FarmEvent::m_forcespring
bool m_forcespring
Definition: Farm.h:392
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
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
de_o_straw_chopping
Definition: DE_Oats.h:88
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
tov_DEOats
Definition: LandscapeFarmingEnums.h:479
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
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
de_o_harrow
Definition: DE_Oats.h:79
de_o_ferti_s3
Definition: DE_Oats.h:75
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
de_o_ferti_p3
Definition: DE_Oats.h:74
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
de_o_harvest
Definition: DE_Oats.h:87
Crop::m_base_elements_no
int m_base_elements_no
Definition: Farm.h:505
cfg_pest_oats_on
CfgBool cfg_pest_oats_on
Turn on pesticides for spring oats.
de_o_spring_sow
Definition: DE_Oats.h:78
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
de_o_ferti_s4_clay
Definition: DE_Oats.h:81
Farm::FungicideTreat
virtual bool FungicideTreat(LE *a_field, double a_user, int a_days)
Apply fungicide to a_field.
Definition: FarmFuncs.cpp:2101
de_o_ferti_p2
Definition: DE_Oats.h:72
DE_OATS_BASE
#define DE_OATS_BASE
Definition: DE_Oats.h:52
Crop::SimpleEvent
void SimpleEvent(long a_date, int a_todo, bool a_lock)
Adds an event to this crop management.
Definition: Farm.cpp:747
de_o_foobar
Definition: DE_Oats.h:90
CfgBool::value
bool value() const
Definition: Configurator.h:164
de_o_winter_plough_clay
Definition: DE_Oats.h:71
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
de_o_ferti_p4_clay
Definition: DE_Oats.h:80
Calendar::Date
long Date(void)
Definition: Calendar.h:57
de_o_spring_plough_sandy
Definition: DE_Oats.h:69
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
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
de_o_fungicide1
Definition: DE_Oats.h:83
de_o_fungicide2
Definition: DE_Oats.h:84
MapErrorMsg::Warn
void Warn(MapErrorState a_level, std::string a_msg1, std::string a_msg2)
Definition: MapErrorMsg.cpp:69
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
Landscape::SupplyPestIncidenceFactor
double SupplyPestIncidenceFactor()
Returns Landscape::m_pestincidencefactor.
Definition: Landscape.h:325
DE_Oats::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: DE_Oats.h:117
g_landscape_ptr
Landscape * g_landscape_ptr
Definition: Landscape.cpp:352
de_o_herbicide1
Definition: DE_Oats.h:82
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
de_o_hay_bailing
Definition: DE_Oats.h:89
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
de_o_ferti_s2
Definition: DE_Oats.h:73
de_o_stubble_harrow_clay
Definition: DE_Oats.h:70
CfgArray_Double::value
std::vector< double > value() const
Definition: Configurator.h:219
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
de_o_ferti_s1_sandy
Definition: DE_Oats.h:68
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
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.
de_o_ferti_p1_sandy
Definition: DE_Oats.h:67
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
TTypesOfVegetation
TTypesOfVegetation
Values that represent the types of vegetation that are represented in ALMaSS.
Definition: LandscapeFarmingEnums.h:192
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
de_o_growth_regulator1
Definition: DE_Oats.h:86
Farm::GrowthRegulator
virtual bool GrowthRegulator(LE *a_field, double a_user, int a_days)
Apply growth regulator to a_field.
Definition: FarmFuncs.cpp:2070
de_o_preseeding_cultivator
Definition: DE_Oats.h:76
Calendar::DayInYear
int DayInYear(void)
Definition: Calendar.h:58
de_o_preseeding_cultivator_sow
Definition: DE_Oats.h:77
Crop::Crop
Crop(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: Farm.cpp:733
DE_O_FUNGII
#define DE_O_FUNGII
A flag used to indicate autumn ploughing status.
Definition: DE_Oats.h:56
Crop::m_forcespringpossible
bool m_forcespringpossible
Used to signal that the crop can be forced to start in spring.
Definition: Farm.h:508
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
de_o_insecticide1
Definition: DE_Oats.h:85
WARN_BUG
Definition: MapErrorMsg.h:34
ppp_1
Definition: LandscapeFarmingEnums.h:1079
de_o_start
Definition: DE_Oats.h:64
fmc_Fungicide
Definition: LandscapeFarmingEnums.h:1007
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
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