-
Notifications
You must be signed in to change notification settings - Fork 42
Add the first draft of the code structure. #805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the first draft of the code structure. #805
Conversation
|
Thank you for the review, @MFraters . I addressed your suggestions in the recent commit. |
MFraters
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small comment, otherwise good to go
| ``` | ||
| The main file that is responsible for creating and accessing the GWB world is `source/world_builder/world.cc`. When creating a new GWB world it uses the parameterizations from the worldbuilder (`*.wb`) input file. External programs, such as `gwb-dat` or `gwb-grid` or other software such as ASPECT or SEPRAN, can then use the provided interfaces to ask about certain properties (e.g. temperature, composition) on any location. | ||
|
|
||
| GWB determines where a given point lies in the World amongst the specified tectonic features. This happens mostly through utility functions, which computes the distance of point from a feature. These and several other utility functions are defined in the `source/world_builder/utilities.cc`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| GWB determines where a given point lies in the World amongst the specified tectonic features. This happens mostly through utility functions, which computes the distance of point from a feature. These and several other utility functions are defined in the `source/world_builder/utilities.cc`. | |
| GWB determines where a given point lies in the World amongst the specified tectonic features. This happens mostly through utility functions, which compute the distance of point from a feature. These and several other utility functions are defined in the `source/world_builder/utilities.cc`. |
|
Address suggestions from the PR. Grammar fix.
e01ff7c to
dc40a30
Compare
|
Thank you for the review! I addressed your comments in the latest commit. |
Same as #791 , but to the current remote :)