Loading [MathJax]/extensions/ams.js
ALMaSS  1.2 (after EcoStack, March 2024)
The Animal, Landscape and Man Simulation System
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DE_Cabbage Class Reference

DE_Cabbage class
. More...

#include <DE_Cabbage.h>

Inheritance diagram for DE_Cabbage:
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_Cabbage (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_Cabbage class
.

See DE_Cabbage.h::DECabbageToDo 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

◆ DE_Cabbage()

DE_Cabbage::DE_Cabbage ( TTypesOfVegetation  a_tov,
TTypesOfCrops  a_toc,
Landscape a_L 
)
inline
106  : Crop(a_tov, a_toc, a_L)
107  {
108  // When we start it off, the first possible date for a farm operation is 1st October
109  // This information is used by other crops when they decide how much post processing of
110  // the management is allowed after harvest before the next crop starts.
111  m_first_date=g_date->DayInYear( 1,12 );
113  }

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

Member Function Documentation

◆ Do()

bool DE_Cabbage::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.

92 {
93  /******************** This block can be added to the top of all Crop::Do methods ***********************************************/
94  m_farm = a_farm; // These assignments are necessary, not for this method but for related event calls
95  m_field = a_field;
96  m_ev = a_ev;
97  bool done = false; // The boolean value done indicates when we are totally finished with this plan (i.e. it is set to true).
98  bool flag = false;
99  int d1 = 0;
100  TTypesOfVegetation l_tov = tov_DECabbage; // The current type - change to match the crop you have
101 /**********************************************To Here *************************************************************************/
102 
103  switch (m_ev->m_todo)
104  {
105  case de_cab_start:
106  {
108 
109  m_last_date = g_date->DayInYear(15, 11); // Should match the last flexdate below
110  //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
111  std::vector<std::vector<int>> flexdates(1 + 1, std::vector<int>(2, 0));
112  // Set up the date management stuff
113  // Start and stop dates for all events after harvest
114  flexdates[0][1] = g_date->DayInYear(15, 11); // last possible day of harvest - this is in effect day before the earliest date that a following crop can use
115 
116  flexdates[1][0] = -1; // This date will be moved back as far as necessary and potentially to flexdates 1 (start op 1)
117  flexdates[1][1] = g_date->DayInYear(15, 11); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 1)
118 
119  // 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
120  int isSpring = 0;
121  if (StartUpCrop(isSpring, flexdates, int(de_cab_spring_planting))) break;
122 
123  // End single block date checking code. Please see next line comment as well.
124  // Reinit d1 to first possible starting date.
125  d1 = g_date->OldDays() + g_date->DayInYear(1, 10) + isSpring;
126  // OK, let's go.
127  // Here we queue up the first event which changes dependent on whether it is a forced spring sow or not
128  if (m_ev->m_forcespring) {
129  int day_num_shift = 365;
130  if (g_date->DayInYear() < 70) day_num_shift = 0;
131  if (m_farm->IsStockFarmer()) //Stock Farmer
132  {
133  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + day_num_shift, de_cab_ferti_s1, false, m_farm, m_field);
134  break;
135  }
136  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + day_num_shift, de_cab_ferti_p1, false, m_farm, m_field);
137  break;
138  }
140  break;
141  }
142  break;
143 
144  // This is the first real farm operation
145  case de_cab_winter_plough_clay: // not on sandy soils (1-4)
146  if (m_ev->m_lock || (m_farm->DoIt_prob(0.80) && (m_field->GetSoilType() != 1 && m_field->GetSoilType() != 2 && m_field->GetSoilType() != 3 && m_field->GetSoilType() != 4))) {
147  if (!m_farm->WinterPlough(m_field, 0.0, g_date->DayInYear(1, 12) - g_date->DayInYear())) {
149  break;
150  }
151  }
152  if (m_farm->IsStockFarmer()) //Stock Farmer
153  {
155  }
156  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 3) + 365, de_cab_ferti_p1, false, m_farm, m_field);
157  break;
158  case de_cab_ferti_s1:
159  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
160  {
161  if (!m_farm->FA_Slurry(m_field, 0.0, g_date->DayInYear(31, 3) - g_date->DayInYear())) {
163  break;
164  }
165  }
167  break;
168  case de_cab_ferti_p1:
169  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
170  {
171  if (!m_farm->FP_Slurry(m_field, 0.0, g_date->DayInYear(31, 3) - g_date->DayInYear())) {
173  break;
174  }
175  }
177  break;
178  case de_cab_spring_plough_sandy: // on sandy soils (1-4)
179  if (m_ev->m_lock || (m_farm->DoIt_prob(0.80) && (m_field->GetSoilType() == 1 || m_field->GetSoilType() == 2 || m_field->GetSoilType() == 3 || m_field->GetSoilType() == 4))) {
180  if (!m_farm->SpringPlough(m_field, 0.0, g_date->DayInYear(1, 4) - g_date->DayInYear())) {
182  break;
183  }
184  }
185  d1 = g_date->Date() + 7;
186  if (d1 < g_date->OldDays() + g_date->DayInYear(25, 3)) {
187  d1 = g_date->OldDays() + g_date->DayInYear(25, 3);
188  }
189  if (m_farm->IsStockFarmer()) //Stock Farmer
190  {
192  }
193  else SimpleEvent_(d1, de_cab_ferti_p2, false, m_farm, m_field);
194  break;
195  case de_cab_ferti_s2:
196  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
197  {
198  if (!m_farm->FA_NPK(m_field, 0.0, g_date->DayInYear(15, 4) - g_date->DayInYear())) {
200  break;
201  }
202  }
203  d1 = g_date->Date() + 1;
204  if (d1 < g_date->OldDays() + g_date->DayInYear(10, 4)) {
205  d1 = g_date->OldDays() + g_date->DayInYear(10, 4);
206  }
208  break;
209  case de_cab_ferti_p2:
210  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
211  {
212  if (!m_farm->FP_NPK(m_field, 0.0, g_date->DayInYear(15, 4) - g_date->DayInYear())) {
214  break;
215  }
216  }
217  d1 = g_date->Date() + 1;
218  if (d1 < g_date->OldDays() + g_date->DayInYear(10, 4)) {
219  d1 = g_date->OldDays() + g_date->DayInYear(10, 4);
220  }
222  break;
224  if (!m_farm->PreseedingCultivator(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
226  break;
227  }
229  break;
231  if (!m_farm->SpringSow(m_field, 0.0, g_date->DayInYear(1, 5) - g_date->DayInYear())) {
233  break;
234  }
235  // Here is a fork leading to four parallel events
236  SimpleEvent_(g_date->Date() + 5, de_cab_weeding1, false, m_farm, m_field); // Weeding thread
237  SimpleEvent_(g_date->Date() + 5, de_cab_herbicide, false, m_farm, m_field); // herbicide thread
238  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 7), de_cab_fungicide1, false, m_farm, m_field); // Fungicide thread
239  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 8) + m_date_modifier, de_cab_insecticide1, false, m_farm, m_field); // Insecticide thread = MAIN THREAD
240  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 6), de_cab_watering, false, m_farm, m_field); // Watering thread
241  if (m_farm->IsStockFarmer()) //Stock Farmer
242  {
243  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 5), de_cab_ferti_s3, false, m_farm, m_field); // N thread
244  }
246  if (m_farm->IsStockFarmer()) //Stock Farmer
247  {
248  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 6), de_cab_ferti_s5, false, m_farm, m_field); // microelements thread
249  }
251  break;
252  case de_cab_ferti_s3:
253  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
255  break;
256  }
258  break;
259  case de_cab_ferti_p3:
260  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
262  break;
263  }
265  break;
266  case de_cab_ferti_s4:
267  if (m_ev->m_lock || m_farm->DoIt_prob(0.60))
268  {
269  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
271  break;
272  }
273  }
274  // End of thread
275  break;
276  case de_cab_ferti_p4:
277  if (m_ev->m_lock || m_farm->DoIt_prob(0.60))
278  {
279  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
281  break;
282  }
283  }
284  // End of thread
285  break;
286  case de_cab_ferti_s5:
287  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
288  {
289  if (!m_farm->FA_ManganeseSulphate(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
291  break;
292  }
293  }
294  // End of thread
295  break;
296  case de_cab_ferti_p5:
297  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
298  {
299  if (!m_farm->FP_ManganeseSulphate(m_field, 0.0, g_date->DayInYear(15, 6) - g_date->DayInYear())) {
301  break;
302  }
303  }
304  // End of thread
305  break;
306  case de_cab_watering:
307  if (m_ev->m_lock || m_farm->DoIt_prob(0.50))
308  {
309  if (!m_farm->Water(m_field, 0.0, g_date->DayInYear(31, 7) - g_date->DayInYear())) {
311  break;
312  }
313  }
314  // End of thread
315  break;
316  case de_cab_weeding1:
317  if (m_field->GetGreenBiomass() <= 0)
318  {
319  if (m_ev->m_lock || m_farm->DoIt_prob(0.20))
320  {
321  if (!m_farm->ShallowHarrow(m_field, 0.0, g_date->DayInYear(1, 6) - g_date->DayInYear())) {
323  break;
324  }
325  }
326  }
327  // end of thread
328  break;
329  case de_cab_herbicide:
330  if (m_field->GetGreenBiomass() <= 0)
331  {
332  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
333  {
334  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(10, 5) - g_date->DayInYear())) {
336  break;
337  }
338  }
339  }
340  // End of thread
341  break;
342  case de_cab_fungicide1:
343  // Here comes the fungicide thread
344  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(10, 7) - g_date->DayInYear())) {
346  break;
347  }
349  break;
350  case de_cab_fungicide2:
351  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(5, 8) - g_date->DayInYear())) {
353  break;
354  }
356  break;
357  case de_cab_fungicide3:
358  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
359  {
360  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(20, 8) - g_date->DayInYear())) {
362  break;
363  }
364  }
365  // End of thread
366  break;
367  case de_cab_insecticide1:
368  // Here comes the insecticide thread
369  // here we check whether we are using ERA pesticide or not
370  d1 = g_date->DayInYear(25, 8) - g_date->DayInYear();
372  {
373  if (!cfg_pest_cabbage_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
374  {
375  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
376  }
377  else {
378  flag = m_farm->ProductApplication(m_field, 0.0, d1, cfg_pest_product_amounts.value(0), ppp_1, false, 3);
379  }
380  if (!flag) {
382  break;
383  }
384  }
386  break;
387  case de_cab_insecticide2:
388  // here we check wheter we are using ERA pesticide or not
389  d1 = g_date->DayInYear(10, 9) - g_date->DayInYear();
391  {
392  if (!cfg_pest_cabbage_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
393  {
394  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
395  }
396  else {
397  flag = m_farm->ProductApplication(m_field, 0.0, d1, cfg_pest_product_amounts.value(0), ppp_1, false, 3);
398  }
399  if (!flag) {
401  break;
402  }
403  }
405  break;
406  case de_cab_insecticide3:
407  // here we check wheter we are using ERA pesticide or not
408  d1 = g_date->DayInYear(25, 9) - g_date->DayInYear();
410  {
411  if (!cfg_pest_cabbage_on.value() || !m_field->GetLandscape()->SupplyShouldSpray()) // Not using pesticide spray
412  {
413  flag = m_farm->InsecticideTreat(m_field, 0.0, d1);
414  }
415  else {
416  flag = m_farm->ProductApplication(m_field, 0.0, d1, cfg_pest_product_amounts.value(0), ppp_1, false, 3);
417  }
418  if (!flag) {
420  break;
421  }
422  }
423  d1 = g_date->Date() + 10;
424  if (d1 < g_date->OldDays() + g_date->DayInYear(10, 10)) {
425  d1 = g_date->OldDays() + g_date->DayInYear(10, 10);
426  }
428  break;
429  case de_cab_harvest:
430  // Here the MAIN thread continues
431  // We don't move harvest days
432  if (!m_farm->Harvest(m_field, 0.0, m_field->GetMDates(1, 0) - g_date->DayInYear())) {
434  break;
435  }
436  done = true;
437  // So we are done, and somwhere else the farmer will queue up the start event of the next crop
438  // END of MAIN THREAD
439  break;
440  default:
441  g_msg->Warn(WARN_BUG, "DE_Cabbage::Do(): "
442  "Unknown event type! ", "");
443  exit(1);
444  }
445  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
446  return done;
447 }

