SlideShare una empresa de Scribd logo
1 de 6
Descargar para leer sin conexión
Design and development of a
                     generalized forest management
                     modeling system: Woodstock

                                            Karl R. Walters
                                        Associate-Remsoft Inc.
                                      620 George Street, Suite 5
                                   Fredericton, NB Canada E3B 1K3


                                                     Abstract
                     This paper describes Woodstock, a forest management modeling system that
                     accommodates binary search, Monte Carlo simulation and linear
                     programming based models within a single input file format. By employing a
                     language interpreter approach to modeling, Woodstock enables the
                     construction of forest models that can be analyzed using very different
                     solution techniques with only minor changes in syntax.
                     Keywords: Harvest scheduling, simulation, optimization, object-oriented
                     programming.
Proceedings
                     Introduction
International
 Symposium           Harvest scheduling models typically embrace a single analytical technique:
 on Systems          simulation, binary search, linear programming (LP), dynamic programming
                     (DP), et cetera. Each of these approaches has distinct advantages and
Analysis and
                     disadvantages, depending on the problem to be addressed. Because of the
Management           complexity of forest management planning problems, an analyst may wish to
 Decisions in        apply several of these modeling techniques to address specific concerns, such
  Forestry           as the effect of stochastic timber yield variables on LP results (Hof et al.
                     1988; Leefers 1991) or the risk of catastrophic events when developing a
                     harvest schedule (Moll 1991). However, in order to do so, one usually must
Forest Management    resort to different models or modeling systems, which usually are not
 and Planning in a   equivalent in capabilities or features.
 Competitive and     Some differences between models are inherent to the analytical technique
 Environmentally     being used _ binary search models cannot handle the many constraints that are
 Conscious World     easily accommodated within a linear programming formulation, for example.
                     Recognizing that there are a number of consistent features across forest
                     planning models, regardless of how solutions are derived, Woodstock was
March 9 - 12, 1993   developed. Woodstock is a modeling system which permits analysis of forest
 Valdivia, Chile     management problems using binary search, Monte Carlo simulation and linear
                     programming techniques.
which development types are eligible for an action
Conceptual overview                                        (or susceptible to one) and when, (3) how yields
The fundamental design consideration in developing         associated with the action should be calculated and
Woodstock was model independence – the provision           (4) whether all area in an eligible development type
of powerful modeling capabilities without imposing a       should in fact be considered available. The
particular structure or conceptual point of view.          Woodstock syntax is sufficiently flexible that
Other than basic like aging stands and calculating         virtually any silvicultural regime can be modeled
inventories, Woodstock provides no built-in actions        successfully.
or outputs whatsoever. Instead, the analyst must           Actions are always associated with transitions, a
define the actions and outputs to be modeled, using        description of the changed developmental pattern(s)
the Woodstock syntax. Therefore Woodstock is rather        of the affected forest. Transitions are defined in terms
like a programming interpreter such as Qbasic in that      of the pre-treatment development type (source) and
it cannot do very much on its own, but it can be           the post-treatment development type(s) (targets). All
programmed to perform a variety of useful things.          development types for which an action can be
Developing models with Woodstock requires                  applied must have a corresponding transition
understanding of six key concepts: landscape themes,       statement. Transitions arising from an action can be
development types, actions, transitions, yield             specified on an areal, proportional or Monte Carlo
components and outputs. Each of these concepts             basis. Transitions may be single outcome or multiple
represents a particular aspect of any Woodstock            outcome with up to 10 target development types.
model and input files must have sections devoted to        Yield components are indicators of the state of the
each of them.                                              forest, usually representing desired benefits from
Landscape themes are a method of classifying a             forest management. They may be anything that can
forest using either stratum-based or area-based            be represented on an areal basis: timber yields, soil
themes. Up to sixteen landscape themes can be              sedimentation, treatment costs, et cetera. Presently,
specified where each theme represents a set of related     there are two kinds of yield specifications in a
attributes that describe the forest. Within a theme,       Woodstock model: age dependent or time dependent.
any number of attributes may be specified. For             An age dependent yield is simply one that is a
example, typical themes might include working              function of stand age (e.g., stand volume in m3/ha)
group (species), site quality, management emphasis,        whereas a time dependent yield varies with planning
management intensity, management unit, habitat             periods (e.g., kilometres of access road).
zone, watershed, topography, et cetera. Theme              Outputs are quantities that are to be reported or
attributes can be grouped together using attribute         controlled within the model. They are triggered by
aggregates (exclusive sets) or by using wildcards          actions and are a function of the treatment area and
(inclusive sets). Landscape themes are functionally        one or more yield components associated with the
similar to the level identifiers used in FORPLAN           development type treated. Typical outputs in a
Version 2 (Johnson et al. 1986) or thematic layers in      Woodstock model might be harvest volume,
a geographic information system coverage.                  inventory of particular components, total cost of
Development types are unique combinations of               particular treatments, et cetera. Outputs may be
landscape themes which represent the basic forest          defined directly in terms of their triggering actions
management units in a forest. A development type           and associated yield components, or they may be
represents all stands or stand types within the forest     defined in terms of previously defined outputs (e.g.
that are expected to respond to management in the          total harvest volume may be defined as total
same way. Development types are represented in a           softwood harvest volume plus total hardwood harvest
Woodstock model as age class distributions identified      volume).
by a particular sequence of landscape theme                Reports may be directed to the screen, or to DOS
identifiers called a mask. This differs from most          files in ASCII text format or as spreadsheet files in
forest planning models where the forest is divided         WK1 format. Outputs may also be directed to the
into analysis areas which represent only single age        screen as run-time line graphs. In addition to built-in
classes.                                                   reports designed to help debug forest planning
Actions are management interventions performed on          models, the user may specify reports on individual
the forest but they may also include natural events        actions or outputs for any or all planning periods in
such as forest fire. Actions are defined in terms of (1)   the planning horizon.
whether regeneration occurs following the action, (2)
Object oriented program structure                          encountered, the information is passed to an error
                                                           handling object which reports an appropriate error
Woodstock was written in Borland Pascal 7.0 using          message. Along with a program structure arranged
an object-oriented programming approach. Object-           more along functional lines, another added benefit is
oriented programming is simply a mechanism for             that when a new feature is added to Woodstock, only
creating data types which inherit characteristics of       objects specific to the new feature need to be created
simpler, more general types. In traditional                or changed – all other program code is unaffected
programming, computer programs are separated into          which substantially reduces development time and
data and code structures, where the latter manipulates     facilitates code maintenance.
the former. In object-oriented programming, data and
code are packaged together into a single entity or
object and the routines to manipulate data in an           Model formulations
object are part of the object itself. The advantage of
                                                           Inventory Projection Model
