SORTIE-ND
Software for spatially-explicit simulation of forest dynamics |
|||||||||||||||||
Creating a new behaviorPart 1: DesignThese are the steps you take before writing any code. I recommend writing a design out on paper. I catch a lot of problems before I start this way, and determine where I need more information. When you're done with your behavior, your design can be easily transformed into user documentation. Step 1: Describe the behaviorAnswer the question, "what does this behavior do each timestep when it is called?" For our example, we've already done that: "It calculates basal area for adult trees and then averages the results locally to create a map of average basal area across the plot." Our biomass equation will be B = a * DBH d, where B = biomass in metric tons, and a and d are parameters. Step 2: Design the behavior's data structureIn this step, you list what kinds of data the behavior needs and what data structures it will interact with. This includes both data that is privately owned by the behavior class, and other SORTIE-ND data objects such as trees and grids. Private data. Private data is captured completely within our behavior class. No other class needs access to it. Our example behavior has two pieces of private data: the two parameters, a and d. Let's say these values are species-specific, and they would be best captured by Other SORTIE-ND data objects. Behaviors may or may not need to interact with other SORTIE-ND data objects. Our behavior does. It needs to access adult trees in order to calculate biomass for each, and it needs a grid to store its map of average biomass. Step 3: Design the behavior's actionsThis is answering the question, "how does the behavior do what it needs to do?" Our behavior needs to do the following things each timestep:
When you do this step, consider the following questions: Does the behavior need to do different things under different conditions? Are there times when the behavior could skip steps to save time? Step 4: Write your tests and prepare test data.Testing is extremely important. I will not accept any behavior into the code repository if I am not satisfied that it has been thoroughly tested. The best way to satisfy me on this point is to provide written unit tests and an automated testing class that performs the tests. If you have no experience writing tests, you might want to look at a book or website on the subject. I am happy to provide samples of my own tests and help with writing tests. Write your tests right after you write your design, while it is fresh in your mind. Remember to test boundary conditions and error conditions in addition to normal processing. The unit test script for our example behavior would include the following test conditions:
Once you have written your tests, prepare test data. For the example behavior, we would assemble a list of trees that fulfilled all of the test conditions that involved trees, calculate their biomass according to the equation, and calculate the resulting biomass map. The automated test that we will write later will create that list of trees and compare the results to the expected results. |
|||||||||||||||||
FAQ - Contact Us
|