References cfg_pest_cabbage_on, cfg_pest_product_amounts, LE::ClearManagementActionSum(), Calendar::Date(), Calendar::DayInYear(), de_cab_ferti_p1, de_cab_ferti_p2, de_cab_ferti_p3, de_cab_ferti_p4, de_cab_ferti_p5, de_cab_ferti_s1, de_cab_ferti_s2, de_cab_ferti_s3, de_cab_ferti_s4, de_cab_ferti_s5, de_cab_fungicide1, de_cab_fungicide2, de_cab_fungicide3, de_cab_harvest, de_cab_herbicide, de_cab_insecticide1, de_cab_insecticide2, de_cab_insecticide3, de_cab_preseeding_cultivator, de_cab_spring_planting, de_cab_spring_plough_sandy, de_cab_start, de_cab_watering, de_cab_weeding1, de_cab_winter_plough_clay, Farm::DoIt_prob(), Farm::FA_AmmoniumSulphate(), Farm::FA_ManganeseSulphate(), Farm::FA_NPK(), Farm::FA_Slurry(), Farm::FP_AmmoniumSulphate(), Farm::FP_ManganeseSulphate(), Farm::FP_NPK(), Farm::FP_Slurry(), Farm::FungicideTreat(), g_date, g_landscape_ptr, 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, Calendar::OldDays(), ppp_1, Farm::PreseedingCultivator(), Farm::ProductApplication(), Farm::ShallowHarrow(), Crop::SimpleEvent_(), Farm::SpringPlough(), Farm::SpringSow(), Crop::StartUpCrop(), Landscape::SupplyPestIncidenceFactor(), tov_DECabbage, CfgBool::value(), CfgArray_Double::value(), MapErrorMsg::Warn(), WARN_BUG, Farm::Water(), and Farm::WinterPlough().