this is that objects can be copied, and the copy
inherits not only the data structure of the parent         Like all simulation models, Woodstock requires that
object, but also the parentis functions and                the user specify the magnitude of all management
procedures. If the new object must perform new             interventions and order in which to apply them. In a
functions or perform an inherited function                 Woodstock model, this information is presented in
differently, new procedures or functions can simply        the queue section. The queue lists for each planning
be added when the new object is defined. Newly             period, target limits for outputs and the actions which
defined functions simply replace inherited functions       generate those outputs. Woodstock performs each
of the same name. Thus, object-orientation makes it        action in the order in which it appears in the queue,
relatively easy to add new features to a program           up to the specified limit which may be area, volume
without significantly modifying the existing code.         generated, cost incurred, et cetera. The order in
                                                           which actions are applied to individual development
Woodstock is made up of families of program objects        types is determined by selection rules specified in the
that perform particular functions in the program such      action definition.
as calculating outputs, performing actions, aging
development types, et cetera. Each object in a family      In simulation mode, Woodstock evaluates every run
has a common _ancestor_ from which it inherits             in terms of success or failure. Success is assumed
basic properties. For example, all yield curve related     whenever output levels meet target limits specified
functions in Woodstock are performed by objects            by the user in every period of the planning horizon
based on the _basic_curve_type object. This object         (i.e., levels exceed minimum limits, levels do not
is made up of variables which keep track of the            exceed maximum limits and levels just meet equality
number of entries in the yield table, a pointer list       limits). If any output level does not meet a target
storing the yield curve data itself and functions that     limit, Woodstock evaluates the run as a failure and
can initialize the object, read yield information from     terminates the simulation immediately.
an input file, normalize yield information, copy yield     The user may specify one output limit as a binary
information from other curves and store yield              search criterion which Woodstock can vary up or
information. Every instance of _curve_type objects         down to converge to an optimal solution. In binary
inherit the properties of _basic_curve_type, enabling      search mode, the binary search criterion is increased
it to deal with yield curve information but each has       when a run succeeds and is decreased when a run
additional functions to handle particular types of         fails – each time the simulation begins again with the
yield curves or special cases.                             newly calculated binary search criterion. This process
Although the object-orientation of the program code        continues until the change in the binary search
does not affect the user directly, it is the cornerstone   criterion falls below a user-specified tolerance.
of Woodstock’s flexibility. Model input files are          Binary search can only be used with deterministic
essentially free format ASCII files. Because there are     formulations, but it may be used for area control or
no fixed column formats or requirements for sections       volume control formulations. Furthermore, binary
to be arranged in a particular order, Woodstock input      search may be turned off completely and harvests
routines need smart parsing capabilities. By               scheduled according to fixed methods of area control,
separating the input routines into objects specific to     percentage of inventory or an absolute amount.
particular sections, the objects themselves are            Alternatively, the user may wish to investigate the
responsible for finding the appropriate information in     impacts of random variations in the application of
the input files and for checking syntax. If an error is    silvicultural treatments or to probabilistic outcomes
in yield response or regeneration. In these cases,        CONTROL
                                                            *LENGTH 16 {planning horizon=length*5 yrs}
Woodstock uses a Monte Carlo simulation approach            *RUNS 20 {perform 20 Monte Carlo sim’s}
to random events. Again, each run is deemed a               *OPTIMIZE OFF {on for lp matrix generation}
success if all target limits are met. However, instead      *SCHEDULE OFF {on for lp solution reports}
                                                            *QUEUE ON {on for simulation models only}
of changing a binary search criterion, Woodstock            *WARNINGS ON {report non-fatal errors}
generates random outcomes in each planning period,        LANDSCAPE
reinitializes the forest for each successive run and       *THEME Cover Type
keeps track of the number of successful attempts out        sp   Spruce
                                                            po   Poplar
of the total number of runs specified by the user. At       nsr Not Satisfactorily Regenerated
the end of the specified number of runs, Woodstock
                                                          LIFESPAN {maximum age any dev type may reach}
reports the success rate as a percentage.                   sp   50
                                                            po   30
Optimization                                                nsr 40

In optimization mode, Woodstock acts as a linear          AREAS {area distribution: dev. type   and age}
                                                           *A sp {begins 1 period of age}
programming matrix generator and report writer.             1 461 53 670 49 345 357 93 13       118 67
Instead of target limits in a queue, the user specifies       140 120 415 314 173 149 389 400   273 235
                                                              948 607 280 229 616 196 257 62    163   4
an objective function and constraints in the Optimize      *A po {begins 1 period of age}
section of the input file. Unlike simulation mode,          1 430 471 18 75 57 248      9 11     48   69
Woodstock does not require selection rules for                324 11 709 93 155 206 799 499       1   16
                                                              262 24 744 72 29 666 24 565       589
actions or a specific sequence in which to apply           *A nsr
actions in optimization mode. However, in all other         1 194 668 279   1 636
respects, optimization models are identical to            YIELDS {yield components for Sp and Po types}
simulation models in Woodstock syntax.                     *Y sp {spruce yields, begin in period 8}
                                                             pulp 8 63.8 72.5 77.5 81.3 83.8 85.0 85.0
Woodstock uses many of the simulation routines                      84.0 82.0 79.0 75.0 70.5 65.5
which calculate outputs, age development types and         *Y po {poplar yields, begin in period 8}
                                                             pulp 8 33.8 37.3 39.8 41.8 43.3 44.3 44.8
apply actions to generate coefficients for a LP matrix              45.0 45.0 44.8 44.3 43.8 43.3
using a generalized Model II formulation (Iverson         ACTIONS
and Alston 1986). Once the lp matrix is generated, an     *ACTION clct Y Clear Cut {resets age}
optimal solution can be found using any solution          *OPERABLE clct
                                                           sp _age 9 Pulp 40 {FH 45,UNTIL PULP < 40}
software capable of reading LINDO or MPS format            po _age 9 Pulp 35 {FH 45,UNTIL PULP < 35}
input files. A utility program reads the solution file    *SELECT clct {selection rule for simulation}
generated by the solver and produces a sequence file      _MAX _AGE     {oldest first rule (MAX _age)}
                                                          *ACTION plnt Y Plant NSR    {resets age}
which lists the actions, development types, area          *OPERABLE plnt
treated and period of treatment corresponding to the       nsr _age 0 _age 50
basic variables of the optimal solution. This sequence    *SELECT plnt
                                                          _MAX _AGE     {plant oldest cutovers first}
file is then read into Woodstock. The sequence file       TRANSITIONS
drives the simulator directly with reports and graphic     *CASE clct
displays working the same way they do in simulation          *SOURCE sp         {for spruce dev. types:}
                                                              *TARGET sp     70 {70% regenerate Sp}
mode.                                                         *TARGET po     20 {20% regenerate Po}
                                                              *TARGET nsr 10 {10% do not regenerate}
                                                             *SOURCE po         {for poplar dev. types:}
