-
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.
Push k-loop into compute_ subroutines
Rather than loop level-by-level in interior_tendency_compute(), all the subroutines in this routine are called with full column vectors. There are three subroutines that have not yet been column-ized, because they need to be merged into a single call first: -- compute_scavenging() -- compute_large_detritus_prod() -- compute_particulate_terms() Merging them will also include update_particulate_terms_from_prior_level() To help manage memory as we push this loop deeper into the code, several datatypes were moved onto the marbl_interface_class. We also changed the underlying memory structure so, for example, carbon associated with a specific autotroph at level k is now autotroph_local%C(auto_ind,k) rather than autotroph_local(auto_ind,k)%C. Some derived types have been given clearer names as well.
- Loading branch information
Showing
17 changed files
with
3,514 additions
and
3,070 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
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.