◆ SetUpFarmCategoryInformation()

void DE_Cabbage::SetUpFarmCategoryInformation ( )
inline
114  {
115  const int elements = 2 + (de_cab_foobar - DE_CAB_BASE);
117 
118  FarmManagementCategory catlist[elements] =
119  {
120  fmc_Others, // zero element unused but must be here
121  // ALL THE NECESSARY ENTRIES HERE
122  fmc_Others, // de_cab_start = 1, // Compulsory, must always be 1 (one).
123  fmc_Others, // de_cab_sleep_all_day
124  fmc_Cultivation, // de_cab_winter_plough_clay
125  fmc_Fertilizer, // de_cab_ferti_p1
126  fmc_Fertilizer, // de_cab_ferti_s1
127  fmc_Cultivation, // de_cab_spring_plough_sandy
128  fmc_Fertilizer, // de_cab_ferti_p2
129  fmc_Fertilizer, // de_cab_ferti_s2
130  fmc_Cultivation, // de_cab_preseeding_cultivator
131  fmc_Cultivation, // de_cab_spring_planting
132  fmc_Cultivation, // de_cab_weeding1
133  fmc_Herbicide, // de_cab_herbicide
134  fmc_Fungicide, // de_cab_fungicide1
135  fmc_Fungicide, // de_cab_fungicide2
136  fmc_Fungicide, // de_cab_fungicide3
137  fmc_Insecticide, // de_cab_insecticide1
138  fmc_Insecticide, // de_cab_insecticide2
139  fmc_Insecticide, // de_cab_insecticide3
140  fmc_Fertilizer, // de_cab_ferti_p3
141  fmc_Fertilizer, // de_cab_ferti_s3
142  fmc_Fertilizer, // de_cab_ferti_p4
143  fmc_Fertilizer, // de_cab_ferti_s4
144  fmc_Fertilizer, // de_cab_ferti_p5
145  fmc_Fertilizer, // de_cab_ferti_s5
146  fmc_Watering, // de_cab_watering
147  fmc_Harvest, // de_cab_harvest
148  // no foobar entry
149 
150  };
151  // Iterate over the catlist elements and copy them to vector
152  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
153  }

