-
Notifications
You must be signed in to change notification settings - Fork 95
Reviewing a Model for the Library
Jacob Kelter edited this page Jan 25, 2023
·
7 revisions
For the Sample Models, hosted in the Models Library, we use an even stricter holistic standard beyond following the NetLogo Style Guide.
- The INTERFACE should be intuitive and it should be possible to use the model (at least tinker with it) without having to refer to the Info tab immediately.
- The INFO tab should succinctly and accurately describe the phenomenon being modeled. A reader who does not have any background in the subject should be able to at least garner some understanding of what is going on.
- The CODE should be readable (e.g. well structured and well written) and close-to-understandable by a person who is becoming familiar with NetLogo.
Leave comments on the three sections in the following places:
- For comments on the INTERFACE tab, add a section to the top of the Info tab with using
### Reviewer comments on Interface tab
and then write your comments in that section. - For comments on the Info tab, add another section with
### Reviewer comments on Info tab
and add any overarching comments about the Info tab there. Then, for any in-line comments (e.g., about a specific sentence), add comments surrounded in triple braces right after whatever sentence/section you are commenting on like this{{{ a comment }}}
. If you leave any in-line comments, add this sentence to the bottom of your### Reviewer comments on Info tab
section: "I have left in-line comments on the info tab surrounded in triple braces like this {{{ a comment }}} so you can easily search for and find the comments using standard find commands (CMD-F on Mac, CTR-F on Windows, orEdit>Find...
from the drop down menu)." - For comments on the CODE tab, put them in the CODE tab itself. Put any overall comments at the very top of the file starting with
; REVIEWER COMMENTS:
. For in-line comments, surround them in triple curly braces so they are easy to search for and find like this:; {{{ a comment }}}
. If you have left in-line comments, then end your; REVIEWER COMMENTS
section at the top with: "I have left in-line comments on your code surrounded in triple braces like this; {{{ a comment }}}
so you can easily search for and find the comments using standard find commands (CMD-F on Mac, CTR-F on Windows, orEdit>Find...
from the drop down menu)."
Models Library Editing
- Changes Since Previous Release
- Reviewing a Model for the Library
- Template Letter for Requesting a Review of a Model
- Automated Tests
- Resaving Models in the Newest Release
- Copyright and Citation Info
- Models Cross Referencing
- Models Library Statistics
- What is a Code Example?
- What is a Curricular Model?