Example                                                       *TARGET sp     20 {20% regenerate Sp}
                                                              *TARGET po     75 {75% regenerate Po}
The following simple model will illustrate                    *TARGET nsr     5 { 5% do not regenerate}
Woodstock’s capabilities in formulating binary             *CASE plnt
search, Monte Carlo simulation, and optimization             *SOURCE nsr    {for planted nsr dev. type:}
                                                              *TARGET sp    100 {100% regenerate sp}
forest models. Presented first are the sections           OUTPUT
common to all three formulations, followed by the         *OUTPUT tot_pulp Total Pulp {pulp from}
                                                          *SOURCE ? clct pulp       {both Sp & Po types}
specific syntax required for each type of model.          *OUTPUT nsr_area NSR Area    {NSR area from}
Finally, results from each formulation are presented      *SOURCE nsr _Invent _Area {NSR type only}
in tabular form.                                          *OUTPUT plnt_area Plantation {plnt area from}
                                                          *SOURCE nsr plnt _Area
In the following example input file, Woodstock
                                                          Binary Search Model
keywords are in upper case and user-specified values
are in lower case.                                        To create a binary search formulation, the model
                                                          requires a Queue section to specify the required
levels of outputs and the order in which to apply         OPTIMIZE
                                                          *OBJECTIVE
actions. To invoke the binary search algorithm, the        _MAX Tot_Pulp 1 {maximize 1st period)
MAX keyword is included in the first limit statement      *CONSTRAINTS
(i.e., tot_pulp is the binary search criterion).           _NDY(Tot_Pulp) 1.._LENGTH {nondeclining yld}
                                                            plnt_area = 250      1.._LENGTH
QUEUE                                                     *FORMAT MPS {use MPS format}
*TARGET tot_pulp = 50000 _MAX 1.._LENGTH
 *SOURCE ? clct 100    {from all clearcuts}               The optimal solution produced an objective function
*TARGET plnt_area < 250 {no more than 250 ha}             value of 67 470 m3/period which was marginally
 *SOURCE nsr plnt 100
                                                          higher than that found using binary search. With
After running this model through Woodstock, the           more complex models, the difference would likely be
maximum even-flow harvest level was found to be           more substantial (Jamnick 1990).
66 940.5 m3/period. The tolerance level for the
binary search was 1 m3 and 19 iterations were             Potential Uses Of Woodstock
required to converge to the solution value.
                                                          The example presented in this paper is an
                                                          exceedingly simple model, but it demonstrates
Monte Carlo Simulation Model
                                                          effectively how Woodstock can handle very different
To formulate the example problem as a Monte Carlo         model formulations with ease: with only a few
simulation, the Transitions section must be changed       changes to the input file, three distinct kinds of
to simulate random regeneration outcomes:                 analysis could be performed in minutes. However,
*CASE clct                                                even with much larger and more complex Woodstock
 *SOURCE sp         {for spruce dev. types:}              models, it is trivial to convert one model type into
  *TARGET sp       70    {70% probability-> Sp}
  *TARGET po       20    {20% probability-> Po}           another.
  *TARGET nsr      10    {10% probability-> NSR}
*SOURCE po            {for poplar dev. types:}            One of the greatest strengths of Woodstock is its
  *TARGET sp       20    {20% probability-> Sp}           potential as a teaching tool. New users can quickly
  *TARGET po       75    {75% probability-> Po}
  *TARGET nsr       5    { 5% probability-> NSR}          develop simple models which can be used to learn
                                                          about forest dynamics (e.g., demonstrate linkages
Instead of the fixed proportions used in the binary       between harvest levels and forest structure, tradeoffs
search model, the Monte Carlo simulation model uses       among harvest and silviculture options, relative
probabilities of regeneration for each development        efficacy of alternative selection rules, et cetera). As
type. The *LIMIT R 100 statement can be interpreted       users become more proficient at using Woodstock,
as _for each 100 ha random allocation unit in the         they compare different model formulations to
development type, assign regeneration outcomes            determine how best to formulate a model to answer
randomly according to the following expected              relevant management concerns.
values_. By increasing or decreasing the size of
random allocation units, the user can increase or         As a harvest scheduling model, Woodstock models
decrease the magnitude of the variation in outcomes       can address virtually any kind of silvicultural or
across simulation runs.                                   harvesting    regime. Complicated        silvicultural
                                                          prescriptions can be modeled as individual actions
Using the harvest level found in the binary search        performed sequentially or as a single intervention _
model, the Monte Carlo simulation model                   which method to use is up to the model builder.
successfully sustained that harvest level 11 times out    Because all actions and outputs are user-defined,
of 20. When the harvest was reduced by 2.5%, the          Woodstock can be used to model forest management
harvest level was sustainable in all 20 runs.             problems which are not timber oriented, such as fire
                                                          or vegetation management plans for parks and
Linear Programming Model                                  conservation areas.
To formulate a Model II linear program, an Optimize       The Monte Carlo simulation features are useful for
section must be added to the input file. This section     evaluating stochastic variations in timber yields, for
specifies the objective function, any constraints to be   evaluating impacts of landowner behavior for NIPF
applied in the model and the format the matrix should     wood supply analyses or impacts on forest structure
be written in (LINDO or MPS). To be approximately         and harvest levels in presence of fire or pest risks.
equivalent to the other formulations, this example        Woodstock is currently being used by forest products
model maximizes first period harvest subject to non-      marketing boards to estimate wood supply from non-
declining yield and planting no more than 250 ha per      industrial private forest land in their regulation areas.
period.
Future developments                                          Rep. INT-214, USDA Forest Service,
                                                             Intermountain Research Station, Ogden, UT.
One of the difficulties in developing a system like          31pp.
Woodstock is developing a structure which is
straightforward and concise, yet retains sufficient      Jamnick, M.S. 1990. A comparison of FORMAN and
flexibility to address many different problems. For         linear programming approaches to timber harvest
example, in many cases the functionality of a lp            scheduling. Can. J. For. Res. 20: 1351-1360.
model cannot be replicated in a simulation model and     Johnson, K.N., Stuart, T.W. and Crim, S.A. 1986.
so, wherever possible, features specific to a type of        FORPLAN Version 2: An Overview. USDA
model are isolated in particular sections (i.e., the         Forest Service, Land Management Planning
Queue section for simulation models and the                  Systems Section, Washington, DC. 98+xii pp.
Optimize section for LP models). However, it is not
always possible to do this, with the result that some    Leefers,   L.A.     1991.    Incorporating  linear
sections require alternative syntax constructions that       programming and Monte Carlo simulation in a
apply to only particular model types.                        spreadsheet-based harvest scheduling model. IN
                                                             Buford, M.A., comp. 1991. Proceedings of the