References DE_CAB_BASE, de_cab_foobar, fmc_Cultivation, fmc_Fertilizer, fmc_Fungicide, fmc_Harvest, fmc_Herbicide, fmc_Insecticide, fmc_Others, fmc_Watering, Crop::m_base_elements_no, and Crop::m_ManagementCategories.

Referenced by DE_Cabbage().


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
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_cab_ferti_p5
Definition: DE_Cabbage.h:87
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
de_cab_ferti_s2
Definition: DE_Cabbage.h:72
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
de_cab_insecticide1
Definition: DE_Cabbage.h:80
de_cab_foobar
Definition: DE_Cabbage.h:91
de_cab_spring_plough_sandy
Definition: DE_Cabbage.h:70
de_cab_ferti_p3
Definition: DE_Cabbage.h:83
Farm::DoIt_prob
bool DoIt_prob(double a_probability)
Return chance out of 0 to 1.
Definition: Farm.cpp:864
de_cab_start
Definition: DE_Cabbage.h:65
g_date
class Calendar * g_date
Definition: Calendar.cpp:37
cfg_pest_cabbage_on
CfgBool cfg_pest_cabbage_on
Turn on pesticides for cabbage.
fmc_Herbicide
Definition: LandscapeFarmingEnums.h:1006
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
de_cab_fungicide2
Definition: DE_Cabbage.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
Farm::FungicideTreat
virtual bool FungicideTreat(LE *a_field, double a_user, int a_days)
Apply fungicide to a_field.
Definition: FarmFuncs.cpp:2101
tov_DECabbage
Definition: LandscapeFarmingEnums.h:472
de_cab_spring_planting
Definition: DE_Cabbage.h:74
de_cab_watering
Definition: DE_Cabbage.h:89
CfgBool::value
bool value() const
Definition: Configurator.h:164
de_cab_fungicide1
Definition: DE_Cabbage.h:77
DE_Cabbage::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: DE_Cabbage.h:114
de_cab_winter_plough_clay
Definition: DE_Cabbage.h:67
de_cab_fungicide3
Definition: DE_Cabbage.h:79
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
Calendar::Date
long Date(void)
Definition: Calendar.h:57
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
fmc_Others
Definition: LandscapeFarmingEnums.h:1003
de_cab_ferti_s3
Definition: DE_Cabbage.h:84
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
de_cab_ferti_p2
Definition: DE_Cabbage.h:71
de_cab_ferti_s5
Definition: DE_Cabbage.h:88
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::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_cab_insecticide2
Definition: DE_Cabbage.h:81
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
de_cab_herbicide
Definition: DE_Cabbage.h:76
g_landscape_ptr
Landscape * g_landscape_ptr
Definition: Landscape.cpp:352
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
LE::GetGreenBiomass
virtual double GetGreenBiomass(void)
Definition: Elements.h:160
de_cab_ferti_p1
Definition: DE_Cabbage.h:68
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
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
de_cab_preseeding_cultivator
Definition: DE_Cabbage.h:73
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
de_cab_ferti_p4
Definition: DE_Cabbage.h:85
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_CAB_BASE
#define DE_CAB_BASE
Definition: DE_Cabbage.h:53
de_cab_ferti_s1
Definition: DE_Cabbage.h:69
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
de_cab_insecticide3
Definition: DE_Cabbage.h:82
de_cab_weeding1
Definition: DE_Cabbage.h:75
de_cab_ferti_s4
Definition: DE_Cabbage.h:86
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
de_cab_harvest
Definition: DE_Cabbage.h:90
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