Skip to content

Commit

Permalink
add all F90 files in se and se/dycore directory from r88678
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHjortLauritzen committed Mar 27, 2018
1 parent 82a3288 commit ee3ef7c
Show file tree
Hide file tree
Showing 60 changed files with 46,194 additions and 0 deletions.
900 changes: 900 additions & 0 deletions dp_coupling.F90

Large diffs are not rendered by default.

667 changes: 667 additions & 0 deletions dp_mapping.F90

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions dycore.F90
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module dycore

implicit none
private

public :: dycore_is

!=========================================================================================
CONTAINS
!=========================================================================================

logical function dycore_is (name)

character(len=*) :: name

dycore_is = .false.
if (name == 'unstructured' .or. name == 'UNSTRUCTURED' .or. &
name == 'se' .or. name == 'SE') then
dycore_is = .true.
end if

end function dycore_is

!=========================================================================================

end module dycore
Loading

0 comments on commit ee3ef7c

Please sign in to comment.