-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(tsp): Elevate ADV to generalized transport class (#1391)
* refactor(tsp): Elevate ADV to generalized transport class * Fix some _da() routines
- Loading branch information
1 parent
c50ec80
commit 2c78169
Showing
8 changed files
with
104 additions
and
138 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
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
8 changes: 4 additions & 4 deletions
8
src/Model/ModelUtilities/GwtAdvOptions.f90 → src/Model/ModelUtilities/TspAdvOptions.f90
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,10 +1,10 @@ | ||
module GwtAdvOptionsModule | ||
module TspAdvOptionsModule | ||
use KindModule, only: I4B | ||
implicit none | ||
private | ||
|
||
type, public :: GwtAdvOptionsType | ||
type, public :: TspAdvOptionsType | ||
integer(I4B) :: iAdvScheme !< the advection scheme: 0 = up, 1 = central, 2 = TVD | ||
end type GwtAdvOptionsType | ||
end type TspAdvOptionsType | ||
|
||
end module GwtAdvOptionsModule | ||
end module TspAdvOptionsModule |
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.