-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging' of https://github.com/USDAForestService/Forest…
…VegetationSimulator into open-source-main
- Loading branch information
Showing
14 changed files
with
188 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<body> | ||
<h1>What is FVS?</h1> | ||
<p>The Forest Vegetation Simulator (FVS) is a family of individual-tree, distance-independent, forest growth simulation models. If is a system of highly integrated analytical tools that is based upon a body of scientific research and experience. Since the development of the first model for northern Idaho in 1973, FVS has evolved into a collection of 'variants' which represent different geographic areas across the county. FVS can simulate a wide range of silvicultural treatments for most major forest tree species, forest types, and stand conditions.</p> | ||
<p>The FVS Staff of the <a href="https://www.fs.usda.gov/forestmanagement/aboutus/fmsc.shtml">Forest Management Service Center FMSC</a> in Fort Collins, Colorado, maintains, supports, develops and provides training for FVS.</p> | ||
<p>Detailed information such as our workflow policies, and directions on building FVS in various environments can be found on our <a href="https://github.com/USDAForestService/ForestVegetationSimulator/wiki">Wiki</a>.</p> | ||
<p>More information, such as training materials, videos, and documents can be found on <a href="https://www.fs.usda.gov/fvs/index.shtml">our website</a>.</p> | ||
<p>Throughout its history, FVS has had numerous contributors, authors, and developer. The following list is not intended to be all encompassing, but rather simply identifies the currently active contributors. | ||
<p>The Forest Vegetation Simulator (FVS) is a family of individual-tree, distance-independent, forest growth simulation models. It is a system of highly integrated analytical tools that is based upon a body of scientific research and experience. Since the development of the first model for northern Idaho in 1973, FVS has evolved into a collection of 'variants' which represent different geographic areas across the county. FVS can simulate a wide range of silvicultural treatments for most major forest tree species, forest types, and stand conditions.</p> | ||
<p>The FVS Staff of the <a href="https://www.fs.usda.gov/forestmanagement/aboutus/fmsc.shtml">Forest Management Service Center (FMSC)</a> in Fort Collins, Colorado, maintains, supports, develops, and provides training for FVS.</p> | ||
<p>Detailed information, such as our workflow policies and directions on building FVS in various environments, can be found on our <a href="https://github.com/USDAForestService/ForestVegetationSimulator/wiki">Wiki</a>.</p> | ||
<p>More information, such as training materials, videos, and documents, can be found on <a href="https://www.fs.usda.gov/fvs/index.shtml">our website</a>.</p> | ||
<p>Throughout its history, FVS has had many contributors, authors, and developers. The following list is not intended to be all encompassing, but rather simply identifies the currently active contributors. | ||
</p> | ||
<ul> | ||
<li>Michael VanDyck - FVS Staff Lead and Product Owner | ||
<li>Daniel Wagner - FVS Programmer and Repository Maintainer | ||
<li>Lance David - FVS Senior Programmer | ||
<li>Erin Smith-Mateja - FVS Forest Biometrician and Training Coordinator | ||
<li>Erin Smith-Mateja - FVS Forest Biometrician | ||
<li>Mark Castle - FVS Forest Biometrician | ||
<li>Michael Shettles - FVS Forest Biometrician and Interface Support | ||
<li>Nick Crookston - Forest Research Consultand | ||
<li>Matt Diskin - FVS Forest Biometrician | ||
<li>Nick Crookston - Forest Research Consultant | ||
<li>Don Robinson - Ecologist and Canadian Variant (BC, ON) Development | ||
<li>Daniel Wagner - FVS Programmer and Repository Maintainer | ||
</ul> | ||
</body> | ||
|
||
|
||
https://user-images.githubusercontent.com/100228553/179036261-bfcc668b-976a-48a3-9b6e-4e193c17e948.mp4 | ||
https://user-images.githubusercontent.com/100228553/179036261-bfcc668b-976a-48a3-9b6e-4e193c17e948.mp4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Subject: New error (FVS40) - single record TPA exceeds 1000 | ||
|
||
Name: Lance David | ||
|
||
Date: 06/20/2023 | ||
|
||
Variants affected: All | ||
|
||
Description: When processing some input data sets, first noticed with FIA, | ||
expanded TPA values for a single tree record can be extremely | ||
high. This extreme TPA value can result in mathematical errors | ||
first found in the calulation of potential flame length in FFE. | ||
This error is actually handled by FVS as a warning and the | ||
label "ERROR" is only used so that it will be reported by the | ||
interface and obvious to the user in the event a terminal error | ||
does occur. This error has two lines so that the offending tree | ||
record can be identified and required first line be written by | ||
errgro.f and second line written by notre.f where sample design | ||
expansion factor(s) are applied to inventory tree records. The | ||
error message written to main output file looks like this: | ||
|
||
******** FVS40 ERROR: TREE RECORD REPRESENTING GREATER THAN | ||
1000 TPA ENCOUNTERD. MAY CAUSE MATHEMATICAL ERRORS. | ||
|
||
******** FVS40 ERROR: TREE_ID= 5 TREE INDEX= 5 | ||
SPECIES= 31 DIAMETER= 0.1 TPA=13320.00 | ||
|
||
Impact on users: Users will be notified when tree records individually | ||
representing greater than 1000 TPA are encountered. This will | ||
be helpful if a matematical error does occur later in the | ||
projection. Otherwise, the user may ignore the message but | ||
should consider that 1000 trees or more behaving identially | ||
in a projection is appropriate. | ||
|
||
|
||
Files: | ||
base\errgro.f - Added FVS40 error. | ||
|
||
base\notre.f - Added second line of FVS40 error which identifies tree record |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
C COMMON | ||
C---------- | ||
C | ||
DATA SVN/"FS2023.2"/ | ||
DATA SVN/"FS2023.3"/ | ||
C | ||
C-----END SEGMENT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.