The syntax developed so far has been remarkably              1991 Symposium on Systems Analysis in Forest
robust, requiring few changes despite the extensions         Resources, March 3-6, 1991. Charleston, SC.
that have been incorporated into Woodstock.                  Gen. Tech. Rep. SE-74, USDA Forest Service,
However, it is anticipated that adjustments will need        Southeastern Forest Experiment Station,
to be made to the syntax to improve the usability of         Asheville, NC. 423pp.
the system by maintaining consistency of meaning
for keywords and constructs used in multiple sections    Moll, R.H.H. 1991. Modelling regeneration and pest
of an input file.                                           control alternatives for a forest system in the
                                                            presence of fire risk. IN Buford, M.A., comp.
Presently, all efforts are being directed toward            1991. Proceedings of the 1991 Symposium on
finalizing the LP extensions to Woodstock. In the           Systems Analysis in Forest Resources, March 3-
future, the intent is to strengthen Woodstock is            6, 1991. Charleston, SC. Gen. Tech. Rep. SE-74,
capabilities in the areas of economic analyses and          USDA Forest Service, Southeastern Forest
land allocation problems. Specifically, these               Experiment Station, Asheville, NC. 423pp.
enhancements would include the ability to formulate
models similar to ECHO (Walker 1971), to conduct         Walker, J.L. 1971. An economic model for
price responsive timber supply analyses, and to             optimizing the rate of timber harvesting. Ph.D.
formulate models employing aggregate emphasis or            dissertation, University of Washington, Seattle,
coordinated allocation choices.                             WA. 117pp.

Acknowledgement
The development of the linear programming
extensions to Woodstock was partially funded by
Forestry Canada and the British Columbia Ministry
of Forests as part of the Canada-British Columbia
Partnership Agreement on Forest Resource
Development: FRDA II - a 4 year (1991-1995) $200
million program cost-shared equally by the federal
and provincial governments.

Literature cited
Hof, J.G., Robinson, K.S. and Betters, D.R. 1988.
    Optimization with expected values of random
    yield coefficients in renewable resource linear
    programs. For. Sci. 34: 634-646.
Iverson, D.C. and Alston, R.M. 1986. The Genesis of
    FORPLAN: A Historical and Analytical Review
    of Forest Service Planning Models. Gen. Tech.

Más contenido relacionado

Similar a Design and development of a generalized forest management modeling system: Woodstock

Linking data, models and tools an overview
Linking data, models and tools an overviewLinking data, models and tools an overview
Linking data, models and tools an overviewGennadii Donchyts
 
PresentationTest
PresentationTestPresentationTest
PresentationTestbolu804
 
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEYUSING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEYcseij
 
Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...
Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...
Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...Greenapps&web
 
IRJET- Semantic based Automatic Text Summarization based on Soft Computing
IRJET- Semantic based Automatic Text Summarization based on Soft ComputingIRJET- Semantic based Automatic Text Summarization based on Soft Computing
IRJET- Semantic based Automatic Text Summarization based on Soft ComputingIRJET Journal
 
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSERWITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSERijnlc
 
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSERWITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSERkevig
 
Software development effort reduction with Co-op
Software development effort reduction with Co-opSoftware development effort reduction with Co-op
Software development effort reduction with Co-oplbergmans
 
SigOpt_Bayesian_Optimization_Primer
SigOpt_Bayesian_Optimization_PrimerSigOpt_Bayesian_Optimization_Primer
SigOpt_Bayesian_Optimization_PrimerIan Dewancker
 
A consistent and efficient graphical User Interface Design and Querying Organ...
A consistent and efficient graphical User Interface Design and Querying Organ...A consistent and efficient graphical User Interface Design and Querying Organ...
A consistent and efficient graphical User Interface Design and Querying Organ...CSCJournals
 
Reifying the concurrency concern into xDSML specifications
Reifying the concurrency concern into xDSML specificationsReifying the concurrency concern into xDSML specifications
Reifying the concurrency concern into xDSML specificationsBenoit Combemale
 
TERM DEPOSIT SUBSCRIPTION PREDICTION
TERM DEPOSIT SUBSCRIPTION PREDICTIONTERM DEPOSIT SUBSCRIPTION PREDICTION
TERM DEPOSIT SUBSCRIPTION PREDICTIONIRJET Journal
 
Capital Investment Industrial Modeling Framework - IMPRESS
Capital Investment Industrial Modeling Framework - IMPRESSCapital Investment Industrial Modeling Framework - IMPRESS
Capital Investment Industrial Modeling Framework - IMPRESSAlkis Vazacopoulos
 
Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...
Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...
Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...IJERA Editor
 
Virtual Knowledge Graph by MIT Article.pdf
Virtual Knowledge Graph by MIT Article.pdfVirtual Knowledge Graph by MIT Article.pdf
Virtual Knowledge Graph by MIT Article.pdfNehmeh Taouk elMeaaz
 

Similar a Design and development of a generalized forest management modeling system: Woodstock (20)

Linking data, models and tools an overview
Linking data, models and tools an overviewLinking data, models and tools an overview
Linking data, models and tools an overview
 
Modelling tools
Modelling toolsModelling tools
Modelling tools
 
PresentationTest
PresentationTestPresentationTest
PresentationTest
 
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEYUSING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
 
Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...
Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...
Wildlife in the cloud: A new approach for engaging stakeholders in wildlife m...
 
Work Package 3
Work Package 3Work Package 3
Work Package 3
 
IRJET- Semantic based Automatic Text Summarization based on Soft Computing
IRJET- Semantic based Automatic Text Summarization based on Soft ComputingIRJET- Semantic based Automatic Text Summarization based on Soft Computing
IRJET- Semantic based Automatic Text Summarization based on Soft Computing
 
FVS Training Bolzano 9/9
FVS Training Bolzano 9/9FVS Training Bolzano 9/9
FVS Training Bolzano 9/9
 
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSERWITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
 
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSERWITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
WITH SEMANTICS AND HIDDEN MARKOV MODELS TO AN ADAPTIVE LOG FILE PARSER
 
Software development effort reduction with Co-op
Software development effort reduction with Co-opSoftware development effort reduction with Co-op
Software development effort reduction with Co-op
 
SigOpt_Bayesian_Optimization_Primer
SigOpt_Bayesian_Optimization_PrimerSigOpt_Bayesian_Optimization_Primer
SigOpt_Bayesian_Optimization_Primer
 
A consistent and efficient graphical User Interface Design and Querying Organ...
A consistent and efficient graphical User Interface Design and Querying Organ...A consistent and efficient graphical User Interface Design and Querying Organ...
A consistent and efficient graphical User Interface Design and Querying Organ...
 
java
javajava
java
 
47192586 fragstats
47192586 fragstats47192586 fragstats
47192586 fragstats
 
Reifying the concurrency concern into xDSML specifications
Reifying the concurrency concern into xDSML specificationsReifying the concurrency concern into xDSML specifications
Reifying the concurrency concern into xDSML specifications
 
