-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Visual fortran has incompatible compiler directives. Remove directive…
…s, add null subroutines, update makefiles and project files and docs.
- Loading branch information
Roy Walters
committed
Oct 12, 2015
1 parent
2bb3bb1
commit 22f55ba
Showing
9 changed files
with
56 additions
and
34 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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
!********************************************************************* | ||
|
||
subroutine ReadnetCDFData(fname,Quit) | ||
|
||
implicit none | ||
|
||
INCLUDE '../includes/defaults.inc' | ||
|
||
! *** passed varaibles | ||
character(len=*) :: fname | ||
logical quit | ||
|
||
Quit = .TRUE. | ||
GridRName = 'NONE' | ||
fname = 'NONE' | ||
call PigMessageOK('Recompile with netCDF option','ReadnetCDF') | ||
|
||
end subroutine | ||
|
||
!********************************************************************* | ||
|
||
subroutine WritenetCDFData(fname,Quit) | ||
|
||
implicit none | ||
|
||
! *** passed varaibles | ||
character(len=*) :: fname | ||
logical quit | ||
|
||
Quit = .TRUE. | ||
call PigMessageOK('Recompile with netCDF option','WritenetCDF') | ||
fname = 'NONE' | ||
end subroutine | ||
|
||
!************************************************************************ |