Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1033 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
10 | ** |
||
11 | ** This program is distributed in the hope that it will be useful, |
||
12 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
14 | ** GNU General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
19 | |||
875 | werner | 20 | #ifndef SCHEDULER_H |
21 | #define SCHEDULER_H |
||
889 | werner | 22 | #include <QList> |
976 | werner | 23 | #include <QHash> |
875 | werner | 24 | |
889 | werner | 25 | #include "activity.h" |
904 | werner | 26 | class Expression; |
875 | werner | 27 | |
907 | werner | 28 | namespace ABE { |
875 | werner | 29 | class FMStand; // forward |
889 | werner | 30 | class FMUnit; // forward |
31 | |||
904 | werner | 32 | /** @brief SchedulerOptions store agent-specific options. |
33 | * */ |
||
34 | struct SchedulerOptions { |
||
958 | werner | 35 | SchedulerOptions(): useScheduler(false), useSustainableHarvest(1.), minScheduleHarvest(0), maxScheduleHarvest(0), maxHarvestLevel(0), harvestIntensity(1.), scheduleRebounceDuration(0), deviationDecayRate(0.){ } |
921 | werner | 36 | bool useScheduler; ///< true, if the agent is using the scheduler at all |
37 | double useSustainableHarvest; ///< scaling factor (0..1), 1 if scheduler used by agent (exclusively), 0: bottom up, linearly scaled in between. |
||
904 | werner | 38 | double minScheduleHarvest; ///< minimum amount of m3/ha*yr that should be scheduled |
39 | double maxScheduleHarvest; ///< the maximum number of m3/ha*yr that should be scheduled |
||
958 | werner | 40 | double maxHarvestLevel; ///< multiplier to define the maximum overshoot over the planned volume (e.g. 1.2 -> 20% max. overshoot) |
956 | werner | 41 | double harvestIntensity; ///< multiplier for the "sustainable" harvest level |
904 | werner | 42 | double scheduleRebounceDuration; ///< number of years for which deviations from the planned volume are split into |
915 | werner | 43 | double deviationDecayRate; ///< factor to reduce accumulated harvest deviation |
956 | werner | 44 | |
904 | werner | 45 | void setup(QJSValue jsvalue); |
951 | werner | 46 | static QStringList mAllowedProperties; |
904 | werner | 47 | }; |
48 | |||
889 | werner | 49 | /** |
50 | * @brief The Scheduler class schedules the forest management activities |
||
51 | * on a planning unit. |
||
52 | * |
||
53 | */ |
||
875 | werner | 54 | class Scheduler |
55 | { |
||
56 | public: |
||
921 | werner | 57 | Scheduler(FMUnit* unit) { mUnit = unit; mExtraHarvest=0.; mFinalCutTarget=0.; } |
907 | werner | 58 | enum HarvestType { Thinning, EndHarvest, Salvage}; |
889 | werner | 59 | |
60 | /// add an planned activity for a given stand. |
||
61 | /// @param stand the stand to add |
||
62 | /// @param flags the execution flags (activty x stand) |
||
63 | /// @param prob_schedule the probability from the activity-scheduling algorithm at the time of adding the ticket |
||
64 | /// @param prob_execute the probability for executing the activity (based on the constraints of the activity) |
||
65 | void addTicket(FMStand *stand, ActivityFlags *flags, double prob_schedule, double prob_execute); |
||
66 | |||
67 | /// executes the scheduler for the planning unit. |
||
68 | /// scheduled operations are executed. |
||
69 | void run(); |
||
70 | |||
1157 | werner | 71 | /// at the end of the year, reset the salvage harvests |
72 | void resetHarvestCounter() { mExtraHarvest = 0.; } |
||
73 | |||
907 | werner | 74 | /// prepone a stand if in queue for the given stand. |
75 | /// return true if a activity is preponed. |
||
905 | werner | 76 | bool forceHarvest(const FMStand *stand, const int max_years); |
77 | |||
907 | werner | 78 | /// tell the scheduler about extra harvests (that should be considered in the scheduling) |
79 | /// volume: total volume (m3) |
||
80 | void addExtraHarvest(const FMStand *stand, const double volume, HarvestType type); |
||
81 | |||
915 | werner | 82 | /// return the total amount of planned harvests in the next planning period (10yrs) (total=false) |
83 | /// if 'total' is true all scheduled harvests are counted |
||
921 | werner | 84 | double plannedHarvests(double &rFinal, double &rThinning); |
915 | werner | 85 | |
86 | /// set the harvest target for the unit (m3/ha) for the current year. |
||
921 | werner | 87 | /// target_m3_ha: the |
88 | void setHarvestTarget(double target_m3_ha, double thinning_target_m3_ha) { mFinalCutTarget = std::max(target_m3_ha,0.01); |
||
89 | mThinningTarget = std::max(thinning_target_m3_ha,0.01); } |
||
90 | double harvestTarget() const { return mFinalCutTarget; } |
||
915 | werner | 91 | |
889 | werner | 92 | /// get current score for stand 'id' |
93 | /// return -1 if stand is invalid, 0..1 for probabilities, 1.1 for forced execution |
||
94 | double scoreOf(const int stand_id) const; |
||
903 | werner | 95 | QStringList info(const int stand_id) const; |
1063 | werner | 96 | /// write state of the scheduler to the console |
97 | void dump() const; |
||
889 | werner | 98 | |
99 | private: |
||
907 | werner | 100 | void updateCurrentPlan(); |
889 | werner | 101 | class SchedulerItem { |
102 | public: |
||
957 | werner | 103 | SchedulerItem(): stand(0), score(0.), scheduledYear(-1) {} |
889 | werner | 104 | bool operator<(const SchedulerItem &item); |
105 | void calculate(); ///< calculate the final score |
||
106 | FMStand *stand; ///< the stand to be harvested |
||
107 | double harvest; ///< the scheduled harvest in m3 |
||
108 | double harvestPerHa; ///< harvest per ha |
||
109 | double scheduleScore; ///< the probability based on schedule timing |
||
110 | double harvestScore; ///< the probability of the activity |
||
111 | double score; ///< the total score of this ticked to be executed this year |
||
907 | werner | 112 | HarvestType harvestType; ///< type of harvest |
889 | werner | 113 | int enterYear; ///< the year the ticket was created |
905 | werner | 114 | int optimalYear; ///< the (first) year where execution is considered as optimal |
955 | werner | 115 | int scheduledYear; ///< planned execution year |
905 | werner | 116 | int forbiddenTo; ///< year until which the harvest operation is forbidden |
889 | werner | 117 | ActivityFlags *flags; ///< the details of the activity/stand context |
118 | }; |
||
956 | werner | 119 | struct ItemComparator |
120 | { |
||
121 | bool operator()( const SchedulerItem *lx, const SchedulerItem *rx ) const; |
||
122 | }; |
||
920 | werner | 123 | QList<SchedulerItem*> mItems; ///< the list of active tickets |
955 | werner | 124 | QMultiHash<int, SchedulerItem*> mSchedule; |
903 | werner | 125 | /// find scheduler item for 'stand_id' or return NULL. |
126 | SchedulerItem* item(const int stand_id) const; |
||
889 | werner | 127 | FMUnit *mUnit; |
921 | werner | 128 | double mExtraHarvest; ///< extra harvests due to disturbances m3 |
129 | double mFinalCutTarget; ///< current harvest target for regeneration harvests (m3/ha) |
||
130 | double mThinningTarget; ///< current harvest target for thinning/tending operations (m3/ha) |
||
916 | werner | 131 | |
956 | werner | 132 | static const int MAX_YEARS = 20; |
916 | werner | 133 | friend class UnitOut; |
875 | werner | 134 | }; |
135 | |||
136 | |||
137 | |||
138 | } // namespace |
||
139 | #endif // SCHEDULER_H |