TERM DEPOSIT SUBSCRIPTION PREDICTION
TERM DEPOSIT SUBSCRIPTION PREDICTIONTERM DEPOSIT SUBSCRIPTION PREDICTION
TERM DEPOSIT SUBSCRIPTION PREDICTION
 
Capital Investment Industrial Modeling Framework - IMPRESS
Capital Investment Industrial Modeling Framework - IMPRESSCapital Investment Industrial Modeling Framework - IMPRESS
Capital Investment Industrial Modeling Framework - IMPRESS
 
Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...
Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...
Graph-Based Algorithm for a User-Aware SaaS Approach: Computing Optimal Distr...
 
Virtual Knowledge Graph by MIT Article.pdf
Virtual Knowledge Graph by MIT Article.pdfVirtual Knowledge Graph by MIT Article.pdf
Virtual Knowledge Graph by MIT Article.pdf
 

Más de KR Walters Consulting Services

Here’s how to decide between stumpage- or delivered price harvest scheduling ...
Here’s how to decide between stumpage- or delivered price harvest scheduling ...Here’s how to decide between stumpage- or delivered price harvest scheduling ...
Here’s how to decide between stumpage- or delivered price harvest scheduling ...KR Walters Consulting Services
 
Subdivision of large uniform stands lacking natural bounding features
Subdivision of large uniform stands lacking natural bounding featuresSubdivision of large uniform stands lacking natural bounding features
Subdivision of large uniform stands lacking natural bounding featuresKR Walters Consulting Services
 
Spatial forest planning on industrial land: A problem in combinatorial optimi...
Spatial forest planning on industrial land: A problem in combinatorial optimi...Spatial forest planning on industrial land: A problem in combinatorial optimi...
Spatial forest planning on industrial land: A problem in combinatorial optimi...KR Walters Consulting Services
 
An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...
An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...
An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...KR Walters Consulting Services
 
Management of timber under a habitat conservation plan (HCP) in the Pacific N...
Management of timber under a habitat conservation plan (HCP) in the Pacific N...Management of timber under a habitat conservation plan (HCP) in the Pacific N...
Management of timber under a habitat conservation plan (HCP) in the Pacific N...KR Walters Consulting Services
 
A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...
A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...
A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...KR Walters Consulting Services
 
Defining adjacency and proximity of forest stands for harvest blocking
Defining adjacency and proximity of forest stands for harvest blockingDefining adjacency and proximity of forest stands for harvest blocking
Defining adjacency and proximity of forest stands for harvest blockingKR Walters Consulting Services
 
Barber Revisited: Aggregate Analysis in Harvest Schedule Models
Barber Revisited: Aggregate Analysis in Harvest Schedule ModelsBarber Revisited: Aggregate Analysis in Harvest Schedule Models
Barber Revisited: Aggregate Analysis in Harvest Schedule ModelsKR Walters Consulting Services
 
Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...
Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...
Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...KR Walters Consulting Services
 
Management of Timber Under A Habitat Conservation Plan in the Pacific Northwest
Management of Timber Under A Habitat Conservation Plan in the Pacific NorthwestManagement of Timber Under A Habitat Conservation Plan in the Pacific Northwest
Management of Timber Under A Habitat Conservation Plan in the Pacific NorthwestKR Walters Consulting Services
 

Más de KR Walters Consulting Services (17)

SSAFR_2013_Walters_KR
SSAFR_2013_Walters_KRSSAFR_2013_Walters_KR
SSAFR_2013_Walters_KR
 
Operationalizing Analytics in Forestry
Operationalizing Analytics in ForestryOperationalizing Analytics in Forestry
Operationalizing Analytics in Forestry
 
SSAFR_2015_WaltersKR
SSAFR_2015_WaltersKRSSAFR_2015_WaltersKR
SSAFR_2015_WaltersKR
 
Here’s how to decide between stumpage- or delivered price harvest scheduling ...
Here’s how to decide between stumpage- or delivered price harvest scheduling ...Here’s how to decide between stumpage- or delivered price harvest scheduling ...
Here’s how to decide between stumpage- or delivered price harvest scheduling ...
 
Subdivision of large uniform stands lacking natural bounding features
Subdivision of large uniform stands lacking natural bounding featuresSubdivision of large uniform stands lacking natural bounding features
Subdivision of large uniform stands lacking natural bounding features
 
Spatial forest planning on industrial land: A problem in combinatorial optimi...
Spatial forest planning on industrial land: A problem in combinatorial optimi...Spatial forest planning on industrial land: A problem in combinatorial optimi...
Spatial forest planning on industrial land: A problem in combinatorial optimi...
 
An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...
An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...
An Empirical Evaluation of Spatial Restrictions in Industrial Harvest Schedul...
 
Management of timber under a habitat conservation plan (HCP) in the Pacific N...
Management of timber under a habitat conservation plan (HCP) in the Pacific N...Management of timber under a habitat conservation plan (HCP) in the Pacific N...
Management of timber under a habitat conservation plan (HCP) in the Pacific N...
 
A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...
A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...
A Comparative Study Of Analytical Tools For Strategic & Tactical Forest Manag...
 
Defining adjacency and proximity of forest stands for harvest blocking
Defining adjacency and proximity of forest stands for harvest blockingDefining adjacency and proximity of forest stands for harvest blocking
Defining adjacency and proximity of forest stands for harvest blocking
 
A system for solving spatial forest planning problems
A system for solving spatial forest planning problemsA system for solving spatial forest planning problems
A system for solving spatial forest planning problems
 
Harvest Scheduling and Policy Analysis
Harvest Scheduling and Policy AnalysisHarvest Scheduling and Policy Analysis
Harvest Scheduling and Policy Analysis
 
Barber Revisited: Aggregate Analysis in Harvest Schedule Models
Barber Revisited: Aggregate Analysis in Harvest Schedule ModelsBarber Revisited: Aggregate Analysis in Harvest Schedule Models
Barber Revisited: Aggregate Analysis in Harvest Schedule Models
 
National Forest Planning and NFMA Requirements
National Forest Planning and NFMA RequirementsNational Forest Planning and NFMA Requirements
National Forest Planning and NFMA Requirements
 
Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...
Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...
Forest Structure & Spatial Restrictions: Interactions & How They Affect Harve...
 
Management of Timber Under A Habitat Conservation Plan in the Pacific Northwest
Management of Timber Under A Habitat Conservation Plan in the Pacific NorthwestManagement of Timber Under A Habitat Conservation Plan in the Pacific Northwest
Management of Timber Under A Habitat Conservation Plan in the Pacific Northwest
 
Error Propagation in Forest Planning Models
Error Propagation in Forest Planning ModelsError Propagation in Forest Planning Models
Error Propagation in Forest Planning Models
 

Último

"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 

Último (20)

"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 

Design and development of a generalized forest management modeling system: Woodstock

  • 1. Design and development of a generalized forest management modeling system: Woodstock Karl R. Walters Associate-Remsoft Inc. 620 George Street, Suite 5 Fredericton, NB Canada E3B 1K3 Abstract This paper describes Woodstock, a forest management modeling system that accommodates binary search, Monte Carlo simulation and linear programming based models within a single input file format. By employing a language interpreter approach to modeling, Woodstock enables the construction of forest models that can be analyzed using very different solution techniques with only minor changes in syntax. Keywords: Harvest scheduling, simulation, optimization, object-oriented programming. Proceedings Introduction International Symposium Harvest scheduling models typically embrace a single analytical technique: on Systems simulation, binary search, linear programming (LP), dynamic programming (DP), et cetera. Each of these approaches has distinct advantages and Analysis and disadvantages, depending on the problem to be addressed. Because of the Management complexity of forest management planning problems, an analyst may wish to Decisions in apply several of these modeling techniques to address specific concerns, such Forestry as the effect of stochastic timber yield variables on LP results (Hof et al. 1988; Leefers 1991) or the risk of catastrophic events when developing a harvest schedule (Moll 1991). However, in order to do so, one usually must Forest Management resort to different models or modeling systems, which usually are not and Planning in a equivalent in capabilities or features. Competitive and Some differences between models are inherent to the analytical technique Environmentally being used _ binary search models cannot handle the many constraints that are Conscious World easily accommodated within a linear programming formulation, for example. Recognizing that there are a number of consistent features across forest planning models, regardless of how solutions are derived, Woodstock was March 9 - 12, 1993 developed. Woodstock is a modeling system which permits analysis of forest Valdivia, Chile management problems using binary search, Monte Carlo simulation and linear programming techniques.
  • 2. which development types are eligible for an action Conceptual overview (or susceptible to one) and when, (3) how yields The fundamental design consideration in developing associated with the action should be calculated and Woodstock was model independence – the provision (4) whether all area in an eligible development type of powerful modeling capabilities without imposing a should in fact be considered available. The particular structure or conceptual point of view. Woodstock syntax is sufficiently flexible that Other than basic like aging stands and calculating virtually any silvicultural regime can be modeled inventories, Woodstock provides no built-in actions successfully. or outputs whatsoever. Instead, the analyst must Actions are always associated with transitions, a define the actions and outputs to be modeled, using description of the changed developmental pattern(s) the Woodstock syntax. Therefore Woodstock is rather of the affected forest. Transitions are defined in terms like a programming interpreter such as Qbasic in that of the pre-treatment development type (source) and it cannot do very much on its own, but it can be the post-treatment development type(s) (targets). All programmed to perform a variety of useful things. development types for which an action can be Developing models with Woodstock requires applied must have a corresponding transition understanding of six key concepts: landscape themes, statement. Transitions arising from an action can be development types, actions, transitions, yield specified on an areal, proportional or Monte Carlo components and outputs. Each of these concepts basis. Transitions may be single outcome or multiple represents a particular aspect of any Woodstock outcome with up to 10 target development types. model and input files must have sections devoted to Yield components are indicators of the state of the each of them. forest, usually representing desired benefits from Landscape themes are a method of classifying a forest management. They may be anything that can forest using either stratum-based or area-based be represented on an areal basis: timber yields, soil themes. Up to sixteen landscape themes can be sedimentation, treatment costs, et cetera. Presently, specified where each theme represents a set of related there are two kinds of yield specifications in a attributes that describe the forest. Within a theme, Woodstock model: age dependent or time dependent. any number of attributes may be specified. For An age dependent yield is simply one that is a example, typical themes might include working function of stand age (e.g., stand volume in m3/ha) group (species), site quality, management emphasis, whereas a time dependent yield varies with planning management intensity, management unit, habitat periods (e.g., kilometres of access road). zone, watershed, topography, et cetera. Theme Outputs are quantities that are to be reported or attributes can be grouped together using attribute controlled within the model. They are triggered by aggregates (exclusive sets) or by using wildcards actions and are a function of the treatment area and (inclusive sets). Landscape themes are functionally one or more yield components associated with the similar to the level identifiers used in FORPLAN development type treated. Typical outputs in a Version 2 (Johnson et al. 1986) or thematic layers in Woodstock model might be harvest volume, a geographic information system coverage. inventory of particular components, total cost of Development types are unique combinations of particular treatments, et cetera. Outputs may be landscape themes which represent the basic forest defined directly in terms of their triggering actions management units in a forest. A development type and associated yield components, or they may be represents all stands or stand types within the forest defined in terms of previously defined outputs (e.g. that are expected to respond to management in the total harvest volume may be defined as total same way. Development types are represented in a softwood harvest volume plus total hardwood harvest Woodstock model as age class distributions identified volume). by a particular sequence of landscape theme Reports may be directed to the screen, or to DOS identifiers called a mask. This differs from most files in ASCII text format or as spreadsheet files in forest planning models where the forest is divided WK1 format. Outputs may also be directed to the into analysis areas which represent only single age screen as run-time line graphs. In addition to built-in classes. reports designed to help debug forest planning Actions are management interventions performed on models, the user may specify reports on individual the forest but they may also include natural events actions or outputs for any or all planning periods in such as forest fire. Actions are defined in terms of (1) the planning horizon. whether regeneration occurs following the action, (2)
  • 3. Object oriented program structure encountered, the information is passed to an error handling object which reports an appropriate error Woodstock was written in Borland Pascal 7.0 using message. Along with a program structure arranged an object-oriented programming approach. Object- more along functional lines, another added benefit is oriented programming is simply a mechanism for that when a new feature is added to Woodstock, only creating data types which inherit characteristics of objects specific to the new feature need to be created simpler, more general types. In traditional or changed – all other program code is unaffected programming, computer programs are separated into which substantially reduces development time and data and code structures, where the latter manipulates facilitates code maintenance. the former. In object-oriented programming, data and code are packaged together into a single entity or object and the routines to manipulate data in an Model formulations object are part of the object itself. The advantage of Inventory Projection Model this is that objects can be copied, and the copy inherits not only the data structure of the parent Like all simulation models, Woodstock requires that object, but also the parentis functions and the user specify the magnitude of all management procedures. If the new object must perform new interventions and order in which to apply them. In a functions or perform an inherited function Woodstock model, this information is presented in differently, new procedures or functions can simply the queue section. The queue lists for each planning be added when the new object is defined. Newly period, target limits for outputs and the actions which defined functions simply replace inherited functions generate those outputs. Woodstock performs each of the same name. Thus, object-orientation makes it action in the order in which it appears in the queue, relatively easy to add new features to a program up to the specified limit which may be area, volume without significantly modifying the existing code. generated, cost incurred, et cetera. The order in which actions are applied to individual development Woodstock is made up of families of program objects types is determined by selection rules specified in the that perform particular functions in the program such action definition. as calculating outputs, performing actions, aging development types, et cetera. Each object in a family In simulation mode, Woodstock evaluates every run has a common _ancestor_ from which it inherits in terms of success or failure. Success is assumed basic properties. For example, all yield curve related whenever output levels meet target limits specified functions in Woodstock are performed by objects by the user in every period of the planning horizon based on the _basic_curve_type object. This object (i.e., levels exceed minimum limits, levels do not is made up of variables which keep track of the exceed maximum limits and levels just meet equality number of entries in the yield table, a pointer list limits). If any output level does not meet a target storing the yield curve data itself and functions that limit, Woodstock evaluates the run as a failure and can initialize the object, read yield information from terminates the simulation immediately. an input file, normalize yield information, copy yield The user may specify one output limit as a binary information from other curves and store yield search criterion which Woodstock can vary up or information. Every instance of _curve_type objects down to converge to an optimal solution. In binary inherit the properties of _basic_curve_type, enabling search mode, the binary search criterion is increased it to deal with yield curve information but each has when a run succeeds and is decreased when a run additional functions to handle particular types of fails – each time the simulation begins again with the yield curves or special cases. newly calculated binary search criterion. This process Although the object-orientation of the program code continues until the change in the binary search does not affect the user directly, it is the cornerstone criterion falls below a user-specified tolerance. of Woodstock’s flexibility. Model input files are Binary search can only be used with deterministic essentially free format ASCII files. Because there are formulations, but it may be used for area control or no fixed column formats or requirements for sections volume control formulations. Furthermore, binary to be arranged in a particular order, Woodstock input search may be turned off completely and harvests routines need smart parsing capabilities. By scheduled according to fixed methods of area control, separating the input routines into objects specific to percentage of inventory or an absolute amount. particular sections, the objects themselves are Alternatively, the user may wish to investigate the responsible for finding the appropriate information in impacts of random variations in the application of the input files and for checking syntax. If an error is silvicultural treatments or to probabilistic outcomes
  • 4. in yield response or regeneration. In these cases, CONTROL *LENGTH 16 {planning horizon=length*5 yrs} Woodstock uses a Monte Carlo simulation approach *RUNS 20 {perform 20 Monte Carlo sim’s} to random events. Again, each run is deemed a *OPTIMIZE OFF {on for lp matrix generation} success if all target limits are met. However, instead *SCHEDULE OFF {on for lp solution reports} *QUEUE ON {on for simulation models only} of changing a binary search criterion, Woodstock *WARNINGS ON {report non-fatal errors} generates random outcomes in each planning period, LANDSCAPE reinitializes the forest for each successive run and *THEME Cover Type keeps track of the number of successful attempts out sp Spruce po Poplar of the total number of runs specified by the user. At nsr Not Satisfactorily Regenerated the end of the specified number of runs, Woodstock LIFESPAN {maximum age any dev type may reach} reports the success rate as a percentage. sp 50 po 30 Optimization nsr 40 In optimization mode, Woodstock acts as a linear AREAS {area distribution: dev. type and age} *A sp {begins 1 period of age} programming matrix generator and report writer. 1 461 53 670 49 345 357 93 13 118 67 Instead of target limits in a queue, the user specifies 140 120 415 314 173 149 389 400 273 235 948 607 280 229 616 196 257 62 163 4 an objective function and constraints in the Optimize *A po {begins 1 period of age} section of the input file. Unlike simulation mode, 1 430 471 18 75 57 248 9 11 48 69 Woodstock does not require selection rules for 324 11 709 93 155 206 799 499 1 16 262 24 744 72 29 666 24 565 589 actions or a specific sequence in which to apply *A nsr actions in optimization mode. However, in all other 1 194 668 279 1 636 respects, optimization models are identical to YIELDS {yield components for Sp and Po types} simulation models in Woodstock syntax. *Y sp {spruce yields, begin in period 8} pulp 8 63.8 72.5 77.5 81.3 83.8 85.0 85.0 Woodstock uses many of the simulation routines 84.0 82.0 79.0 75.0 70.5 65.5 which calculate outputs, age development types and *Y po {poplar yields, begin in period 8} pulp 8 33.8 37.3 39.8 41.8 43.3 44.3 44.8 apply actions to generate coefficients for a LP matrix 45.0 45.0 44.8 44.3 43.8 43.3 using a generalized Model II formulation (Iverson ACTIONS and Alston 1986). Once the lp matrix is generated, an *ACTION clct Y Clear Cut {resets age} optimal solution can be found using any solution *OPERABLE clct sp _age 9 Pulp 40 {FH 45,UNTIL PULP < 40} software capable of reading LINDO or MPS format po _age 9 Pulp 35 {FH 45,UNTIL PULP < 35} input files. A utility program reads the solution file *SELECT clct {selection rule for simulation} generated by the solver and produces a sequence file _MAX _AGE {oldest first rule (MAX _age)} *ACTION plnt Y Plant NSR {resets age} which lists the actions, development types, area *OPERABLE plnt treated and period of treatment corresponding to the nsr _age 0 _age 50 basic variables of the optimal solution. This sequence *SELECT plnt _MAX _AGE {plant oldest cutovers first} file is then read into Woodstock. The sequence file TRANSITIONS drives the simulator directly with reports and graphic *CASE clct displays working the same way they do in simulation *SOURCE sp {for spruce dev. types:} *TARGET sp 70 {70% regenerate Sp} mode. *TARGET po 20 {20% regenerate Po} *TARGET nsr 10 {10% do not regenerate} *SOURCE po {for poplar dev. types:} Example *TARGET sp 20 {20% regenerate Sp} *TARGET po 75 {75% regenerate Po} The following simple model will illustrate *TARGET nsr 5 { 5% do not regenerate} Woodstock’s capabilities in formulating binary *CASE plnt search, Monte Carlo simulation, and optimization *SOURCE nsr {for planted nsr dev. type:} *TARGET sp 100 {100% regenerate sp} forest models. Presented first are the sections OUTPUT common to all three formulations, followed by the *OUTPUT tot_pulp Total Pulp {pulp from} *SOURCE ? clct pulp {both Sp & Po types} specific syntax required for each type of model. *OUTPUT nsr_area NSR Area {NSR area from} Finally, results from each formulation are presented *SOURCE nsr _Invent _Area {NSR type only} in tabular form. *OUTPUT plnt_area Plantation {plnt area from} *SOURCE nsr plnt _Area In the following example input file, Woodstock Binary Search Model keywords are in upper case and user-specified values are in lower case. To create a binary search formulation, the model requires a Queue section to specify the required
  • 5. levels of outputs and the order in which to apply OPTIMIZE *OBJECTIVE actions. To invoke the binary search algorithm, the _MAX Tot_Pulp 1 {maximize 1st period) MAX keyword is included in the first limit statement *CONSTRAINTS (i.e., tot_pulp is the binary search criterion). _NDY(Tot_Pulp) 1.._LENGTH {nondeclining yld} plnt_area = 250 1.._LENGTH QUEUE *FORMAT MPS {use MPS format} *TARGET tot_pulp = 50000 _MAX 1.._LENGTH *SOURCE ? clct 100 {from all clearcuts} The optimal solution produced an objective function *TARGET plnt_area < 250 {no more than 250 ha} value of 67 470 m3/period which was marginally *SOURCE nsr plnt 100 higher than that found using binary search. With After running this model through Woodstock, the more complex models, the difference would likely be maximum even-flow harvest level was found to be more substantial (Jamnick 1990). 66 940.5 m3/period. The tolerance level for the binary search was 1 m3 and 19 iterations were Potential Uses Of Woodstock required to converge to the solution value. The example presented in this paper is an exceedingly simple model, but it demonstrates Monte Carlo Simulation Model effectively how Woodstock can handle very different To formulate the example problem as a Monte Carlo model formulations with ease: with only a few simulation, the Transitions section must be changed changes to the input file, three distinct kinds of to simulate random regeneration outcomes: analysis could be performed in minutes. However, *CASE clct even with much larger and more complex Woodstock *SOURCE sp {for spruce dev. types:} models, it is trivial to convert one model type into *TARGET sp 70 {70% probability-> Sp} *TARGET po 20 {20% probability-> Po} another. *TARGET nsr 10 {10% probability-> NSR} *SOURCE po {for poplar dev. types:} One of the greatest strengths of Woodstock is its *TARGET sp 20 {20% probability-> Sp} potential as a teaching tool. New users can quickly *TARGET po 75 {75% probability-> Po} *TARGET nsr 5 { 5% probability-> NSR} develop simple models which can be used to learn about forest dynamics (e.g., demonstrate linkages Instead of the fixed proportions used in the binary between harvest levels and forest structure, tradeoffs search model, the Monte Carlo simulation model uses among harvest and silviculture options, relative probabilities of regeneration for each development efficacy of alternative selection rules, et cetera). As type. The *LIMIT R 100 statement can be interpreted users become more proficient at using Woodstock, as _for each 100 ha random allocation unit in the they compare different model formulations to development type, assign regeneration outcomes determine how best to formulate a model to answer randomly according to the following expected relevant management concerns. values_. By increasing or decreasing the size of random allocation units, the user can increase or As a harvest scheduling model, Woodstock models decrease the magnitude of the variation in outcomes can address virtually any kind of silvicultural or across simulation runs. harvesting regime. Complicated silvicultural prescriptions can be modeled as individual actions Using the harvest level found in the binary search performed sequentially or as a single intervention _ model, the Monte Carlo simulation model which method to use is up to the model builder. successfully sustained that harvest level 11 times out Because all actions and outputs are user-defined, of 20. When the harvest was reduced by 2.5%, the Woodstock can be used to model forest management harvest level was sustainable in all 20 runs. problems which are not timber oriented, such as fire or vegetation management plans for parks and Linear Programming Model conservation areas. To formulate a Model II linear program, an Optimize The Monte Carlo simulation features are useful for section must be added to the input file. This section evaluating stochastic variations in timber yields, for specifies the objective function, any constraints to be evaluating impacts of landowner behavior for NIPF applied in the model and the format the matrix should wood supply analyses or impacts on forest structure be written in (LINDO or MPS). To be approximately and harvest levels in presence of fire or pest risks. equivalent to the other formulations, this example Woodstock is currently being used by forest products model maximizes first period harvest subject to non- marketing boards to estimate wood supply from non- declining yield and planting no more than 250 ha per industrial private forest land in their regulation areas. period.
  • 6. Future developments Rep. INT-214, USDA Forest Service, Intermountain Research Station, Ogden, UT. One of the difficulties in developing a system like 31pp. Woodstock is developing a structure which is straightforward and concise, yet retains sufficient Jamnick, M.S. 1990. A comparison of FORMAN and flexibility to address many different problems. For linear programming approaches to timber harvest example, in many cases the functionality of a lp scheduling. Can. J. For. Res. 20: 1351-1360. model cannot be replicated in a simulation model and Johnson, K.N., Stuart, T.W. and Crim, S.A. 1986. so, wherever possible, features specific to a type of FORPLAN Version 2: An Overview. USDA model are isolated in particular sections (i.e., the Forest Service, Land Management Planning Queue section for simulation models and the Systems Section, Washington, DC. 98+xii pp. Optimize section for LP models). However, it is not always possible to do this, with the result that some Leefers, L.A. 1991. Incorporating linear sections require alternative syntax constructions that programming and Monte Carlo simulation in a apply to only particular model types. spreadsheet-based harvest scheduling model. IN Buford, M.A., comp. 1991. Proceedings of the The syntax developed so far has been remarkably 1991 Symposium on Systems Analysis in Forest robust, requiring few changes despite the extensions Resources, March 3-6, 1991. Charleston, SC. that have been incorporated into Woodstock. Gen. Tech. Rep. SE-74, USDA Forest Service, However, it is anticipated that adjustments will need Southeastern Forest Experiment Station, to be made to the syntax to improve the usability of Asheville, NC. 423pp. the system by maintaining consistency of meaning for keywords and constructs used in multiple sections Moll, R.H.H. 1991. Modelling regeneration and pest of an input file. control alternatives for a forest system in the presence of fire risk. IN Buford, M.A., comp. Presently, all efforts are being directed toward 1991. Proceedings of the 1991 Symposium on finalizing the LP extensions to Woodstock. In the Systems Analysis in Forest Resources, March 3- future, the intent is to strengthen Woodstock is 6, 1991. Charleston, SC. Gen. Tech. Rep. SE-74, capabilities in the areas of economic analyses and USDA Forest Service, Southeastern Forest land allocation problems. Specifically, these Experiment Station, Asheville, NC. 423pp. enhancements would include the ability to formulate models similar to ECHO (Walker 1971), to conduct Walker, J.L. 1971. An economic model for price responsive timber supply analyses, and to optimizing the rate of timber harvesting. Ph.D. formulate models employing aggregate emphasis or dissertation, University of Washington, Seattle, coordinated allocation choices. WA. 117pp. Acknowledgement The development of the linear programming extensions to Woodstock was partially funded by Forestry Canada and the British Columbia Ministry of Forests as part of the Canada-British Columbia Partnership Agreement on Forest Resource Development: FRDA II - a 4 year (1991-1995) $200 million program cost-shared equally by the federal and provincial governments. Literature cited Hof, J.G., Robinson, K.S. and Betters, D.R. 1988. Optimization with expected values of random yield coefficients in renewable resource linear programs. For. Sci. 34: 634-646. Iverson, D.C. and Alston, R.M. 1986. The Genesis of FORPLAN: A Historical and Analytical Review of Forest Service Planning Models. Gen. Tech.